包间详情改为包间名称

This commit is contained in:
wangxiaowei
2026-01-08 15:08:36 +08:00
parent 2b58bac9ac
commit e68b23d5d1

View File

@ -73,7 +73,7 @@
</view>
<view class="bg-white rounded-16rpx py-26rpx px-30rpx mt-24rpx mx-30rpx">
<view class="font-bold text-36rpx text-[#303133] leading-50rpx">{{ isGroupBuying ? teaRoomPackage.title : teaRoom.name }}</view>
<view class="font-bold text-36rpx text-[#303133] leading-50rpx">{{ isGroupBuying ? teaRoomPackage.title : teaRoom.room.title }}</view>
<view class="mt-14rpx flex" v-if="!isGroupBuying">
<template v-for="(label, labelIndex) in teaRoom.label" :key="labelIndex">
<view class="mr-20rpx flex items-start">
@ -352,6 +352,9 @@
const teaRoom = ref<any>({
order: {
hours: 0
},
room: {
title: ''
}
})
const teaRoomPrice = ref<number>(0)