jihongshun
2025-07-12 b498685e9c29c9c4b56f24f1ee1c9db9fd109ad9
src/views/system/shootPoint/index.vue
@@ -43,16 +43,12 @@
      multiple: true,
      tableColumns: [
        {
          label: '模型名称',
          prop: 'name'
          label: '模板名称',
          prop: 'templateName'
        },
        {
          label: '模型类型',
          prop: 'createBy'
        },
        {
          label: '模型路径',
          prop: 'createTime'
          label: '模型ID',
          prop: 'modelId'
        },
        {
          label: '操作',
@@ -95,8 +91,9 @@
    // 删除数据
    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()
      })
    },