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
      pages/putaway/job/putawayDetail.vue
  6. 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 {
height: 280rpx;
height: 320rpx;
}
.popup_box .pop_tab .tab_info .uni-textarea-placeholder {

15
mycomponents/job/jobPersonInfo.vue

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

6
mycomponents/scan/winComScan.vue

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

4
pages/issue/coms/comScanIssuePack.vue

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

2
pages/putaway/job/putawayDetail.vue

@ -267,7 +267,7 @@
var locationCode = result.balance.locationCode;
var inventoryStatus = result.balance.inventoryStatus;
var detail = this.detailSource.find(r => r.itemCode == itemCode);
if (detail == undefined) {
this.showErrorMessage("物料号【" + itemCode + "】不在列表中")
} else {

2
static/config.json

@ -18,7 +18,7 @@
"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",
"chefang": "http://192.168.0.178:12080/admin-api",
"chenxinming": "http://192.168.0.230:12080/admin-api",

Loading…
Cancel
Save