增加任务号等信息

焦作-mxbc-北起
LAPTOP-S9HJSOEB\昊天 2 years ago
parent d4347fa480
commit 5506a429c6

@ -141,6 +141,10 @@ export default {
label:'盘点任务号',
key: 'checkNum'
},
{
label:'wms任务号',
key: 'taskWMSId'
},
{
label:'托盘码',
key: 'wmsCode'
@ -149,6 +153,10 @@ export default {
label:'托盘码描述',
key: 'wmsTrayCode'
},
{
label:'子托盘信息',
key: 'subtag'
},
{
label:'盘点时间',
key: 'exportTime'

@ -58,8 +58,8 @@
</a-form-item>
</a-col>
<a-col :span="4" style="text-align: left">
<a-form-item label="盘点号">
<a-input v-model="queryParam.lotnum" placeholder="请输入" />
<a-form-item label="wms任务号">
<a-input v-model="queryParam.taskId" placeholder="请输入" />
</a-form-item>
</a-col>
<a-col :span="4">
@ -151,8 +151,8 @@ export default {
imgUrl: imgUrl,
columns: [
{
title: "盘点批次号",
dataIndex: "lotnum",
title: "wms任务号",
dataIndex: "taskId",
},
{
title: "巷道名称",

@ -3,7 +3,7 @@
<div class="ant-advanced-search-form">
<a-form layout="inline" :form="queryParam">
<a-row :gutter="24">
<a-col :span="4" style="text-align: left">
<a-col :span="5" style="text-align: left">
<a-form-item label="巷道">
<a-select @change="handleChange" :value="select" style="width:100px">
<a-select-option :value="0">
@ -16,17 +16,32 @@
</a-form-item>
</a-col>
<a-col :span="6" >
<a-col :span="8" >
<a-form-item label="工单号">
<a-input v-model="queryParam.orderNum" placeholder="请输入" style="width:270px;"/>
</a-form-item>
</a-col>
<a-col :span="6" >
<a-col :span="8" >
<a-form-item label="wms任务号">
<a-input v-model="queryParam.taskId" placeholder="请输入" style="width:270px;"/>
<a-input v-model="queryParam.taskId" placeholder="请输入" style="width:250px;"/>
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="24">
<a-col :span="7" >
<a-form-item label="托盘码">
<a-input v-model="queryParam.trayCode" placeholder="请输入" style="width:390px;"/>
</a-form-item>
</a-col>
<a-col :span="8">
<a-col :span="6" >
<a-form-item label="子托盘标签">
<a-input v-model="queryParam.subtag" placeholder="请输入" style="width:250px;"/>
</a-form-item>
</a-col>
<a-col :span="7">
<a-form-item class="ageInput" label="时间">
<a-range-picker
@change="onTimeChange"
@ -41,7 +56,8 @@
</a-range-picker>
</a-form-item>
</a-col>
<a-col :span="6" style="text-align: right">
<a-col :span="4" style="text-align: right">
<a-button type="primary" @click="handleSearch"></a-button>
<a-button style="margin-left: 15px" @click="reset"></a-button>
</a-col>
@ -161,10 +177,16 @@ export default {
width:320,
},
{
title: "视频状态",
// dataIndex: "status",
scopedSlots: {customRender: 'status'},
width: 90
title: "托盘码",
dataIndex: "wmsCode",
//scopedSlots: {customRender: 'wmsCode'},
width: 120
},
{
title: "子标签信息",
dataIndex: "subtag",
//scopedSlots: {customRender: "subtag"},
width: 120
},
{
title: "工单时长",
@ -173,7 +195,8 @@ export default {
{
title: "视频录像",
// dataIndex: "videoPath1",
scopedSlots: {customRender: 'videoPath1'}
scopedSlots: {customRender: 'videoPath1'},
width: 90
}
],

@ -83,8 +83,9 @@ export default {
data: {}
}).then(res => {
if(res.code == 200) {
this.row = res.data[0];
this.column = res.data[1];
//823
this.row = 2;
this.column = 4;
this.getClientHeight();
sessionStorage.setItem('originHeight', this.clientHeight)
}

@ -83,8 +83,10 @@ export default {
data: {}
}).then(res => {
if(res.code == 200) {
this.row = res.data[0];
this.column = res.data[1];
//823
this.row = 2;
this.column = 2;
this.getClientHeight();
sessionStorage.setItem('originHeight', this.clientHeight)
}

@ -83,8 +83,9 @@ export default {
data: {}
}).then(res => {
if(res.code == 200) {
this.row = res.data[0];
this.column = res.data[1];
//823
this.row = 2;
this.column = 2;
this.getClientHeight();
sessionStorage.setItem('originHeight', this.clientHeight)
}

Loading…
Cancel
Save