You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="step3"> <view class="card"> <view class="list"> <view class="listItem" v-for="(item,index) in list" :key="index" :class="{active: index==1}"> <view class="num">{{index+1}}号车</view> <view class="text">{{ item.text }}</view> </view> </view> </view>
<view class="btn_row" style="margin-top: 108rpx;"> <view class="border btn" @click="changeStep(4)">返回上一步</view> <view class="btn" @click="show = true">确认预约</view> </view>
<u-popup :show="show" mode="center" :round="8"> <view class="popupCon"> <view class="h2">再次确认预约信息</view> <view class="content"> <view class="row"> <view class="lab">预约类型</view> <view class="val">xxx</view> </view> <view class="row"> <view class="lab">预约科目</view> <view class="val">xxx</view> </view> <view class="row"> <view class="lab">预约考场</view> <view class="val">2023/08/08 08:00—9:00</view> </view> <view class="row"> <view class="lab">预约车型</view> <view class="val">xxx</view> </view> <view class="row"> <view class="lab">预约车辆</view> <view class="val">xxx</view> </view> <view class="row"> <view class="lab">预约时间</view> <view class="val">2023/08/08 08:00—9:00</view> </view> </view> <view class="btn_row"> <view class="border btn" @click="show = false">返回修改</view> <view class="btn">确认</view> </view> </view> </u-popup> </view> </template>
<script> export default { data() { return { list: [{ text: '00001', id: 1 }, { text: '00002', id: 1 }, { text: '00003', id: 1 }, ], show: true } }, methods: { changeStep(val) { this.$emit('changeStep', val) } } } </script>
<style lang="scss" scoped> .card { padding: 28rpx 24rpx; }
.list { display: flex; flex-wrap: wrap; display: flex; justify-content: space-between;
.listItem { width: 32.4%; height: 120rpx; background: #F8F8F8; border-radius: 12rpx; font-weight: 500; text-align: center; font-size: 24rpx; display: flex; flex-direction: column; align-items: center; justify-content: center; .num { font-size: 28rpx; font-weight: 600; margin-bottom: 10rpx; } &.active { width: 200rpx; height: 120rpx; background: rgba(25, 137, 250, 0.1); border-radius: 12rpx; border: 2rpx solid $themC; color: $themC; } } }
.btn_row { display: flex; justify-content: space-between;
.btn { width: 47%; height: 72rpx; background: #1989FA; border-radius: 8rpx; font-size: 28rpx; color: #fff; text-align: center; line-height: 72rpx;
&.border { background: rgba(25, 137, 250, 0.1); border: 2rpx solid $themC; color: $themC; } } } .popupCon { padding: 30rpx 50rpx; .h2 { font-weight: 600; color: #333333; line-height: 70rpx; font-size: 36rpx; text-align: center; } .content { padding-bottom: 20rpx; .row { padding: 22rpx 0; display: flex; font-size: 28rpx; align-items: center; .lab { width: 180rpx; color: #686B73; } .val { flex: 1; font-weight: 500; } } } } </style>
|