|
|
|
|
@ -65,9 +65,7 @@
|
|
|
|
|
|
|
|
|
|
<view class="wrap" v-if="step > 1 && step <= (1 + batches.length)">
|
|
|
|
|
<view class="picked-data">
|
|
|
|
|
<view>{{ form.year }}年</view>
|
|
|
|
|
<view>{{ formArea }}</view>
|
|
|
|
|
<view>{{ currentBatch.name }}</view>
|
|
|
|
|
<view>{{ form.year }}年 {{ currentBatch.name || '-' }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="card" v-for="item in currentBatchSub" :key="item.id">
|
|
|
|
|
@ -791,22 +789,21 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.picked-data {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
filter: drop-shadow(-2.179rpx 3.355rpx 2.5rpx rgba(208,209,209,0.3));
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
|
margin: 20rpx 24rpx 0;
|
|
|
|
|
padding: 26rpx 160rpx;
|
|
|
|
|
padding: 26rpx;
|
|
|
|
|
|
|
|
|
|
& > view {
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
// white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
& > view + view {
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
|