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,