diff --git a/public/config.json b/public/config.json index dc76ca6..7ca6b5f 100644 --- a/public/config.json +++ b/public/config.json @@ -1,6 +1,6 @@ { - "UDI_SYNC_SERVER_IP": "http://127.0.0.1:9995/", - "BASE_URL":"http://127.0.0.1:9991/", - "SERVER_IP": "http://127.0.0.1:9991/", - "WEBSOCKET_URL": "ws://127.0.0.1:9991/UDI_WMS_MC/api/websocket/" + "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/", + "BASE_URL":"http://192.168.0.109:9991/", + "SERVER_IP": "http://192.168.0.109:9991/", + "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/" } diff --git a/src/views/basic/BussinessTypeLocl.vue b/src/views/basic/BussinessTypeLocl.vue index b9675b8..bdf8e6b 100644 --- a/src/views/basic/BussinessTypeLocl.vue +++ b/src/views/basic/BussinessTypeLocl.vue @@ -91,7 +91,7 @@ 第三方单据类型:  - + + + + + + + + + + + + + {{ item.name }} {{ - item.thirdSysName + item.action }} + @@ -101,7 +122,8 @@
预验收 + :disabled="inputQuery.mainAction=='WareHouseOut' || inputQuery.mainAction==null">预验收 +
@@ -269,6 +291,7 @@ export default { }, changeList: [], visibleChange: false, + loading: false, } }, methods: { @@ -299,8 +322,11 @@ export default { .catch(() => { }); }, - getTypes() { - getOriginBusType() + getTypes(query) { + let tQuery = { + key: query, + } + getOriginBusType(tQuery) .then((response) => { this.originTypes = response.data.list || []; }) @@ -308,6 +334,17 @@ export default { }); this.getBusTypes(); }, + findMethod(query){ + let tQuery = { + key: query, + } + getOriginBusType(tQuery) + .then((response) => { + this.originTypes = response.data.list || []; + }) + .catch(() => { + }); + }, preInChange() { if (this.inputQuery.preIn) { this.inputQuery.changeEnable = false; diff --git a/src/views/basic/BussinessTypeThird.vue b/src/views/basic/BussinessTypeThird.vue index fb0600a..04e0ee5 100644 --- a/src/views/basic/BussinessTypeThird.vue +++ b/src/views/basic/BussinessTypeThird.vue @@ -1,124 +1,129 @@ diff --git a/src/views/basic/invWarehouse.vue b/src/views/basic/invWarehouse.vue index 8bcedcf..384ebc6 100644 --- a/src/views/basic/invWarehouse.vue +++ b/src/views/basic/invWarehouse.vue @@ -511,7 +511,7 @@ @@ -388,7 +388,6 @@ export default { }) }, getThirdSysFkName(thirdSys) { - for (let i = 0; i < this.thirdSys.length; i++) { if (this.thirdSys[i].thirdId === thirdSys) { return this.thirdSys[i].thirdName;