From f7b9418d86e01c16f98cf5f4b122678c204db33a Mon Sep 17 00:00:00 2001 From: rd <1344903914@qq.com> Date: Wed, 9 Jul 2025 14:47:20 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E6=8A=95=E6=94=BE=E8=B4=A6=E6=88=B7?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BC=A0=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../account-manage/components/account-table/delete-account.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/property-marketing/put-account/account-manage/components/account-table/delete-account.vue b/src/views/property-marketing/put-account/account-manage/components/account-table/delete-account.vue index 31e2926..9b0bb2a 100644 --- a/src/views/property-marketing/put-account/account-manage/components/account-table/delete-account.vue +++ b/src/views/property-marketing/put-account/account-manage/components/account-table/delete-account.vue @@ -57,7 +57,7 @@ const open = (record) => { async function onDelete() { const _fn = isBatch.value ? batchDeletePlacementAccounts : deletePlacementAccount; - const _params = isBatch.value ? { ids: accountId.value } : { id: accountId.value }; + const _params = isBatch.value ? { ids: accountId.value } : accountId.value; const { code } = await _fn(_params); if (code === 200) { AMessage.success('删除成功');