From 40657033175bbecb983654f43208d9c2c3e37bb6 Mon Sep 17 00:00:00 2001
From: 朱俊杰 <502612493@qq.com>
Date: 星期二, 25 一月 2022 15:42:11 +0800
Subject: [PATCH] 添加lombok,分离注册周期事件
---
web_src/src/components/dialog/chooseChannelForCatalog.vue | 32 +++++++++-----------------------
1 files changed, 9 insertions(+), 23 deletions(-)
diff --git a/web_src/src/components/dialog/chooseChannelForCatalog.vue b/web_src/src/components/dialog/chooseChannelForCatalog.vue
index 4e4339f..5133caa 100644
--- a/web_src/src/components/dialog/chooseChannelForCatalog.vue
+++ b/web_src/src/components/dialog/chooseChannelForCatalog.vue
@@ -91,16 +91,6 @@
if (typeof(callback) === 'function') {
callback(res.data.data)
}
- //
-
- // if (typeof (this.$refs.tree.setCurrentKey) == "undefined") {
- // this.$refs.tree.setCurrentKey(this.defaultCatalogId)
- // let data = this.$refs.tree.getCurrentNode()
- // if (data != null && data.id === this.defaultCatalogId) {
- // this.currentCatalogChange(data, this.$refs.tree.getNode(data.id))
- // }
- // }
-
}
})
.catch(function (error) {
@@ -126,18 +116,6 @@
let node = this.$refs.tree.getNode(id);
this.refreshCatalog(node);
}
- // if (nodeIds !== null) {
- // let refreshNode = {}
- // for (let i = 0; i < nodeIds.length; i++) {
- // let node = this.$refs.tree.getNode(nodeIds[i]);
- // refreshNode[node.parent.data.id] = node.parent
- // }
- // if (Object.values(refreshNode).length > 0) {
- // for (let j = 0; j < Object.values(refreshNode).length; j++) {
- // this.refreshCatalog(Object.values(refreshNode)[j]);
- // }
- // }
- // }
},
editCatalog: function (data, node){
let that = this;
@@ -261,7 +239,15 @@
disabled: node.level === 1,
divided: true,
onClick: () => {
- this.removeCatalog(data.id, node)
+ this.$confirm('纭畾鍒犻櫎?', '鎻愮ず', {
+ confirmButtonText: '纭畾',
+ cancelButtonText: '鍙栨秷',
+ type: 'warning'
+ }).then(() => {
+ this.removeCatalog(data.id, node)
+ }).catch(() => {
+
+ });
}
},
{
--
Gitblit v1.8.0