|
@@ -41,10 +41,10 @@
|
|
|
<u-popup v-model="propertySelectShow" mode="center" width="90%" height="100%">
|
|
|
<view class="bwin-popup scoped-estate-popup">
|
|
|
<view class="scoped-popup-header-input">
|
|
|
- <u-input class="input" v-model="curEstateName" placeholder="请输入关键字搜索楼盘"></u-input>
|
|
|
+ <u-input class="input" v-model="curEstateName" placeholder="没找到楼盘??点这输入关键字搜索"></u-input>
|
|
|
<view class="b" @click="getEstateList">搜索</view>
|
|
|
</view>
|
|
|
- <view class="popup-body">
|
|
|
+ <scroll-view :scroll-y="true" class="popup-body">
|
|
|
<view class="scoped-estate-list">
|
|
|
<view v-for="(item, index) in estateList" :class="form.estate_id == item.id ? 'sel-item cur' : 'sel-item'" @click="listItemHandle(item)" :key="index">
|
|
|
<view class="sel-left">
|
|
@@ -69,7 +69,7 @@
|
|
|
<u-button size="medium" @click="propertySelectShow = false">关闭</u-button>
|
|
|
<u-button size="medium" type="primary" @click="propertySelectShow = false">确定</u-button>
|
|
|
</view>
|
|
|
- </view>
|
|
|
+ </scroll-view>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
|
|
@@ -392,6 +392,8 @@ export default {
|
|
|
height: 100%;
|
|
|
padding-bottom: 100rpx;
|
|
|
.popup-body {
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-bottom: 1PX solid #dcdcdc;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -399,10 +401,14 @@ export default {
|
|
|
position: fixed;
|
|
|
width: 90%;
|
|
|
display: flex;
|
|
|
+ border-bottom: 1PX solid #dcdcdc;
|
|
|
.input {
|
|
|
flex: 1;
|
|
|
padding-left: 20rpx;
|
|
|
height: 80rpx;
|
|
|
+ .u-input__input {
|
|
|
+ height: 80rpx;
|
|
|
+ }
|
|
|
}
|
|
|
.b {
|
|
|
width: 200rpx;
|