From 00e2e507ed00e2b0ab046612d8a7fbef29f0304e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E7=A3=8A?= <45566618@qq.com> Date: Thu, 22 Jan 2026 16:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=B4=E6=8A=A4=E5=B7=A5=E5=85=B7-=E6=B8=85?= =?UTF-8?q?=E9=99=A4=E4=BE=9B=E5=BA=94=E5=95=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cleanAdvisory/cleanadvisory.data.ts | 2 ++ .../internaltool/cleanAdvisory/index.vue | 20 +++++++++++++------ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/views/internaltool/cleanAdvisory/cleanadvisory.data.ts b/src/views/internaltool/cleanAdvisory/cleanadvisory.data.ts index a23b99b..346916b 100644 --- a/src/views/internaltool/cleanAdvisory/cleanadvisory.data.ts +++ b/src/views/internaltool/cleanAdvisory/cleanadvisory.data.ts @@ -38,6 +38,8 @@ export const columns: BasicColumn[] = [ return "员工"; }else if(text == '3'){ return "公司"; + }else if(text == '4'){ + return "供应商"; }else{ return "其他"; } diff --git a/src/views/internaltool/cleanAdvisory/index.vue b/src/views/internaltool/cleanAdvisory/index.vue index 107454a..497fe46 100644 --- a/src/views/internaltool/cleanAdvisory/index.vue +++ b/src/views/internaltool/cleanAdvisory/index.vue @@ -81,29 +81,37 @@ async function handleDelete(record, type) { function getTableAction(record) { return [ { - label: '清除长者入驻', + label: '清除长者', popConfirm: { - title: '是否确认清除入驻', + title: '是否确认清除长者', confirm: handleClean.bind(null, record, '1'), placement: 'topLeft', }, }, { - label: '清除员工入驻', + label: '清除员工', popConfirm: { - title: '是否确认清除入驻', + title: '是否确认清除员工', confirm: handleClean.bind(null, record, '2'), placement: 'topLeft', }, }, { - label: '清除机构入驻', + label: '清除机构', popConfirm: { - title: '是否确认清除入驻', + title: '是否确认清除机构', confirm: handleClean.bind(null, record, '3'), placement: 'topLeft', }, }, + { + label: '清除供应商', + popConfirm: { + title: '是否确认清除供应商', + confirm: handleClean.bind(null, record, '4'), + placement: 'topLeft', + }, + }, { label: '清除所有', popConfirm: {