|
@@ -5,7 +5,7 @@
|
|
|
<view class="nav-left" @click="goBack">
|
|
<view class="nav-left" @click="goBack">
|
|
|
<u-icon name="close" color="#333" size="32"></u-icon>
|
|
<u-icon name="close" color="#333" size="32"></u-icon>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="nav-title">{{city||'北京'}}</view>
|
|
|
|
|
|
|
+ <view class="nav-title">{{city}}</view>
|
|
|
<view @click="goTo" class="nav-right">
|
|
<view @click="goTo" class="nav-right">
|
|
|
<image src="../../static/images/filter.svg" mode="widthFix"></image> 筛选城市
|
|
<image src="../../static/images/filter.svg" mode="widthFix"></image> 筛选城市
|
|
|
</view>
|
|
</view>
|
|
@@ -35,7 +35,7 @@
|
|
|
// 获取状态栏高度
|
|
// 获取状态栏高度
|
|
|
let systemInfo = uni.getSystemInfoSync();
|
|
let systemInfo = uni.getSystemInfoSync();
|
|
|
this.statusBarHeight = systemInfo.statusBarHeight || 0;
|
|
this.statusBarHeight = systemInfo.statusBarHeight || 0;
|
|
|
- this.city = options&&options.city||''
|
|
|
|
|
|
|
+ this.city = options&&options.city||'深圳市'
|
|
|
this.county = options&&options.county||''
|
|
this.county = options&&options.county||''
|
|
|
this.street = options&&options.street||''
|
|
this.street = options&&options.street||''
|
|
|
},
|
|
},
|