|
|
@@ -73,15 +73,17 @@
|
|
|
city: "",
|
|
|
latitude: "",
|
|
|
longitude: "",
|
|
|
+ type:''
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
|
navBar,
|
|
|
},
|
|
|
- onLoad() {
|
|
|
+ onLoad(options) {
|
|
|
this.getLatOrLng(); //获取经纬度
|
|
|
this.getRmCityList(); //热门城市
|
|
|
this.getCitysList();
|
|
|
+ this.type=options&&options.type
|
|
|
},
|
|
|
methods: {
|
|
|
/**
|
|
|
@@ -174,7 +176,14 @@
|
|
|
uni.$emit("city", {
|
|
|
city: city,
|
|
|
});
|
|
|
- uni.navigateBack();
|
|
|
+ let data = {
|
|
|
+ city: city=='全国'||city=='全部'?'':city,
|
|
|
+ county: ''
|
|
|
+ }
|
|
|
+ uni.$emit('filterCity', data)
|
|
|
+ uni.navigateBack({
|
|
|
+ delta: this.type=='search'?2:1,
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
bindToView(event) {
|