From 93b7f6597f794f97ba23938b61af253b46a964ba Mon Sep 17 00:00:00 2001 From: wangjiahai <1556608@qq.com> Date: Tue, 5 Dec 2023 10:44:59 +0800 Subject: [PATCH] 111 --- pages/card/card.vue | 77 +++++++++++++++++++++++++++++---------------- 1 file changed, 50 insertions(+), 27 deletions(-) diff --git a/pages/card/card.vue b/pages/card/card.vue index eb3b00b..1026301 100644 --- a/pages/card/card.vue +++ b/pages/card/card.vue @@ -8,7 +8,8 @@ - + + 绑定新卡 @@ -18,43 +19,59 @@ - + - + - + + - + + + - + + + + - + - {{item.name}} - {{item.time}} + + + {{item.name}} + + {{item.time}} + + + + 预约提货 + + {{item.pname}} + style="border: 1px #FED4B3 solid;margin-left: 10px;border-radius: 15px;padding: 3px 10px; font-size: 12px; color: #FF6000;flex-shrink: 0;"> {{item.state}} + - 预约提货 - @@ -136,22 +153,26 @@ }, booking(item) { - - if(!item.notRese){ + + if (!item.notRese) { this.shortToast("该卡商品已全部预约。") return - }else{ + } else { uni.navigateTo({ url: '/pages/card/card_booking?sid=' + item.sid }) } - + } } }