最后bug修改

bozhou-古井贡酒
LAPTOP-S9HJSOEB\昊天 3 months ago
parent a39c99c895
commit c14e7f67f7

@ -36,8 +36,8 @@
@change="change" @change="change"
> >
<a-select-option v-for="i in categorys" :key="i"> <a-select-option v-for="(name, code) in categorys" :key="code">
{{ i}} {{ code+"("+name+")"}}
</a-select-option> </a-select-option>
</a-select> </a-select>
</span> </span>
@ -60,7 +60,7 @@
id="inputNumber" id="inputNumber"
style="width: 50%" style="width: 50%"
v-model="checkObj.countTop" v-model="checkObj.countTop"
:min="0" :min="-120"
:max="150" :max="150"
/> />
={{getCountAdd()}} ={{getCountAdd()}}
@ -168,7 +168,7 @@ export default {
modelData: {}, modelData: {},
index: 0, index: 0,
imgUrl: "", imgUrl: "",
categorys: [""], categorys: {},
params: [ params: [
// { // {
// label:'', // label:'',
@ -177,8 +177,8 @@ export default {
{ {
label: "点任务号", label: "盘号",
key: "checkNum", key: "wmsTrayCode",
}, },
{ {
label: "盘点时间", label: "盘点时间",
@ -285,6 +285,7 @@ export default {
}) })
.then((res) => { .then((res) => {
if (res.data) { if (res.data) {
this.categorys = res.data; this.categorys = res.data;
console.log(this.categorys); console.log(this.categorys);
//this.shelveId = res.data.shelveId; //this.shelveId = res.data.shelveId;

@ -58,8 +58,8 @@
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="4" style="text-align: left"> <a-col :span="4" style="text-align: left">
<a-form-item label="号"> <a-form-item label="盘号">
<a-input v-model="queryParam.lotnum" placeholder="请输入" /> <a-input v-model="queryParam.wmsTrayCode" placeholder="请输入" />
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="4"> <a-col :span="4">
@ -165,7 +165,7 @@ export default {
return { return {
statusMap: {0:"未盘点",1:"盘点异常",2:"核对正确",3:"人工核对正确",4: "需要人工核对",}, statusMap: {0:"未盘点",1:"盘点异常",2:"核对正确",3:"人工核对正确",4: "需要人工核对",},
queryParam: { queryParam: {
lotnum: '', wmsTrayCode: '',
side : '', side : '',
leftRight : '' leftRight : ''
}, },
@ -199,6 +199,10 @@ export default {
width:200, width:200,
}, },
{
title: "托盘码",
dataIndex: "wmsTrayCode",
},
{ {
title: "盘点状态", title: "盘点状态",
scopedSlots: {customRender: 'status'}, scopedSlots: {customRender: 'status'},
@ -240,6 +244,7 @@ export default {
handleOperationCancel() { handleOperationCancel() {
this.operationVisible = false; this.operationVisible = false;
this.request()
}, },
// //
getStreetList() { getStreetList() {

@ -39,12 +39,9 @@
:value="checkObj.category" :value="checkObj.category"
@change="change" @change="change"
> >
<a-select-option <a-select-option v-for="(name, code) in categorys" :key="code">
v-for="i in categorys" {{ code+"("+name+")"}}
:key="i" </a-select-option>
>
{{ i}}
</a-select-option>
</a-select> </a-select>
</span> </span>
</li> </li>
@ -67,7 +64,7 @@
style="width: 50%" style="width: 50%"
:value="checkObj.countTop" :value="checkObj.countTop"
@change="handleCountTopChange" @change="handleCountTopChange"
:min="0" :min="-120"
:max="150" :max="150"
/> />
={{getCountAdd()}} ={{getCountAdd()}}
@ -235,9 +232,10 @@ export default {
// key: 'lotnum' // key: 'lotnum'
// }, // },
{ {
label: "点任务号", label: "盘号",
key: "checkNum", key: "wmsTrayCode",
}, },
{ {
label: "盘点时间", label: "盘点时间",

@ -17,8 +17,8 @@
</a-col> </a-col>
<a-col :span="6" > <a-col :span="6" >
<a-form-item label="工单号"> <a-form-item label="托盘号">
<a-input v-model="queryParam.orderNum" placeholder="请输入" style="width:270px;"/> <a-input v-model="queryParam.code" placeholder="请输入" style="width:270px;"/>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
@ -109,7 +109,8 @@ export default {
return { return {
queryParam: { queryParam: {
orderNum: '', orderNum: '',
streetId: '' streetId: '',
code: ''
}, },
listData:[], listData:[],
time:[], time:[],
@ -128,20 +129,21 @@ export default {
loading: false, loading: false,
imgUrl: imgUrl, imgUrl: imgUrl,
columns: [ columns: [
{
title: "工单号",
dataIndex: "orderNum",
},
{ {
title: "巷道", title: "巷道",
dataIndex: "streetName", dataIndex: "streetName",
width: 90 width: 90
}, },
{ {
title: "货架类型", title: "托盘号",
dataIndex: "streetType", dataIndex: "code",
scopedSlots: {customRender: 'streetType'}
}, },
// {
// title: "",
// dataIndex: "streetType",
// scopedSlots: {customRender: 'streetType'}
// },
{ {
title: "货位", title: "货位",
dataIndex: "goodsLocation", dataIndex: "goodsLocation",

Loading…
Cancel
Save