Commit 75c46403 by caoyanzhi

优化实现

parent da97ff66
......@@ -276,12 +276,9 @@ export default {
methods: {
// 关闭删除标签值得popover弹窗
closeDelPopOver(index) {
let copy = this.tagValTableData.slice(0);
copy[index].showDelPopOver = false;
this.tagValTableData.splice(0);
this.$nextTick(() => {
this.tagValTableData = copy;
})
let data = this.tagValTableData[index];
data.showDelPopOver = false;
this.tagValTableData.splice(index, 1, data);
},
// 保存标签基本信息
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment