完善订单

This commit is contained in:
wangxiaowei
2025-12-09 18:03:40 +08:00
parent cba684d7f6
commit f0d16babf0
5 changed files with 60 additions and 41 deletions

View File

@ -605,6 +605,14 @@ export default {
// 场馆预约
handleToReserve(id, typeId) {
if (typeId == 2) {
uni.showToast({
title: '场馆暂未开放',
duration: 2000,
icon: 'none'
});
return;
}
uni.navigateTo({
url: `/bundle/reserve/details?id=${id}&typeId=${typeId}`
});