From 3b3e15d21e6ce239c42a7e74ea76e3da3cc80547 Mon Sep 17 00:00:00 2001 From: zhouzy062 Date: Wed, 3 Apr 2024 09:10:47 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E5=AE=81=E5=A4=8F=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E6=89=93=E5=8C=85=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-screen/config/dev.env.js | 4 ++-- sgzb-screen/config/index.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sgzb-screen/config/dev.env.js b/sgzb-screen/config/dev.env.js index fb2955cd..5ea4eff9 100644 --- a/sgzb-screen/config/dev.env.js +++ b/sgzb-screen/config/dev.env.js @@ -14,6 +14,6 @@ var testUrl = '192.168.0.14:21626' //线上 module.exports = merge(prodEnv, { NODE_ENV: '"development"', //API调用地址 - API_ROOT: '"http://' + testUrl + '"', - BASE_URL: '/cockpit-screen/' + // API_ROOT: '"http://' + testUrl + '"', + // BASE_URL: '/cockpit-screen/' }) diff --git a/sgzb-screen/config/index.js b/sgzb-screen/config/index.js index a13a3a0b..d43320aa 100644 --- a/sgzb-screen/config/index.js +++ b/sgzb-screen/config/index.js @@ -20,7 +20,7 @@ module.exports = { cssSourceMap: true, proxyTable: { '/screen': { - target: 'http://112.29.103.165:21626', + target: 'http://112.29.103.165:21624', changeOrigin: true, // secure: true, //如果是https接口,需要配置这个参数 pathRewrite: { From a8b1b32475150a2c0765a259bd5c4714a7da3f3f Mon Sep 17 00:00:00 2001 From: binbin_pan Date: Wed, 3 Apr 2024 09:23:27 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E6=95=B0=E9=87=8F=E7=9B=98=E7=82=B9?= =?UTF-8?q?=E5=85=A5=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/store/warehousing/putInStore.vue | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/sgzb-ui/src/views/store/warehousing/putInStore.vue b/sgzb-ui/src/views/store/warehousing/putInStore.vue index ff774c19..03a3bcb5 100644 --- a/sgzb-ui/src/views/store/warehousing/putInStore.vue +++ b/sgzb-ui/src/views/store/warehousing/putInStore.vue @@ -206,7 +206,6 @@ :max="99" :controls="false" style="width: 13vw;" - @keyup.enter.native="handleQuery" /> @@ -221,7 +220,6 @@ placeholder="请输入前缀" clearable style="width: 220px" - @keyup.enter.native="handleQuery" /> @@ -233,7 +231,6 @@ clearable placeholder="请输入后缀范围" style="width: 185px" - @keyup.enter.native="handleQuery" @input="changeInput(codeForm.codeSuffixStart)" /> @@ -243,7 +240,6 @@ clearable placeholder="请输入后缀范围" style="width: 185px" - @keyup.enter.native="handleQuery" @input="changeInput(codeForm.codeSuffixEnd)" /> @@ -258,7 +254,6 @@ :min="0" :controls="false" style="width: 13vw;" - @keyup.enter.native="handleQuery" /> @@ -289,8 +284,7 @@ type="date" placeholder="请输入检验时间" style="width: 400px" - @keyup.enter.native="handleQuery"> - + /> @@ -300,7 +294,6 @@ type="date" placeholder="请输入检验时间" style="width: 13vw;" - @keyup.enter.native="handleQuery" /> @@ -323,7 +316,6 @@ rows="4" show-word-limit :style="{ width: isNumCheck ? '220px' : '400px' }" - @keyup.enter.native="handleQuery" /> @@ -398,7 +390,6 @@ type="date" placeholder="请输入检验时间" style="width: 170px" - @keyup.enter.native="handleQuery" > @@ -409,7 +400,6 @@ type="date" placeholder="请输入下次检验时间" style="width: 170px" - @keyup.enter.native="handleQuery" > @@ -423,7 +413,6 @@ :controls="false" clearable style="width: 160px" - @keyup.enter.native="handleQuery" /> @@ -630,10 +619,10 @@ export default { }, codeFormRules: { putInType: [ - { required: true, message: "入库来源不能为空", trigger: "blur" } + { required: true, message: "入库来源不能为空", trigger: "change" } ], typeId: [ - { required: true, message: "设备/物资类型不能为空", trigger: "blur" } + { required: true, message: "设备/物资类型不能为空", trigger: "change" } ], num: [ { required: true, message: "待入库总数不能为空", trigger: "blur" } From c6659d11670dd7a5eb89261ed42b4b8d48741555 Mon Sep 17 00:00:00 2001 From: zhouzy062 Date: Wed, 3 Apr 2024 09:41:11 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E6=9C=BA=E5=85=B7=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8E=82=E5=AE=B6=E8=A7=84=E6=A0=BC=E5=9E=8B?= =?UTF-8?q?=E5=8F=B7=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/views/store/tools/toolsType.vue | 81 ++++++++++----------- 1 file changed, 37 insertions(+), 44 deletions(-) diff --git a/sgzb-ui/src/views/store/tools/toolsType.vue b/sgzb-ui/src/views/store/tools/toolsType.vue index 01a4278f..c23678de 100644 --- a/sgzb-ui/src/views/store/tools/toolsType.vue +++ b/sgzb-ui/src/views/store/tools/toolsType.vue @@ -75,43 +75,30 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -285,13 +284,7 @@ - - - - - - - +