From b498685e9c29c9c4b56f24f1ee1c9db9fd109ad9 Mon Sep 17 00:00:00 2001 From: jihongshun <1151753686@qq.com> Date: 星期六, 12 七月 2025 17:23:02 +0800 Subject: [PATCH] 算法优化 --- src/views/system/shootPoint/index.vue | 17 +++++++---------- 1 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/views/system/shootPoint/index.vue b/src/views/system/shootPoint/index.vue index 41f202e..8ad757b 100644 --- a/src/views/system/shootPoint/index.vue +++ b/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() }) }, -- Gitblit v1.9.3