diff --git a/src/api/thrsys/thrUploadSet.js b/src/api/thrsys/thrUploadSet.js index 8f540e43..4f56052a 100644 --- a/src/api/thrsys/thrUploadSet.js +++ b/src/api/thrsys/thrUploadSet.js @@ -26,7 +26,6 @@ export function updateConfig(data) { } //查询已选入扫码单据类型 - export function getBusList(params) { return axios({ url: "/system/third/syncData/getBus", @@ -43,3 +42,24 @@ export function addBus(data) { data: data }); } + +// 编辑扫码单据类型 +export function editBus(data) { + return axios({ + url: "/system/third/syncData/editBus", + method: "post", + data: data + }); +} + + +// 移除扫码单据类型 +export function removeBus(data) { + return axios({ + url: "/system/third/syncData/removeBus", + method: "post", + data: data + }); +} + + diff --git a/src/views/inout/uploadManage/uploadModify.vue b/src/views/inout/uploadManage/uploadModify.vue index c4c5b78e..7c2221e3 100644 --- a/src/views/inout/uploadManage/uploadModify.vue +++ b/src/views/inout/uploadManage/uploadModify.vue @@ -8,6 +8,7 @@ @@ -21,6 +22,7 @@ @@ -30,22 +32,25 @@ - + + - - 待审核 - 已审核 - 已确认 + + 待审核 + 已审核 + 已确认 @@ -54,20 +59,25 @@ - - - - - - - - + + + + + + + + + + + + + @@ -91,47 +101,12 @@ export default { }, }, - methods: { - handleRadioChange(val) { - if (val === 1) { - this.configQuery.orderUnCheck = 1; - this.configQuery.orderUnReceive = 0; - this.configQuery.orderScanFinish = 0; - } - if (val === 2) { - this.configQuery.orderUnCheck = 0; - this.configQuery.orderUnReceive = 1; - this.configQuery.orderScanFinish = 0; - } - if (val === 3) { - this.configQuery.orderUnCheck = 0; - this.configQuery.orderUnReceive = 0; - this.configQuery.orderScanFinish = 1; - } - }, - - - }, + methods: {}, data() { return { - configQuery: { - autoUpload: null, - orderSyncTime: null, - orderStartTime: null, - orderUnCheck: null, - orderUnReceive: null, - orderScanFinish: null, - checkWebNew: null, - checkPdaUn: null, - checkPdaEd: null, - checkUdims: null, - checkPc: null, - checkSp: null, - checkChange: null, - checkBalacne: null, - busTypes: [], - orderSources: [], // 存储用户选择的单据来源 - orderStatus: 3,//单选框默认选择已完成单据选项 + inputQuery: { + orderSource: [], // 存储用户选择的单据来源 + orderStatus: 3,//单选框默认选择已确认单据选项 }, } } diff --git a/src/views/inout/uploadManage/uploadSetting.vue b/src/views/inout/uploadManage/uploadSetting.vue index 0b966d47..a346e122 100644 --- a/src/views/inout/uploadManage/uploadSetting.vue +++ b/src/views/inout/uploadManage/uploadSetting.vue @@ -77,9 +77,14 @@ > + > + + +