From 6e6127068f03a7fe655f1fd504c488f20683039f Mon Sep 17 00:00:00 2001 From: web <candymxq888@outlook.com> Date: 星期二, 15 七月 2025 18:28:02 +0800 Subject: [PATCH] fix:数据 --- src/views/facility/facilityList/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/facility/facilityList/index.vue b/src/views/facility/facilityList/index.vue index 769a24e..29988e8 100644 --- a/src/views/facility/facilityList/index.vue +++ b/src/views/facility/facilityList/index.vue @@ -141,7 +141,7 @@ /** 删除按钮操作 */ function handleDelete(row) { - proxy.$modal.confirm('是否确认删除名称为"' + row.contact + '"的数据项?').then(function () { + proxy.$modal.confirm('是否确认删除名称为"' + row.pointName + '"的数据项?').then(function () { return facilityApi().remove(row.id); }).then(() => { getList(); @@ -325,9 +325,9 @@ <el-button link type="primary" icon="Edit" v-has="['update',route]" @click="handleUpdate(scope.row)">修改 </el-button> - <el-button link type="primary" icon="Delete" v-has="['delete',route]" + <!-- <el-button link type="primary" icon="Delete" v-has="['delete',route]" @click="handleDelete(scope.row)">删除 - </el-button> + </el-button> --> </template> </el-table-column> </el-table> -- Gitblit v1.9.3