|
|
|
@ -209,7 +209,11 @@
|
|
|
|
|
prop="action"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column width="180" label="允许缺量补单">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-checkbox v-model="scope.row.outChange">缺量补单</el-checkbox>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
@ -320,20 +324,18 @@ export default {
|
|
|
|
|
getConfig() {
|
|
|
|
|
findConfig()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.configQuery = response.data;
|
|
|
|
|
this.checkedBusTypes = [];
|
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
|
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
|
|
|
|
|
|
for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
|
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
|
this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
|
this.busTypes[k].isSelect = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.configQuery = response.data;
|
|
|
|
|
this.checkedBusTypes = this.configQuery.busTypes;
|
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
|
// for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
|
//
|
|
|
|
|
// for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
|
// if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
|
// this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
|
// this.busTypes[k].isSelect = true;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -353,17 +355,19 @@ export default {
|
|
|
|
|
center: true,
|
|
|
|
|
}).then(() => {
|
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
|
this.configQuery.busTypes = [];
|
|
|
|
|
for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
|
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
|
|
|
|
|
}
|
|
|
|
|
this.configQuery.busTypes = this.checkedBusTypes;
|
|
|
|
|
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
|
// this.configQuery.busTypes.push(this.checkedBusTypes);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
|
this.$message.success("修改成功!");
|
|
|
|
|
this.getConfig();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
@ -414,6 +418,7 @@ export default {
|
|
|
|
|
addBusType() {
|
|
|
|
|
var selectData = this.multipleSelection;
|
|
|
|
|
selectData.forEach((obj) => {
|
|
|
|
|
obj.outChange = false;
|
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
|
});
|
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
|