From 359842fad8878b3e1697bbd2b126b65002a5f98c Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Fri, 27 Mar 2026 17:29:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=9A=E6=97=B6=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E4=BA=86=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/home/timing.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/home/timing.vue b/src/home/timing.vue index 57ec38c..7fde3e6 100644 --- a/src/home/timing.vue +++ b/src/home/timing.vue @@ -144,14 +144,14 @@ function addTime() { }); } /** 删除 */ -function remove(id) { +function remove(timeId) { // 确定提示框 Taro.showModal({ title: "提示", content: `确认删除该定时信息?`, success: function (res) { if (res.confirm) { - delTimeCtrl({ id }).then((res) => { + delTimeCtrl({ id: timeId }).then((res) => { if (res.code == 200) { state.show = true; state.msg = "删除成功";