From e7cd04cf983fab804885f067f31d007eb848e792 Mon Sep 17 00:00:00 2001 From: guoshuang Date: Wed, 9 Oct 2024 09:08:38 +0800 Subject: [PATCH] =?UTF-8?q?srm=E5=88=B0=E8=B4=A7=E7=99=BB=E8=AE=B0bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/login/index.vue | 2 +- src/pages/wms/Raw/ArrivalRegistration/index.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/login/login/index.vue b/src/pages/login/login/index.vue index 8e8a056..38c3d72 100644 --- a/src/pages/login/login/index.vue +++ b/src/pages/login/login/index.vue @@ -142,7 +142,7 @@ export default class LoginPage extends BasePage { // console.log('Version////', this.Version); } ///********版本号修改区域********** - version = '0.0.111'; //正式版本号 + version = '0.0.112'; //正式版本号 //version = '0.0.14'; //测试版本号 //***************标志修改区域:是否是测试标志: false 正式版本; true 测试版本**************** //isTest = true; diff --git a/src/pages/wms/Raw/ArrivalRegistration/index.vue b/src/pages/wms/Raw/ArrivalRegistration/index.vue index c18b79e..017cf81 100644 --- a/src/pages/wms/Raw/ArrivalRegistration/index.vue +++ b/src/pages/wms/Raw/ArrivalRegistration/index.vue @@ -386,9 +386,9 @@ export default class ArrivalRegistration extends BasePage { } //到货登记确定提交 async onOksing() { - if (this.procureCode == '' || this.procureCode.length == 0) { + if (this.prodobj.value == '') { (this.$refs.uToast as any).show({ - title: '请输入采购单号', + title: '请选择采购单', type: 'default', }); return; @@ -403,7 +403,7 @@ export default class ArrivalRegistration extends BasePage { } let params = { factoryCode: session.FactoryCode, - procureCode: this.procureCode, + procureCode: this.prodobj.value, id: this.list[0].id, czNumber: this.czNumber, lastUpdateBy: session.loginName,