修i该页面

This commit is contained in:
wangxiaowei
2025-09-10 08:06:35 +08:00
parent 2f6bfca622
commit 314b1accdd
13 changed files with 323 additions and 33 deletions

View File

@ -248,14 +248,14 @@
// 跳转抖音团购
handleToDouYinGroupBuying() {
uni.navigateTo({
url: '/bundle/group-buying/douyin/order-list'
url: '/bundle/order/douyin/order-list'
})
},
// 跳转平台团购
handleToPlatformGroupBuying() {
uni.navigateTo({
url: '/bundle/group-buying/platform/order-list'
url: '/bundle/order/platform/order-list'
})
},

View File

@ -30,15 +30,28 @@
</view>
<view class="mx-30rpx" :style="{ paddingTop: navbarHeight + 'px' }">
<mescroll-body @init="mescrollInit" @down="downCallback" @up="reserve.upCallback" :up="upOption">
<view v-for="(item, index) in 5" :key="index" >
<view class="mb-20rpx" v-if="tab === 0">
<combo-card :type="ReserveCategory.TeaRoom" :order-type="ReserveCategoryOrderStatus.Consuming"></combo-card>
<!-- 茶室预约 -->
<view v-if="tab === 0">
<mescroll-body @init="mescrollInit" @down="downCallback" @up="reserve.upCallback" :up="upOption">
<view v-for="(item, index) in 5" :key="index" >
<view class="mb-20rpx">
<combo-card :type="ReserveCategory.TeaRoom" :order-type="ReserveCategoryOrderStatus.Consuming"></combo-card>
</view>
</view>
</view>
</mescroll-body>
</mescroll-body>
</view>
<!-- 茶艺师预约 -->
<view v-if="tab === 1">
<mescroll-body @init="mescrollInit" @down="downCallback" @up="reserve.upCallback" :up="upOption">
<view v-for="(item, index) in 5" :key="index" >
<view class="mb-20rpx">
<combo-card :type="ReserveCategory.TeaSpecialist" :order-type="ReserveCategoryOrderStatus.Consuming"></combo-card>
</view>
</view>
</mescroll-body>
</view>
</view>
</view>
</template>