From ff99f9e18975c81104572c560d86e001ffb64a7a Mon Sep 17 00:00:00 2001 From: wangxiaowei <1121133807@qq.com> Date: Wed, 17 Dec 2025 14:53:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E9=A6=96=E9=A1=B5=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=EF=BC=8C=E6=B7=BB=E5=8A=A0=E5=85=85=E5=80=BC=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index 0c546e4..529b681 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -13,9 +13,13 @@ - + + + + @@ -38,7 +42,7 @@ {{ item.name }} 营业时间:{{ item.start_time }}-{{ item.end_time }} - 立即预约 + 立即支付 @@ -644,7 +648,14 @@ export default { uni.navigateTo({ url: `/bundle/reserve/details?id=${id}&typeId=${typeId}` }); - } + }, + + // 跳转到充值界面 + toRecharge() { + uni.navigateTo({ + url: '/bundle/recharge/recharge' + }); + }, } };