From a7e97317858ae64fad74324adeb273114244b6e8 Mon Sep 17 00:00:00 2001 From: anthonyywj2 <353682448@qq.com> Date: Mon, 13 Jun 2022 14:50:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=9F=A5=E8=AF=A2=EF=BC=8C?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E8=AF=A6=E6=83=85=EF=BC=8C=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/config.json | 8 +- src/views/basic/BussinessType.vue | 5 +- src/views/basic/BussinessTypeModify.vue | 2 + src/views/business/errorCode.vue | 21 ++ src/views/inout/IOFinishCode.vue | 283 +++++++++++++----------- src/views/inout/errorCode.vue | 54 ++++- 6 files changed, 236 insertions(+), 137 deletions(-) diff --git a/public/config.json b/public/config.json index 0812e25..8195b20 100644 --- a/public/config.json +++ b/public/config.json @@ -1,7 +1,7 @@ { - "UDI_SYNC_SERVER_IP": "http://192.168.0.115:9995/", - "BASE_URL":"http://192.168.0.115:9991", - "SERVER_IP": "http://192.168.0.115:9991/", - "WEBSOCKET_URL": "ws://192.168.0.115: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/", "hosp_name": "诏安县总医院(测试)" } diff --git a/src/views/basic/BussinessType.vue b/src/views/basic/BussinessType.vue index 3744d99..9c10c45 100644 --- a/src/views/basic/BussinessType.vue +++ b/src/views/basic/BussinessType.vue @@ -218,6 +218,7 @@ export default { scanPreIn: null, vailInv: null, entrutSpms: null, + codeFillCheck: null, }, enableMap: { true: "是", @@ -389,7 +390,9 @@ export default { ullageFill: row.ullageFill, scanPreIn: row.scanPreIn, vailInv: row.vailInv, - entrutSpms: row.entrutSpms + entrutSpms: row.entrutSpms, + codeFillCheck: row.codeFillCheck, + }; this.modifyDialogVisible = true; diff --git a/src/views/basic/BussinessTypeModify.vue b/src/views/basic/BussinessTypeModify.vue index f28fff7..c43439f 100644 --- a/src/views/basic/BussinessTypeModify.vue +++ b/src/views/basic/BussinessTypeModify.vue @@ -213,6 +213,8 @@ 是否访问库存 + 是否三期校验 + diff --git a/src/views/business/errorCode.vue b/src/views/business/errorCode.vue index 7015a8d..c9c66eb 100644 --- a/src/views/business/errorCode.vue +++ b/src/views/business/errorCode.vue @@ -30,12 +30,33 @@ + + + + + diff --git a/src/views/inout/IOFinishCode.vue b/src/views/inout/IOFinishCode.vue index 0e78ed3..8c927b0 100644 --- a/src/views/inout/IOFinishCode.vue +++ b/src/views/inout/IOFinishCode.vue @@ -1,151 +1,172 @@ - - - - - + + + + + - - - 查询 - - - - - - - - - - - {{ scope.row.actDate }} - - - - + + + 查询 + + + + + + + + + + + + + + + + {{ scope.row.actDate }} + + + + - - - + + + diff --git a/src/views/inout/errorCode.vue b/src/views/inout/errorCode.vue index 8452b5a..7c39626 100644 --- a/src/views/inout/errorCode.vue +++ b/src/views/inout/errorCode.vue @@ -31,6 +31,26 @@ + + + + 删除--> + 编辑 + + + + + + + @@ -125,6 +166,7 @@ import { import draggable from "vuedraggable"; import DialogSelectUnit from "./DialogSelectUnit"; import selectRlDialog from "./DialogSelectRl"; +import editCodeDialog from "@/views/inout/editCode"; export default { name: "idQuery", @@ -154,10 +196,13 @@ export default { multipleSelection: [], selectRlVisible: false, dialogTableVisible: false, + codeDetail: null, + editTitle: "补齐三期", + editCodeVisible: false, }; }, components: { - draggable, DialogSelectUnit, selectRlDialog + draggable, DialogSelectUnit, selectRlDialog,editCodeDialog }, methods: { handleSelectionChange(val) { @@ -307,6 +352,13 @@ export default { } return rowBackground; }, + closeCodeDialog() { + this.editCodeVisible = false; + }, + editCode(row) { + this.codeDetail = row; + this.editCodeVisible = true; + }, }, filters: {}, mounted() {