NEZ-601 feat: 使用temp添加图表

This commit is contained in:
chenjinsong
2021-05-19 23:17:24 +08:00
parent 0f5176cd48
commit 190e7669b2
11 changed files with 193 additions and 505 deletions

View File

@@ -25,10 +25,6 @@ export default {
methods: {
tableOperation ([command, row, param]) {
switch (command) {
case 'edit': {
this.$emit('edit', row)
break
}
case 'delete': {
this.$emit('del', row)
break
@@ -37,24 +33,12 @@ export default {
this.$emit('showBottomBox', 'recordTab', row)
break
}
case 'cli': {
this.$emit('cli', row)
break
}
case 'duplicate': {
this.$emit('duplicate', row)
break
}
case 'copy': {
this.$emit('copy', row)
break
}
case 'shutdown': {
// this.$emit('copy', row)
this.$emit('shutdown', row)
case 'endpointQuery': {
this.$emit('showBottomBox', 'endpointQuery', row)
break
}
default:
this.$emit(command, row)
break
}
},