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(2)">返回上一步</view> <view class="btn" @click="changeStep(4)">下一步</view> </view>
</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; } } } </style>
|