|
@@ -137,7 +137,8 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="装货点" width="100">
|
|
<el-table-column label="装货点" width="100">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-select size="mini" v-model="scope.row.id">
|
|
|
|
|
|
+ <el-select size="mini" v-model="scope.row.id"
|
|
|
|
+ @change="changePriority($event,scope.row.id)">
|
|
<el-option
|
|
<el-option
|
|
v-for="item in option"
|
|
v-for="item in option"
|
|
:key="item.id"
|
|
:key="item.id"
|
|
@@ -245,10 +246,8 @@
|
|
<el-tab-pane label="仓库排队列表" name="third">
|
|
<el-tab-pane label="仓库排队列表" name="third">
|
|
<el-table
|
|
<el-table
|
|
:data="tableData3"
|
|
:data="tableData3"
|
|
- :span-method="objectSpanMethod"
|
|
|
|
border
|
|
border
|
|
style="width: 100%; margin-top: 20px"
|
|
style="width: 100%; margin-top: 20px"
|
|
- @selection-change="handleSelectionChange"
|
|
|
|
max-height="500px"
|
|
max-height="500px"
|
|
>
|
|
>
|
|
<el-table-column prop="warehouseName" label="仓库" fit></el-table-column>
|
|
<el-table-column prop="warehouseName" label="仓库" fit></el-table-column>
|
|
@@ -310,6 +309,7 @@ export default {
|
|
this.infomation();
|
|
this.infomation();
|
|
this.getSpellingArray();
|
|
this.getSpellingArray();
|
|
this.getNoSpellingArray();
|
|
this.getNoSpellingArray();
|
|
|
|
+ this.getStoreArray();
|
|
this.getSteelOrderNum();
|
|
this.getSteelOrderNum();
|
|
this.wantEnfactory();
|
|
this.wantEnfactory();
|
|
this.start();
|
|
this.start();
|
|
@@ -363,6 +363,7 @@ export default {
|
|
this.getSpellingArray();
|
|
this.getSpellingArray();
|
|
this.getNoSpellingArray();
|
|
this.getNoSpellingArray();
|
|
this.getSteelOrderNum();
|
|
this.getSteelOrderNum();
|
|
|
|
+ this.getStoreArray();
|
|
this.redDotNum = null;
|
|
this.redDotNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNumFirst = null;
|
|
this.totalQueueNumFirst = null;
|
|
@@ -537,7 +538,7 @@ export default {
|
|
)
|
|
)
|
|
.then(res => {
|
|
.then(res => {
|
|
this.tableData3 = res.data.data;
|
|
this.tableData3 = res.data.data;
|
|
- console.log("getStoreArray "+this.tableData3);
|
|
|
|
|
|
+ console.log("getStoreArray "+JSON.stringify(this.tableData3));
|
|
});
|
|
});
|
|
},
|
|
},
|
|
onclick() {
|
|
onclick() {
|
|
@@ -634,6 +635,7 @@ export default {
|
|
this.$refs.mutiData.clearSelection();
|
|
this.$refs.mutiData.clearSelection();
|
|
this.getNoSpellingArray();
|
|
this.getNoSpellingArray();
|
|
this.getSpellingArray();
|
|
this.getSpellingArray();
|
|
|
|
+ this.getStoreArray();
|
|
this.redDotNum = null;
|
|
this.redDotNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNumFirst = null;
|
|
this.totalQueueNumFirst = null;
|
|
@@ -646,6 +648,7 @@ export default {
|
|
this.$refs.mutiData.clearSelection();
|
|
this.$refs.mutiData.clearSelection();
|
|
this.getNoSpellingArray();
|
|
this.getNoSpellingArray();
|
|
this.getSpellingArray();
|
|
this.getSpellingArray();
|
|
|
|
+ this.getStoreArray();
|
|
this.redDotNum = null;
|
|
this.redDotNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNum = null;
|
|
this.totalQueueNumFirst = null;
|
|
this.totalQueueNumFirst = null;
|
|
@@ -654,6 +657,11 @@ export default {
|
|
this.start();
|
|
this.start();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+ },
|
|
|
|
+ changePriority(value,s){
|
|
|
|
+ console.log("装货点:"+value)
|
|
|
|
+ console.log("数据第几行:"+s)
|
|
|
|
+ //this.axios.post("")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|