111
This commit is contained in:
parent
0b6492cb2b
commit
f881aec356
|
@ -150,6 +150,22 @@
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'wgs84',
|
||||||
|
success: function(res) {
|
||||||
|
uni.request({
|
||||||
|
url: `https://tianjin.tianjinhualong.cn/index.php?s=index/getLocaltion&latitude=` +
|
||||||
|
res.latitude + `&longitude=` + res.longitude,
|
||||||
|
data: {
|
||||||
|
text: '111111'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'custom-header': 'hello' //自定义请求头信息
|
||||||
|
},
|
||||||
|
success: (res) => {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
let [loginErr, loginData] = await uni.login({
|
let [loginErr, loginData] = await uni.login({
|
||||||
provider
|
provider
|
||||||
});
|
});
|
||||||
|
@ -159,6 +175,22 @@
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'wgs84',
|
||||||
|
success: function(res) {
|
||||||
|
uni.request({
|
||||||
|
url: `https://tianjin.tianjinhualong.cn/index.php?s=index/getLocaltion&latitude=` +
|
||||||
|
res.latitude + `&longitude=` + res.longitude,
|
||||||
|
data: {
|
||||||
|
text: '2222222'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'custom-header': 'hello' //自定义请求头信息
|
||||||
|
},
|
||||||
|
success: (res) => {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
let [infoErr, infoData] = await uni.getUserInfo({
|
let [infoErr, infoData] = await uni.getUserInfo({
|
||||||
provider
|
provider
|
||||||
})
|
})
|
||||||
|
@ -168,7 +200,22 @@
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'wgs84',
|
||||||
|
success: function(res) {
|
||||||
|
uni.request({
|
||||||
|
url: `https://tianjin.tianjinhualong.cn/index.php?s=index/getLocaltion&latitude=` +
|
||||||
|
res.latitude + `&longitude=` + res.longitude,
|
||||||
|
data: {
|
||||||
|
text: '333333'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'custom-header': 'hello' //自定义请求头信息
|
||||||
|
},
|
||||||
|
success: (res) => {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
let {
|
let {
|
||||||
userInfo = {}
|
userInfo = {}
|
||||||
} = infoData
|
} = infoData
|
||||||
|
@ -176,6 +223,22 @@
|
||||||
openId = ''
|
openId = ''
|
||||||
} = userInfo
|
} = userInfo
|
||||||
if (!openId) return
|
if (!openId) return
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'wgs84',
|
||||||
|
success: function(res) {
|
||||||
|
uni.request({
|
||||||
|
url: `https://tianjin.tianjinhualong.cn/index.php?s=index/getLocaltion&latitude=` +
|
||||||
|
res.latitude + `&longitude=` + res.longitude,
|
||||||
|
data: {
|
||||||
|
text: '44444'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'custom-header': 'hello' //自定义请求头信息
|
||||||
|
},
|
||||||
|
success: (res) => {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
this.$util.showLoading({
|
this.$util.showLoading({
|
||||||
title: "登录中..."
|
title: "登录中..."
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue