From f93ef3f269f63524d6dd2467b0d909a5916d6bdc Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Fri, 6 Sep 2024 11:49:19 +0800
Subject: [PATCH] =?UTF-8?q?9/6=20=E8=8D=AF=E5=93=81=E5=9F=BA=E7=A1=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basic/product/drug/drugAdd.vue | 81 ++++++++++++++++--------
1 file changed, 54 insertions(+), 27 deletions(-)
diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue
index 72815040..d4b9fb14 100644
--- a/src/views/basic/product/drug/drugAdd.vue
+++ b/src/views/basic/product/drug/drugAdd.vue
@@ -83,7 +83,7 @@
@@ -97,14 +97,14 @@
- 保存
编辑
@@ -125,6 +125,23 @@
基本信息
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -227,16 +244,6 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
@@ -277,13 +296,7 @@
-
-
-
-
-
+
-
-
+
+
+
@@ -309,7 +323,7 @@
-
+
@@ -330,8 +344,8 @@
-
-
+
+
@@ -340,7 +354,7 @@
-
+
@@ -597,7 +611,8 @@ export default {
useLevelUnit: null,
distributeLevel: null,
useLevel: null,
- majorStatus: 1
+ majorStatus: 1,
+ physicType: 3
},
thirdSys: [],
@@ -649,6 +664,7 @@ export default {
status: false,
rowDisabled: false,
selectedIndex: null,
+ isSave: true,
loading: false,
tollProjectDialogVisible: false,
sysList: [],
@@ -702,10 +718,14 @@ export default {
},
saveNewProduct() {
+ if (!this.isSave){
+ return this.$message.error("请先保存药品层级")
+ }
this.addProductDialogVisible = false
this.newProductData.registerNo = this.newProductData.zczbhhzbapzbh
this.newProductData.splitEnable = true
this.newProductData.autoCode = true
+ this.newProductData.updateLevelDrugRequests = this.detailList
//新增
if (this.type == 1) {
this.$refs['dataForm'].validate((valid) => {
@@ -743,6 +763,7 @@ export default {
}
this.saveLoading = true
+
addDrug(this.newProductData).then((res) => {
this.saveLoading = false
if (res.code == 20000) {
@@ -816,12 +837,14 @@ export default {
updateLevelDrug(editQuery).then(res => {
this.saveLoading = false
if (res.code == 20000) {
+ this.isSave = true
this.$message.success('保存成功!')
this.selectedIndex = null
if (this.newProductData.id != null) {
this.getDetailList()
}
} else {
+ this.isSave = true
this.$message.error(res.message)
}
})
@@ -841,10 +864,12 @@ export default {
isUpDisabled: true
})
this.selectedIndex = this.detailList.length - 1
+ this.isSave = false
},
rowChange(index, val) {
this.selectedIndex = index
+ this.isSave = false
},
deleteLevel(index, row) {
@@ -857,11 +882,13 @@ export default {
let params = { nameCode: row.nameCode }
delDrugLevel(params).then((res) => {
if (res.code === 20000) {
+ this.isSave = true
this.$message.success('删除成功')
this.getDetailList()
}
})
} else {
+ this.isSave = true
this.detailList.splice(index, 1)
this.$message.success('删除成功')
}