From c5feb93561d50e82eb555f50fa8da0799f46fa0d Mon Sep 17 00:00:00 2001 From: qiuyt Date: Tue, 12 Nov 2024 18:03:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=92=8C=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E7=AE=A1=E7=90=86=E7=9A=84=E8=8D=AF=E5=93=81=E5=AD=97?= =?UTF-8?q?=E5=85=B8=E7=BB=B4=E6=8A=A4=20=E5=A2=9E=E5=8A=A0=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E5=88=86=E7=B1=BB=E9=80=BB=E8=BE=91=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=8D=AF=E5=93=81=E5=B1=82=E7=BA=A7=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/drug/drugAdd.vue | 116 ++++++++++++++--------- 1 file changed, 73 insertions(+), 43 deletions(-) diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue index 687e89cd..d2e98a7a 100644 --- a/src/views/basic/product/drug/drugAdd.vue +++ b/src/views/basic/product/drug/drugAdd.vue @@ -250,6 +250,26 @@

基本信息

+ + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + - - + + + - - - - - - - @@ -339,7 +356,13 @@ - + + + + + + + + @@ -357,9 +383,6 @@ - - - @@ -369,6 +392,10 @@ + + + + - - - - - - - - - + @@ -421,7 +438,13 @@ - + + + + + + + + - - - @@ -447,6 +470,7 @@ + @@ -793,6 +817,9 @@ export default { useLevel: [ {required: true, message: '请选择计量单位', trigger: 'blur'} ], + detailSort: [ + {required: true, message: '请选择明细分类', trigger: 'blur'} + ], // useMaxLevel: [ // {required: true, message: '请选择允许采集的最大层级', trigger: 'blur'} // ], @@ -1007,18 +1034,21 @@ export default { this.$message.error('层级标识不能为空') return } - if (isBlank(row.packLevel)) { - this.$message.error('包装级别不能为空') + if (isBlank(row.bhxjsl)) { + row.bhxjsl = 0 + } + if (isNaN(row.packLevel)) { + row.packLevel = 0 + } + if(this.newProductData.detailSort > 9 && row.packLevel == '0' ){ + this.$message.error('包装级别必须大于0') return + } if (isBlank(row.packUnit)) { this.$message.error('层级单位不能为空') return } - if (isBlank(row.bhxjsl)) { - this.$message.error('请填写下级数量') - return - } let editQuery = { nameCode: row.nameCode, @@ -1055,8 +1085,8 @@ export default { addDrugLevel() { this.detailList.push({ nameCode: '', - packLevel: null, - bhxjsl: null, + packLevel: 0, + bhxjsl: 0, isDisabled: false, rowDisabled: false, isUpDisabled: true