Browse Source

修改页面显示

wms3.0_pda
lijuncheng 12 months ago
parent
commit
08f45e1d22
  1. 2
      common/style/new_style.css
  2. 15
      mycomponents/job/jobPersonInfo.vue
  3. 6
      mycomponents/scan/winComScan.vue
  4. 4
      pages/issue/coms/comScanIssuePack.vue
  5. 2
      static/config.json

2
common/style/new_style.css

@ -497,7 +497,7 @@ uni-page-head .uni-page-head__title {
} }
.popup_box .pop_tab .tab_info textarea { .popup_box .pop_tab .tab_info textarea {
height: 280rpx; height: 320rpx;
} }
.popup_box .pop_tab .tab_info .uni-textarea-placeholder { .popup_box .pop_tab .tab_info .uni-textarea-placeholder {

15
mycomponents/job/jobPersonInfo.vue

@ -8,7 +8,7 @@
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">承接时间 : </text> <text class="item_title">承接时间 : </text>
<text class="text_wrap">{{dataContent.acceptTime}} </text> <text class="text_wrap">{{dateFormat(dataContent.acceptTime)}} </text>
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">创建人 : </text> <text class="item_title">创建人 : </text>
@ -16,7 +16,7 @@
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">创建时间 : </text> <text class="item_title">创建时间 : </text>
<text class="text_wrap">{{dataContent.createTime}} </text> <text class="text_wrap">{{dateFormat(dataContent.createTime)}} </text>
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">完成人 : </text> <text class="item_title">完成人 : </text>
@ -24,7 +24,7 @@
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">完成时间 : </text> <text class="item_title">完成时间 : </text>
<text class="text_wrap">{{dataContent.completeTime}} </text> <text class="text_wrap">{{dateFormat(dataContent.completeTime)}} </text>
</view> </view>
</view> </view>
</view> </view>
@ -32,6 +32,8 @@
</template> </template>
<script> <script>
import {dateFormat} from "@/common/basic.js"
export default { export default {
components: {}, components: {},
data() { data() {
@ -48,7 +50,12 @@
} }
}, },
methods: {} methods: {
dateFormat(value){
return dateFormat(value)
}
}
} }
</script> </script>

6
mycomponents/scan/winComScan.vue

@ -10,10 +10,10 @@
@input="handelScanMsg" :cursor="cursorIndex"></textarea> @input="handelScanMsg" :cursor="cursorIndex"></textarea>
</view> </view>
<view class="uni-flex uni-row space-between u-col-center"> <view class="uni-flex uni-row space-between u-col-center" >
<view class="paizhao" @click="scanQRCode()"> <!-- <view class="paizhao" @click="scanQRCode()" v-if="true">
<image src="/static/icons/icons_camera.svg" alt="" /> <image src="/static/icons/icons_camera.svg" alt="" />
</view> </view> -->
<view class="uni-flex"> <view class="uni-flex">
<button class="clean_scan_btn" @click="clearScanValue()">清空</button> <button class="clean_scan_btn" @click="clearScanValue()">清空</button>

4
pages/issue/coms/comScanIssuePack.vue

@ -157,6 +157,8 @@
this.scanOptions = getDetailEditRemoveOption(); this.scanOptions = getDetailEditRemoveOption();
}, },
methods: { methods: {
openScanPopup(content, jobcontent) { openScanPopup(content, jobcontent) {
this.issueRecord = []; this.issueRecord = [];
this.dataContent = content; this.dataContent = content;
@ -178,7 +180,7 @@
let that = this; let that = this;
that.fromLocationList = []; that.fromLocationList = [];
if (that.dataContent != null) { if (that.dataContent != null) {
that.fromInventoryStatuses =this.jobContent.outInventoryStatuses that.fromInventoryStatuses = this.jobContent.outInventoryStatuses
that.toLocation = that.dataContent[0]; that.toLocation = that.dataContent[0];
that.toLocationCode = that.dataContent[0].toLocationCode; that.toLocationCode = that.dataContent[0].toLocationCode;
that.fromLocationList = that.getFromLocationList(); that.fromLocationList = that.getFromLocationList();

2
static/config.json

@ -18,7 +18,7 @@
"request_url": { "request_url": {
"name": "request_url", "name": "request_url",
"value": "http://192.168.0.230:12080/admin-api", "value": "http://dev.ccwin-in.com:25100/api/admin-api",
"dev2": "http://192.168.0.157:12080/admin-api", "dev2": "http://192.168.0.157:12080/admin-api",
"chefang": "http://192.168.0.178:12080/admin-api", "chefang": "http://192.168.0.178:12080/admin-api",
"chenxinming": "http://192.168.0.230:12080/admin-api", "chenxinming": "http://192.168.0.230:12080/admin-api",

Loading…
Cancel
Save