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