|
|
|
|
@ -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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|