| | |
| | | multiple: true, |
| | | tableColumns: [ |
| | | { |
| | | label: '模型名称', |
| | | prop: 'name' |
| | | label: '模板名称', |
| | | prop: 'templateName' |
| | | }, |
| | | { |
| | | label: '模型类型', |
| | | prop: 'createBy' |
| | | }, |
| | | { |
| | | label: '模型路径', |
| | | prop: 'createTime' |
| | | label: '模型ID', |
| | | prop: 'modelId' |
| | | }, |
| | | { |
| | | label: '操作', |
| | |
| | | // 删除数据 |
| | | handleDelete(row) { |
| | | const ids = row.id || this.ids |
| | | const name = row.name || '' |
| | | this.$api.deleteByName('/work/tower', ids,name).then(res => { |
| | | // const name = row.name || '' |
| | | const name = ids |
| | | this.$api.deleteByName('/tower/point', ids,name).then(res => { |
| | | this.$refs.AppTable.getData() |
| | | }) |
| | | }, |