From 7947b8b04b502de455d9fca20dc8f8ce0a182b64 Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Fri, 9 Sep 2022 23:47:39 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20=E4=BA=A4=E6=8E=A5=E7=82=B9?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E5=9C=B0=E5=9B=BE=E6=95=B0=E6=8D=AE=E4=B9=9F?= =?UTF-8?q?=E8=83=BD=E5=B1=95=E7=A4=BA=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/common/mapLogistic/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/common/mapLogistic/index.vue b/src/views/common/mapLogistic/index.vue index c2de535..a1c950d 100644 --- a/src/views/common/mapLogistic/index.vue +++ b/src/views/common/mapLogistic/index.vue @@ -78,13 +78,13 @@ /** 删除按钮操作,行内删除 */ async function handleDel(record?: Recordable) { - const id = record?.id; + const ids = record?.id; createConfirm({ iconType: 'warning', title: '警告', - content: `是否确认删除机构编号为${id}机构吗?`, + content: `是否确认删除机构编号为${ids}机构吗?`, onOk: async () => { - await delMapLogistic(id); + await delMapLogistic(ids); createMessage.success('删除成功!'); handleRefreshTable(); }