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.
39 lines
636 B
39 lines
636 B
3 years ago
|
<!--
|
||
|
* @Author: ch
|
||
|
* @Date: 2022-03-23 10:29:07
|
||
|
* @LastEditors: ch
|
||
|
* @LastEditTime: 2022-03-23 10:29:10
|
||
|
* @Description: file content
|
||
|
-->
|
||
|
<template>
|
||
|
<view class="pick">
|
||
|
<view class="pick-max">
|
||
|
|
||
|
</view>
|
||
|
<view class="pick-min"></view>
|
||
|
<view class="pick-min"></view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
.pick{
|
||
|
margin: 0 30rpx;
|
||
|
height: 450rpx;
|
||
|
display: flex;
|
||
|
flex-flow: column wrap;
|
||
|
justify-content: space-between;
|
||
|
&-max{
|
||
|
width: 335rpx;
|
||
|
height: 450rpx;
|
||
|
background: #fff;
|
||
|
border-radius: 8rpx;
|
||
|
}
|
||
|
&-min{
|
||
|
width: 335rpx;
|
||
|
height: 215rpx;
|
||
|
background: #fff;
|
||
|
border-radius: 8rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|