diff --git a/src/views/sync/SysUdimsConfig.vue b/src/views/sync/SysUdimsConfig.vue index f15ae603..f8d6edfa 100644 --- a/src/views/sync/SysUdimsConfig.vue +++ b/src/views/sync/SysUdimsConfig.vue @@ -1,432 +1,355 @@ @@ -512,8 +689,6 @@ export default { name: "SysUdimsConfig", data() { return { - labelPosition: "right", - activeNames: ["1"], configQuery: { id: null, typeBus: null, @@ -535,17 +710,26 @@ export default { orderUnCheck: null, orderUnReceive: null, sysUser: null, + orderToInSyncTime: null, orderSyncTime: null, orderSyncDlTime: null, delaySyncTime: null, busTypes: [], + toInBusTypes: [], changeBusTypes: [], companyCert: null, manufacturerCert: null, productCert: null, basicDept: null, + supCert: null, + systemConfig: null, + entrustAction: null, + printConfig: null, + scanChangeConfig: null, + busChangeConfig: null, }, checkedBusTypes: [], + checkedToInBusTypes: [], checkedChangeBusTypes: [], busQuery: { page: 1, @@ -553,7 +737,9 @@ export default { }, busTypes: [], multipleSelection: [], + toInSelecttions: [], addBusDialogVisible: false, + addBusToInDialogVisible: false, total: 0, testLoading: false, addChangeBusDialogVisible: false, @@ -572,25 +758,11 @@ export default { .then((response) => { this.configQuery = response.data; this.checkedBusTypes = this.configQuery.busTypes; + this.checkedToInBusTypes = this.configQuery.toInBusTypes; this.checkedChangeBusTypes = this.configQuery.changeBusTypes; - 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); - } }) .catch(() => { this.loading = false; - this.list = []; - this.total = 0; }); }, saveConfig() { @@ -603,13 +775,13 @@ export default { .then(() => { if (this.checkedBusTypes != null) { this.configQuery.busTypes = this.checkedBusTypes; - // for (let i = 0; i < this.checkedBusTypes.length; i++) { - // this.configQuery.busTypes.push(this.checkedBusTypes); - // } } if (this.checkedChangeBusTypes != null) { this.configQuery.changeBusTypes = this.checkedChangeBusTypes; } + if (this.checkedToInBusTypes != null) { + this.configQuery.toInBusTypes = this.checkedToInBusTypes; + } updateConfig(this.configQuery) .then((response) => { this.loading = false; @@ -647,12 +819,15 @@ export default { this.multipleSelection = val; }, + handleToInCheckedChange(val) { + this.toInSelecttions = val; + }, + getBusType() { getBussinessType(this.busQuery) .then((response) => { this.busTypes = response.data.list || []; this.total = response.data.total || 0; - // this.getConfig(); }) .catch(() => {}); }, @@ -662,10 +837,33 @@ export default { this.multipleSelection = []; }, + addToInBusTypeDialog() { + this.addBusToInDialogVisible = true; + this.toInSelecttions = []; + }, + + addToInBusType() { + var selectData = this.toInSelecttions; + selectData.forEach((obj) => { + obj.outChange = false; + obj.orderStatus = 7; + obj.direct = 2; + let isPut = true; + for (let i = 0; i < this.checkedToInBusTypes.length; i++) { + if (this.checkedToInBusTypes[i].action == obj.action) { + isPut = false; + } + } + if (isPut) this.checkedToInBusTypes.push(obj); + }); + this.addBusToInDialogVisible = false; + }, + addBusType() { var selectData = this.multipleSelection; selectData.forEach((obj) => { obj.outChange = false; + obj.direct = 1; obj.orderStatus = 7; let isPut = true; for (let i = 0; i < this.checkedBusTypes.length; i++) { @@ -680,6 +878,11 @@ export default { remveBus(index, row) { this.checkedBusTypes.splice(index, 1); }, + + removeToInBus(index, row) { + this.checkedToInBusTypes.splice(index, 1); + }, + checkSelectable(row) { return !row.isSelect; }, @@ -749,36 +952,7 @@ export default {