|
|
@@ -5,7 +5,7 @@
|
|
|
{{ label }}
|
|
|
</view>
|
|
|
<view class="input-box-right">
|
|
|
- <checkbox-group @change="checkboxChange">
|
|
|
+ <checkbox-group class="checkbox-data" @change="checkboxChange">
|
|
|
<label class="checkbox-item" v-for="(checkboxItem,index) in checkboxArr">
|
|
|
<checkbox :id="name+index" :value="checkboxItem.id" />
|
|
|
<text class="iconfont icon-ok" v-if="checkboxItem.isChecked"> </text>
|
|
|
@@ -15,7 +15,6 @@
|
|
|
</checkbox-group>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="box-solid"></view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -140,7 +139,8 @@ export default {
|
|
|
}
|
|
|
.box{
|
|
|
background-color: #ffffff;
|
|
|
- padding: 34rpx 0 12rpx 0;
|
|
|
+ border-bottom: 2rpx solid #F0F0F0;
|
|
|
+ padding: 34rpx 0 32rpx 0;
|
|
|
.input-box {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
@@ -153,20 +153,20 @@ export default {
|
|
|
.input-box-right{
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- .checkbox-item{
|
|
|
- padding-right: 20rpx;
|
|
|
- margin-bottom: 20rpx;
|
|
|
- checkbox{
|
|
|
- display: none;
|
|
|
+ .checkbox-data{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .checkbox-item{
|
|
|
+ margin: 6rpx 20rpx 0 6rpx;
|
|
|
+ checkbox{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|
|
|
- .box-solid{
|
|
|
- border-bottom: 1px solid #F0F0F0;
|
|
|
- margin-top:22rpx;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
</style>
|