修复设置服务信息页面的picker点击范围过小的问题
This commit is contained in:
parent
a13c1110b0
commit
7bc02b24df
|
@ -22,9 +22,9 @@
|
|||
class="select-widget"
|
||||
:class="{ active: areaText.length > 0 }"
|
||||
>
|
||||
<text class="limit-line clamp-1">
|
||||
<view class="picker-view limit-line clamp-1">
|
||||
{{ areaText ? areaText : "请选择服务区域" }}
|
||||
</text>
|
||||
</view>
|
||||
</picker>
|
||||
<text class="iconfont icon-jinru"></text>
|
||||
</view>
|
||||
|
@ -38,9 +38,9 @@
|
|||
class="select-widget"
|
||||
:class="{ active: cateText.length > 0 }"
|
||||
>
|
||||
<text class="limit-line clamp-1">
|
||||
<view class="picker-view limit-line clamp-1">
|
||||
{{ cateText ? cateText : "请选择服务分类" }}
|
||||
</text>
|
||||
</view>
|
||||
</picker>
|
||||
<text class="iconfont icon-jinru"></text>
|
||||
</view>
|
||||
|
@ -54,9 +54,9 @@
|
|||
class="select-widget"
|
||||
:class="{ active: carTypeText.length > 0 }"
|
||||
>
|
||||
<text class="limit-line clamp-1">
|
||||
<view class="picker-view limit-line clamp-1">
|
||||
{{ carTypeText ? carTypeText : "请选择车辆类型" }}
|
||||
</text>
|
||||
</view>
|
||||
</picker>
|
||||
<text class="iconfont icon-jinru"></text>
|
||||
</view>
|
||||
|
@ -70,9 +70,9 @@
|
|||
class="select-widget"
|
||||
:class="{ active: serviceTypeText.length > 0 }"
|
||||
>
|
||||
<text class="limit-line clamp-1">
|
||||
<view class="picker-view limit-line clamp-1">
|
||||
{{ serviceTypeText ? serviceTypeText : "请选择服务类型" }}
|
||||
</text>
|
||||
</view>
|
||||
</picker>
|
||||
<text class="iconfont icon-jinru"></text>
|
||||
</view>
|
||||
|
@ -179,7 +179,7 @@ export default {
|
|||
carTypeText: "",
|
||||
serviceTypeId: 0,
|
||||
serviceTypeText: "",
|
||||
idcardA: "",
|
||||
idcardA: "1",
|
||||
idcardB: "",
|
||||
license: "",
|
||||
content: "",
|
||||
|
@ -232,7 +232,7 @@ export default {
|
|||
width: 100%;
|
||||
margin-top: 14rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 0 16rpx;
|
||||
padding: 0 20rpx;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.input-item {
|
||||
|
@ -254,14 +254,15 @@ export default {
|
|||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
padding-left: 190rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28rpx;
|
||||
color: #c9c9c9;
|
||||
.picker-view {
|
||||
width: 670rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 44rpx 0 44rpx 190rpx;
|
||||
}
|
||||
}
|
||||
.select-widget.active {
|
||||
color: #666666;
|
||||
|
|
Loading…
Reference in New Issue