From f7a271fee0d1542a78a66d922b17e8cc18b39406 Mon Sep 17 00:00:00 2001 From: yewj Date: Fri, 28 Mar 2025 14:30:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2=E4=B8=8E?= =?UTF-8?q?=E6=89=AB=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 4 +- src/views/inoutDrug/DialogCreateDrugOrder.vue | 24 +- src/views/myLogin.vue | 638 ++++++++++++------ 3 files changed, 457 insertions(+), 209 deletions(-) diff --git a/.env.production b/.env.production index 25945ae2..a311d877 100644 --- a/.env.production +++ b/.env.production @@ -30,7 +30,7 @@ ENV = 'production' # 平和县医院 # VUE_APP_BASE_API = 'http://192.168.0.43:9150/UDI_WMS_MC/' -VUE_APP_BASE_API = 'http://sjld.jiyunas.icu:81/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://sjld.jiyunas.icu:81/UDI_WMS_MC/' # 长泰医院 # VUE_APP_BASE_API = 'http://192.168.6.189:9160/UDI_WMS_MC/' @@ -54,7 +54,7 @@ VUE_APP_BASE_API = 'http://sjld.jiyunas.icu:81/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://192.168.0.207:9160/UDI_WMS_MC/' # 云霄妇幼保健 -# VUE_APP_BASE_API = 'http://192.168.0.11:9160/UDI_WMS_MC/' +VUE_APP_BASE_API = 'http://192.168.0.11:9160/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://192.168.0.67:9150/UDI_WMS_MC/' # 东山 diff --git a/src/views/inoutDrug/DialogCreateDrugOrder.vue b/src/views/inoutDrug/DialogCreateDrugOrder.vue index c0322c68..6e3a9bfd 100644 --- a/src/views/inoutDrug/DialogCreateDrugOrder.vue +++ b/src/views/inoutDrug/DialogCreateDrugOrder.vue @@ -370,7 +370,9 @@ style="ime-mode: disabled" type="tel" v-model="codeFormData.code" - > + > + + @@ -379,6 +381,7 @@ 扫码添加 @@ -701,6 +704,7 @@ export default { errView: 0, //选入相关 selectorder: false, + inputLoading:false, //扫码相关 codeFormData: { code: "", @@ -1295,6 +1299,7 @@ export default { //添加条码 addCode(event) { + if (event == null) { } else event.target.select(); this.$refs.inputRef.select(); @@ -1357,13 +1362,14 @@ export default { let tQuery = Object.assign( JSON.parse(JSON.stringify(this.orderFormData)) ); - + console.log(this.codeFormData.billNo) if (this.codeFormData.code.includes(';')) { const codeArray = this.codeFormData.code.split(';') tQuery.codeList = codeArray } else tQuery.code = this.codeFormData.code; tQuery.orderType = this.viewType; + tQuery.productType = 2; this.addCodeSubmit(tQuery); this.$refs.inputRef.select(); }, @@ -1386,8 +1392,11 @@ export default { //添加条码后提交 addCodeSubmit(tQuery) { + + this.inputLoading = true batchAddCode(tQuery).then((response) => { if (response.code === 20000) { + this.inputLoading = false this.orderFormData.billNo = response.data.orderId; if (response.data.errMsg != null) { this.$alert(response.data.errMsg, "提示", { @@ -1407,6 +1416,7 @@ export default { } else { if (response.code == 502) { //该产品绑定多个产品ID处理 + this.inputLoading = false this.curRow = response.data; this.orderFormData.billNo = this.curRow.orderId; this.refreshCodesPanel(); @@ -1423,6 +1433,7 @@ export default { this.selectRlVisible = true; } else if (response.code == 503) { //该产品绑定多个供应商处理 + this.inputLoading = false this.curRow = response.data; this.orderFormData.billNo = this.curRow.orderId; this.codeFormData.relId = this.curRow.relId; @@ -1431,6 +1442,7 @@ export default { this.$message.error(response.message); this.dialogTableVisible = true; } else if (response.code == 504) { + this.inputLoading = false this.$confirm(response.message, "提示", { confirmButtonText: "确定", cancelButtonText: "忽略", @@ -1443,6 +1455,7 @@ export default { .catch(() => { }); } else if (response.code == 505) { + this.inputLoading = false this.$confirm(response.message, "提示", { confirmButtonText: "确定", cancelButtonText: "取消", @@ -1455,6 +1468,7 @@ export default { .catch(() => { }); } else if (response.code == 605) { + this.inputLoading = false this.$confirm(response.message, "提示", { confirmButtonText: "确定", cancelButtonText: "取消", @@ -1466,6 +1480,7 @@ export default { }); return; } else if (response.code == 604) { + this.inputLoading = false this.$confirm(response.message, "提示", { confirmButtonText: "确定", cancelButtonText: "取消", @@ -1477,6 +1492,7 @@ export default { }); return; } else if (response.code == 507) { + this.inputLoading = false this.editOriginCodeVisible = true; this.editTitle = response.message; this.codeFormData.produceDate = response.data.produceDate; @@ -1490,10 +1506,12 @@ export default { customClass: "messageIndex", }); } else if (response.code == 511) { + this.inputLoading = false //该UDI码绑定多个货位处理 this.spaceCodeList = response.data; this.selectSpaceVisible = true; } else { + this.inputLoading = false this.$alert(response.message, "提示", { confirmButtonText: "确定", type: "warning", @@ -1506,7 +1524,9 @@ export default { } } this.loading = false; + this.inputLoading = false }); + }, refreshCodesPanel() { diff --git a/src/views/myLogin.vue b/src/views/myLogin.vue index 2e986a8d..bf99c355 100644 --- a/src/views/myLogin.vue +++ b/src/views/myLogin.vue @@ -1,119 +1,120 @@