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="step1"> <view class="card"> <view class="list"> <view class="listItem" v-for="(item,index) in list" :key="index" :class="{active: index==1}"> {{ item.text }}</view> </view> </view> <view class="btn_row" style="margin-top: 108rpx;"> <view class="border btn" @click="changeStep(1)">返回上一步</view> <view class="btn" @click="changeStep(3)">下一步</view> </view> </view> </template>
<script> export default { data() { return { list: [{ text: '科目二', id: 2 }, { text: '科目三', id: 3 }, ], } }, methods: { changeStep(val) { this.$emit('changeStep', val) } } } </script>
<style lang="scss" scoped> .list { display: flex; flex-wrap: wrap; display: flex; padding: 24rpx; .listItem { width: 32.4%; height: 120rpx; background: #F8F8F8; border-radius: 12rpx; font-weight: 500; text-align: center; line-height: 120rpx; margin-right: 20rpx; &.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>
|