|
|
@ -67,7 +67,8 @@
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label">
|
|
|
|
运行参数
|
|
|
|
运行参数
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">委托验收</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">委托验收
|
|
|
|
|
|
|
|
</el-checkbox>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
@ -181,6 +182,11 @@
|
|
|
|
prop="action"
|
|
|
|
prop="action"
|
|
|
|
show-overflow-tooltip
|
|
|
|
show-overflow-tooltip
|
|
|
|
></el-table-column>
|
|
|
|
></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">
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
@ -197,17 +203,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox-->
|
|
|
|
|
|
|
|
<!-- style="padding-top: 10px"-->
|
|
|
|
|
|
|
|
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
|
|
|
|
|
|
|
|
<!-- :value="busType.action">{{ busType.name }}-->
|
|
|
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
|
|
|
<!-- </el-checkbox-group>-->
|
|
|
|
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
@ -304,17 +299,17 @@ export default {
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
this.configQuery = response.data;
|
|
|
|
this.configQuery = response.data;
|
|
|
|
this.checkedBusTypes = [];
|
|
|
|
this.checkedBusTypes = this.configQuery.busTypes;
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
// for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
|
|
|
|
//
|
|
|
|
for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
// for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
// if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
// this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
this.busTypes[k].isSelect = true;
|
|
|
|
// this.busTypes[k].isSelect = true;
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
this.$message.error(response.message);
|
|
|
|
this.$message.error(response.message);
|
|
|
@ -327,23 +322,34 @@ export default {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
saveConfig() {
|
|
|
|
saveConfig() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$confirm('是否确认修改?', '提示', {
|
|
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
|
|
center: true,
|
|
|
|
|
|
|
|
}).then(() => {
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
this.configQuery.busTypes = [];
|
|
|
|
this.configQuery.busTypes = this.checkedBusTypes;
|
|
|
|
for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
|
|
|
|
// this.configQuery.busTypes.push(this.checkedBusTypes);
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
if (response.code == 20000) {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
this.$message.success("修改成功!");
|
|
|
|
this.getConfig();
|
|
|
|
this.getConfig();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
handleCheckedChange(val) {
|
|
|
@ -369,6 +375,7 @@ export default {
|
|
|
|
addBusType() {
|
|
|
|
addBusType() {
|
|
|
|
var selectData = this.multipleSelection;
|
|
|
|
var selectData = this.multipleSelection;
|
|
|
|
selectData.forEach((obj) => {
|
|
|
|
selectData.forEach((obj) => {
|
|
|
|
|
|
|
|
obj.outChange = false;
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|