|
@@ -147,7 +147,10 @@
|
|
|
<view
|
|
|
class="custom-class-box"
|
|
|
v-else-if="item.type == 'customClass'"
|
|
|
- :style="{ marginTop: tovw(item.marginTop || 0) }"
|
|
|
+ :style="{
|
|
|
+ marginTop: tovw(item.marginTop || 0),
|
|
|
+ paddingBottom: item.showBorBot ? 0 : '10px',
|
|
|
+ }"
|
|
|
>
|
|
|
<view class="head">
|
|
|
<view class="label">
|
|
@@ -180,6 +183,7 @@
|
|
|
{{ option.remarks }}
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="borBot" v-if="item.showBorBot" style="height: 10px" />
|
|
|
</view>
|
|
|
<!-- 选择所在地区 -->
|
|
|
<picker
|
|
@@ -392,7 +396,7 @@
|
|
|
<text class="must" v-if="item.isMust">*</text>
|
|
|
{{ item.label }}:
|
|
|
</view>
|
|
|
- <view class="content-box">
|
|
|
+ <view class="content-box2">
|
|
|
<view class="value" v-if="item.showValue.length">
|
|
|
{{ item.showValue.join(",") }}
|
|
|
</view>
|
|
@@ -1139,6 +1143,20 @@ export default {
|
|
|
color: #bbbbbb;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .content-box2 {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ line-height: 20px;
|
|
|
+
|
|
|
+ .placeholder {
|
|
|
+ font-family: Source Han Sans SC, Source Han Sans SC;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #bbbbbb;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|