|
|
@@ -1,4 +1,6 @@
|
|
|
<script setup lang="ts">
|
|
|
+import router from '@/router'
|
|
|
+
|
|
|
definePage({
|
|
|
name: 'attractions-reservation-info',
|
|
|
islogin: true,
|
|
|
@@ -34,13 +36,17 @@ function handleConfirm({ value: selectedValue }: { value: string }) {
|
|
|
选择数量
|
|
|
</view>
|
|
|
<view class="flex items-center gap-24rpx">
|
|
|
- <view class="h-36rpx w-36rpx rounded-50% bg-#F0F0F0 text-center text-28rpx text-#AAAAAA font-600 line-height-[36rpx]">
|
|
|
+ <view
|
|
|
+ class="h-36rpx w-36rpx rounded-50% bg-#F0F0F0 text-center text-28rpx text-#AAAAAA font-600 line-height-[36rpx]"
|
|
|
+ >
|
|
|
-
|
|
|
</view>
|
|
|
<view class="text-24rpx font-400">
|
|
|
10
|
|
|
</view>
|
|
|
- <view class="h-36rpx w-36rpx rounded-50% bg-#E8FFA7 text-center text-28rpx text-#9ED605 font-600 line-height-[36rpx]">
|
|
|
+ <view
|
|
|
+ class="h-36rpx w-36rpx rounded-50% bg-#E8FFA7 text-center text-28rpx text-#9ED605 font-600 line-height-[36rpx]"
|
|
|
+ >
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -109,7 +115,9 @@ function handleConfirm({ value: selectedValue }: { value: string }) {
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="fixed bottom-0 left-0 z-100 box-border h-174rpx w-full flex items-center justify-between bg-#FFF px-24rpx">
|
|
|
+ <view
|
|
|
+ class="fixed bottom-0 left-0 z-100 box-border h-174rpx w-full flex items-center justify-between bg-#FFF px-24rpx"
|
|
|
+ >
|
|
|
<view class="flex items-center">
|
|
|
<view class="text-24rpx">
|
|
|
合计
|
|
|
@@ -128,13 +136,38 @@ function handleConfirm({ value: selectedValue }: { value: string }) {
|
|
|
</text>
|
|
|
<wd-icon name="arrow-up" size="18px" />
|
|
|
</view>
|
|
|
- <view class="h-80rpx w-180rpx rounded-40rpx bg-#9ED605 text-center text-28rpx text-#FFF font-bold line-height-[80rpx]">
|
|
|
+ <view
|
|
|
+ class="h-80rpx w-180rpx rounded-40rpx bg-#9ED605 text-center text-28rpx text-#FFF font-bold line-height-[80rpx]"
|
|
|
+ @click="router.push({ name: 'attractions-order-pay' })"
|
|
|
+ >
|
|
|
提交
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <Zpopup v-model="orderPopup" :zindex="9999">
|
|
|
- <view>明细</view>
|
|
|
+ <Zpopup v-model="orderPopup" :zindex="99" bg="#fff">
|
|
|
+ <view class="p-24rpx">
|
|
|
+ <view class="text-center text-28rpx font-bold">
|
|
|
+ 订单明细
|
|
|
+ </view>
|
|
|
+ <view class="mt-24rpx h-2rpx w-full bg-#F0F0F0" />
|
|
|
+ <view class="mt24rpx text-28rpx">
|
|
|
+ <view class="flex items-center gap-56rpx">
|
|
|
+ <view>黄果树瀑布风景区成人票 16:00-19:00</view>
|
|
|
+ <view>
|
|
|
+ <text class="text-#FF4A39 font-bold">
|
|
|
+ ¥290
|
|
|
+ </text>
|
|
|
+ <text>×1</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="mt-20rpx">
|
|
|
+ 入园周末节假日
|
|
|
+ </view>
|
|
|
+ <view class="mt-20rpx">
|
|
|
+ 2026年3月22日(周日)
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</Zpopup>
|
|
|
</view>
|
|
|
</template>
|