From 0099f2bb4bd4263ba1c7de62e423e6ddd04f7b87 Mon Sep 17 00:00:00 2001 From: qyt <123456> Date: Sun, 27 Oct 2024 20:43:10 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E7=89=A9=E8=B5=84=E5=AD=97=E5=85=B8?= =?UTF-8?q?=E7=BB=B4=E6=8A=A4=E7=9A=84=E7=BC=96=E8=BE=91=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E4=BA=A7=E5=93=81=E6=A0=87=E8=AF=86=E9=80=89=E6=8B=A9=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E4=B8=80=E4=B8=AA=E7=9A=84=E6=97=B6=E5=80=99=E5=85=B6?= =?UTF-8?q?=E4=BB=96=E7=9A=84=E4=B8=8D=E8=83=BD=E8=BF=9B=E8=A1=8C=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/productEdit.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/basic/product/productEdit.vue b/src/views/basic/product/productEdit.vue index efdc1abc..b550b9dc 100644 --- a/src/views/basic/product/productEdit.vue +++ b/src/views/basic/product/productEdit.vue @@ -1274,6 +1274,7 @@ export default { }, isSave: true, selectedIndex: null, + editRowSwitch: false //产品标识编辑开关 没保存前其他编辑不能按 } @@ -1713,6 +1714,7 @@ export default { this.editQuery = row; }, //层级保存 levelSave(row) { + this.editRowSwitch = false if (isBlank(row.nameCode)) { this.$message.error('层级标识不能为空') return @@ -1767,12 +1769,19 @@ export default { }) }, rowChange(index, val) { + + if(this.editRowSwitch == true ){ + this.$message.error('请先保存当前产品标识编辑') + return + } + console.log("rowChange===",index) this.selectedIndex = index - this.isSave = false + this.editRowSwitch = true }, + deleteLevel(index, row) { this.$confirm('此操作将删除该层级,是否继续?', '提示', { confirmButtonText: '确定',