|
@@ -70,8 +70,17 @@
|
|
|
this.orderData = opt.orderData;
|
|
|
this.currentMileage = opt.currentMileage;
|
|
|
var selectCity = uni.getStorageSync("selectCity");
|
|
|
+ var dingw = uni.getStorageSync("locationCity")
|
|
|
if(selectCity){
|
|
|
- this.location=selectCity
|
|
|
+ var objdata={
|
|
|
+ cityCode:selectCity.code,
|
|
|
+ cityName:selectCity.city,
|
|
|
+ }
|
|
|
+ if(dingw.cityName==selectCity.city){
|
|
|
+ objdata.lat=dingw.lat
|
|
|
+ objdata.lng=dingw.lng
|
|
|
+ }
|
|
|
+ this.location=objdata
|
|
|
}else{
|
|
|
this.location = uni.getStorageSync("locationCity");
|
|
|
}
|