完善茶艺师套餐功能

This commit is contained in:
wangxiaowei
2026-03-28 19:05:32 +08:00
parent 4729dc5ae8
commit 61d0ca2bd1
8 changed files with 38 additions and 20 deletions

View File

@ -44,6 +44,15 @@
</template>
</reserve-notice>
</view>
<view v-if="type == OrderType.TeaPackage">
<reserve-notice title="套餐购买" desc="套餐购买成功">
<template #layout>
<view class="pb-22rpx mt-40rpx mx-30rpx flex justify-between items-center text-[32rpx] text-center">
<view class='bg-[#4C9F44] text-[#fff] rounded-8rpx h-90rpx leading-90rpx w-632rpx' @click="reserve.handleToTeaSpecialistOrder">完成</view>
</view>
</template>
</reserve-notice>
</view>
</view>
</view>
@ -107,6 +116,13 @@
handleRoomDone: () => {
router.redirectTo('/bundle_b/pages/tea-specialist/list')
// router.switchTab('/pages/index/index')
},
/**
* 套餐购买关闭所有页面跳转到茶艺师列表
*/
handleToTeaSpecialistOrder: () => {
router.reLaunch('/bundle/order/tea-specialist/order-list')
}
}
</script>