去掉定位
This commit is contained in:
parent
d1e5231da5
commit
0f7b3e8373
113
src/api/index.ts
113
src/api/index.ts
@ -1041,31 +1041,72 @@ export async function luzhi(roomid: string){
|
|||||||
|
|
||||||
export function getaddr() {
|
export function getaddr() {
|
||||||
return new Promise(async (r)=>{
|
return new Promise(async (r)=>{
|
||||||
console.log("开始定位")
|
// console.log("开始定位")
|
||||||
const lan = getValue("Lanvuage");
|
const lan = getValue("Lanvuage");
|
||||||
if ("geolocation" in navigator) {
|
// if ("geolocation" in navigator) {
|
||||||
/* 地理位置服务可用 */
|
// /* 地理位置服务可用 */
|
||||||
navigator.geolocation.getCurrentPosition(async (res) => {
|
// navigator.geolocation.getCurrentPosition(async (res) => {
|
||||||
console.log(res, 'res')
|
// console.log(res, 'res')
|
||||||
const qh = await get<any>('countryCode', {
|
// const qh = await get<any>('countryCode', {
|
||||||
longitude: res.coords.longitude,
|
// longitude: res.coords.longitude,
|
||||||
latitude: res.coords.latitude
|
// latitude: res.coords.latitude
|
||||||
});
|
// });
|
||||||
console.log(qh)
|
// console.log(qh)
|
||||||
if(lan != null && lan){
|
// if(lan != null && lan){
|
||||||
if(qh.data.ename == "China"){
|
// if(qh.data.ename == "China"){
|
||||||
r({hb: '人民币¥', qh});
|
// r({hb: '人民币¥', qh});
|
||||||
}else {
|
// }else {
|
||||||
r({hb: '美元$', qh})
|
// r({hb: '美元$', qh})
|
||||||
}
|
// }
|
||||||
}else{
|
// }else{
|
||||||
if(qh.data.ename == "China"){
|
// if(qh.data.ename == "China"){
|
||||||
r({yy: "zh", yyx: "中文", hb: '人民币¥', qh});
|
// r({yy: "zh", yyx: "中文", hb: '人民币¥', qh});
|
||||||
}else {
|
// }else {
|
||||||
r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
// r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
},async () => {
|
// },async () => {
|
||||||
|
// const qh = await get<any>('countryCode', {
|
||||||
|
|
||||||
|
// });
|
||||||
|
// console.log(qh)
|
||||||
|
// if(lan != null && lan){
|
||||||
|
// if(qh.data.ename == "China"){
|
||||||
|
// r({hb: '人民币¥', qh});
|
||||||
|
// }else {
|
||||||
|
// r({hb: '美元$', qh})
|
||||||
|
// }
|
||||||
|
// }else{
|
||||||
|
// if(qh.data.ename == "China"){
|
||||||
|
// r({yy: "zh", yyx: "中文", hb: '人民币¥', qh});
|
||||||
|
// }else {
|
||||||
|
// r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// // message.error(err.message)
|
||||||
|
// // console.log(err, 'err')
|
||||||
|
// })
|
||||||
|
// } else {
|
||||||
|
// const qh = await get<any>('countryCode', {
|
||||||
|
|
||||||
|
// });
|
||||||
|
// console.log(qh)
|
||||||
|
// if(lan != null && lan){
|
||||||
|
// if(qh.data.ename == "China"){
|
||||||
|
// r({hb: '人民币¥', qh});
|
||||||
|
// }else {
|
||||||
|
// r({hb: '美元$', qh})
|
||||||
|
// }
|
||||||
|
// }else{
|
||||||
|
// if(qh.data.ename == "China"){
|
||||||
|
// r({yy: "zh", yyx: "中文", hb: '人民币¥', qh});
|
||||||
|
// }else {
|
||||||
|
// r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// /* 地理位置服务不可用 */
|
||||||
|
// console.log("无法定位")
|
||||||
|
// }
|
||||||
const qh = await get<any>('countryCode', {
|
const qh = await get<any>('countryCode', {
|
||||||
|
|
||||||
});
|
});
|
||||||
@ -1083,30 +1124,6 @@ export function getaddr() {
|
|||||||
r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// message.error(err.message)
|
|
||||||
// console.log(err, 'err')
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
const qh = await get<any>('countryCode', {
|
|
||||||
|
|
||||||
});
|
|
||||||
console.log(qh)
|
|
||||||
if(lan != null && lan){
|
|
||||||
if(qh.data.ename == "China"){
|
|
||||||
r({hb: '人民币¥', qh});
|
|
||||||
}else {
|
|
||||||
r({hb: '美元$', qh})
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
if(qh.data.ename == "China"){
|
|
||||||
r({yy: "zh", yyx: "中文", hb: '人民币¥', qh});
|
|
||||||
}else {
|
|
||||||
r({yy: 'en', yyx: 'English', hb: '美元$', qh})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* 地理位置服务不可用 */
|
|
||||||
console.log("无法定位")
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// const res = await get<any>('ip');
|
// const res = await get<any>('ip');
|
||||||
|
Loading…
Reference in New Issue
Block a user