fix:修改 表达式模板的按钮顺序 修改mib表格无法编辑的问题 修改 alert rule methods的显示问题

This commit is contained in:
zhangyu
2021-05-11 20:47:22 +08:00
parent b3a3e18a04
commit ba854123d4
9 changed files with 27 additions and 5 deletions

View File

@@ -49,6 +49,10 @@ export default {
this.del(row)
break
}
case 'copy': {
this.copy(row)
break
}
default:
break
}
@@ -135,6 +139,10 @@ export default {
}
})
},
copy (u) {
this.object = { ...u, name: 'Copy from ' + u.name, id: '' }
this.rightBox.show = true
},
esc () {
this.rightBox.show = false
},