|
@@ -49,7 +49,7 @@
|
|
|
</u-navbar>
|
|
|
<view class="content" >
|
|
|
<view v-if="show" class="preference" :style="show ? 'z-index:1024;top:'+navBarHeight+'px;' : 'z-index:0'" style="width: 100%;">
|
|
|
- <view style="flex: 1;">
|
|
|
+ <view class="content-s">
|
|
|
<view class="preference_group">
|
|
|
<view class="preference_group_item"><label class="preference_label">距离我</label></view>
|
|
|
<view>
|
|
@@ -134,13 +134,15 @@
|
|
|
<view class="preference_group">
|
|
|
<view style="margin-left: 30rpx;"><u-checkbox shape="circle" v-model="preference.save_preference" @change="radioChange">保存偏好设置</u-checkbox></view>
|
|
|
</view>
|
|
|
-
|
|
|
+
|
|
|
</view>
|
|
|
<view class="pre-btn" style="display: flex;flex-direction: row;">
|
|
|
<view class="btn-1" @click="reset" style="width: 30%;">重置</view>
|
|
|
<view class="btn-2" @click="close" style="width: 70%;background-color: #00B962;color: #fff;">确定</view>
|
|
|
</view>
|
|
|
+
|
|
|
</view>
|
|
|
+ <u-mask :show="show" @click="show = false"></u-mask>
|
|
|
<view v-show="!viewMode" >
|
|
|
|
|
|
<view v-for="(item,index) in stationslist" :key="item.id" class="charing-slow" @click="stationDetail(item)">
|
|
@@ -979,6 +981,16 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
+ .u-mask {
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ top: 576px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content-s{
|
|
|
+ height: 440px;
|
|
|
+ overflow-y:scroll;
|
|
|
+ }
|
|
|
.cj-slider {
|
|
|
width: 90%;
|
|
|
margin: auto;
|
|
@@ -997,9 +1009,7 @@ export default {
|
|
|
.preference {
|
|
|
background-color: #ffffff;
|
|
|
left: 0rpx;
|
|
|
- position: absolute;
|
|
|
- height: 521px;
|
|
|
- overflow-y: scroll;
|
|
|
+ position: absolute
|
|
|
|
|
|
}
|
|
|
.preference_item {
|
|
@@ -1028,7 +1038,7 @@ export default {
|
|
|
.pre-btn{
|
|
|
width: 100%;
|
|
|
height: 48px;
|
|
|
-
|
|
|
+ z-index: 999;
|
|
|
}
|
|
|
|
|
|
.btn-1,.btn-2{
|