From e3a122fecff064321b6f78ed5ff21a939e390e24 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Fri, 8 Nov 2024 16:54:14 +0800 Subject: [PATCH] =?UTF-8?q?11/8=20=E5=BD=93=E9=87=87=E9=9B=86=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E5=B1=82=E7=BA=A7=E6=9C=AA=E8=AE=BE=E7=BD=AE=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E5=80=99=E8=AE=BE=E7=BD=AE=E9=BB=98=E8=AE=A4=E5=B1=82?= =?UTF-8?q?=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/drug/drugAdd.vue | 92 ++++++++++++++---------- 1 file changed, 55 insertions(+), 37 deletions(-) diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue index b7c2050f..48c15e71 100644 --- a/src/views/basic/product/drug/drugAdd.vue +++ b/src/views/basic/product/drug/drugAdd.vue @@ -194,7 +194,6 @@ @@ -568,42 +567,42 @@ - - - - - 参数 - - - - 设置 - - - - 参数设置说明 - - - - - 是否禁用 - - - - - - - - - 禁用后该药品将无法扫码使用 - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -950,6 +949,7 @@ export default { } }) } else { + this.setDefaultLevel() this.$refs['dataForm'].validate((valid) => { if (!valid) { return this.$message.error('请补充必要数据') @@ -962,6 +962,7 @@ export default { this.newProductData.uuid = this.rowData.uuid this.newProductData.nameCode = this.rowData.nameCode this.newProductData.relId = this.newProductData.id + updatetDrug(this.newProductData).then(res => { this.saveLoading = false if (res.code == 20000) { @@ -980,6 +981,23 @@ export default { this.closeDialog() }, + //设置层级 + setDefaultLevel(){ + //判断流通 最大层级 + if (this.newProductData.distributeMaxLevel == null){ + let levelUnit = this.levelUnitList[this.levelUnitList.length - 1]; + this.newProductData.distributeMaxLevel = levelUnit.packLevel + } + // 判断使用 采集最大层级 + if (this.newProductData.useMaxLevel == null){ + //获取获取第一个 如果packUnit且为null的话就设置第二个 + let levelUnit = this.levelUnitList[0]; + if (isBlank(levelUnit.packUnit)){ + levelUnit = this.levelUnitList[1] + } + this.newProductData.useMaxLevel = levelUnit.packLevel + } + }, //层级保存 levelSave(row) { this.editRowSwitch = false