隐藏首页通知,添加充值入口

This commit is contained in:
wangxiaowei
2025-12-17 14:53:26 +08:00
parent f29756ac58
commit ff99f9e189

View File

@ -13,9 +13,13 @@
</view>
<view class="notice" v-if="setting.notice">
<!-- <view class="notice" v-if="setting.notice">
<image style="width: 40rpx;height: 40rpx;" src="@/static/icon/notice.png" mode=""></image>
<view class="notice-txt">{{ setting.notice }}</view>
</view> -->
<view class="" style="display: flex; justify-content: center;" @click="toRecharge">
<image style="width: 690rpx;height: 140rpx;" src="https://xh.stnav.com/uploads/sport/recharge.png" mode=""></image>
</view>
<!-- 预约球馆 -->
@ -38,7 +42,7 @@
<view class="ball-center-title">{{ item.name }}</view>
<view class="d-b-c">
<view class="reserve-time">营业时间{{ item.start_time }}-{{ item.end_time }}</view>
<view class="reserve-btn" >立即预约</view>
<view class="reserve-btn">立即支付</view>
</view>
</view>
</view>
@ -644,7 +648,14 @@ export default {
uni.navigateTo({
url: `/bundle/reserve/details?id=${id}&typeId=${typeId}`
});
}
},
// 跳转到充值界面
toRecharge() {
uni.navigateTo({
url: '/bundle/recharge/recharge'
});
},
}
};
</script>