修改添加报修定位获取信息
parent
92d74dbe81
commit
44b021d84a
|
@ -17,7 +17,9 @@
|
||||||
"delay" : 0
|
"delay" : 0
|
||||||
},
|
},
|
||||||
/* 模块配置 */
|
/* 模块配置 */
|
||||||
"modules" : {},
|
"modules" : {
|
||||||
|
"Maps" : {}
|
||||||
|
},
|
||||||
/* 应用发布信息 */
|
/* 应用发布信息 */
|
||||||
"distribute" : {
|
"distribute" : {
|
||||||
/* android打包配置 */
|
/* android打包配置 */
|
||||||
|
@ -43,7 +45,15 @@
|
||||||
/* ios打包配置 */
|
/* ios打包配置 */
|
||||||
"ios" : {},
|
"ios" : {},
|
||||||
/* SDK配置 */
|
/* SDK配置 */
|
||||||
"sdkConfigs" : {}
|
"sdkConfigs" : {
|
||||||
|
"ad" : {},
|
||||||
|
"maps" : {
|
||||||
|
"amap" : {
|
||||||
|
"appkey_ios" : "",
|
||||||
|
"appkey_android" : ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/* 快应用特有相关 */
|
/* 快应用特有相关 */
|
||||||
|
@ -69,28 +79,28 @@
|
||||||
"enable" : false
|
"enable" : false
|
||||||
},
|
},
|
||||||
"vueVersion" : "2",
|
"vueVersion" : "2",
|
||||||
"h5" : {
|
"h5" : {
|
||||||
"sdkConfigs" : {
|
"sdkConfigs" : {
|
||||||
"maps" : {
|
"maps" : {
|
||||||
"qqmap" : {
|
"qqmap" : {
|
||||||
"key" : "QNHBZ-55RKF-OMFJJ-NPU7O-EPSDH-ACBAA"
|
"key" : "QNHBZ-55RKF-OMFJJ-NPU7O-EPSDH-ACBAA"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"devServer" : {
|
"devServer" : {
|
||||||
"https" : false,
|
"https" : false,
|
||||||
"port" : 8080,
|
"port" : 8080,
|
||||||
"disableHostCheck" : true,
|
"disableHostCheck" : true,
|
||||||
"proxy" : {
|
"proxy" : {
|
||||||
"/web" : {
|
"/web" : {
|
||||||
"target" : "https://7and5.cn",
|
"target" : "https://7and5.cn",
|
||||||
"changeOrigin" : true,
|
"changeOrigin" : true,
|
||||||
"secure" : false,
|
"secure" : false,
|
||||||
"pathRewrite" : {
|
"pathRewrite" : {
|
||||||
"^/web" : ""
|
"^/web" : ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -271,22 +271,23 @@
|
||||||
mapFun() {
|
mapFun() {
|
||||||
let that = this
|
let that = this
|
||||||
uni.chooseLocation({
|
uni.chooseLocation({
|
||||||
success: (res) => {
|
success:(result)=> {
|
||||||
|
that.data.service_address = result.address
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
// uni.chooseLocation({
|
|
||||||
// success:(res)=> {
|
|
||||||
// console.log(res,275);
|
|
||||||
// that.data.service_address = res.address
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// uni.getLocation({
|
// uni.getLocation({
|
||||||
// type: 'wgs84', //返回可以用于uni.openLocation的经纬度gcj02
|
// type: 'wgs84', //返回可以用于uni.openLocation的经纬度gcj02
|
||||||
// success: function(res) {
|
// success: function(res) {
|
||||||
// console.log(res);
|
// console.log(res);
|
||||||
// let latitude = res.latitude;
|
// let latitude = res.latitude;
|
||||||
// let longitude = res.longitude;
|
// let longitude = res.longitude;
|
||||||
|
// uni.chooseLocation({
|
||||||
|
// latitude:res.latitude,
|
||||||
|
// longitude:res.longitude,
|
||||||
|
// success:(result)=> {
|
||||||
|
// that.data.service_address = result.address
|
||||||
|
// }
|
||||||
|
// });
|
||||||
// }
|
// }
|
||||||
// });
|
// });
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue