1 Star 0 Fork 0

小七全栈/efan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
yf 提交于 2024-07-11 11:03 . init
<script>
export default {
onLaunch: function() {
console.log('App Launch')
uni.clearStorageSync()
const a = uni.getAppAuthorizeSetting()
console.log(a)
uni.getSetting({
success: function (res) {
if (res.authSetting['scope.userLocation']) {
// 已经授权,可以直接调用相关 API
console.log('用户已经授权位置信息');
wx.getLocation({
type: 'gcj02',
success (res) {
console.log(res)
}
})
} else {
console.log('2')
// 未授权,发起授权请求
uni.authorize({
scope: 'scope.userLocation',
success: function () {
// 用户同意授权
console.log('用户同意授权位置信息');
},
fail: function (err) {
// 用户拒绝授权
console.log(err);
}
});
}
},
fail: function (err) {
console.error('获取权限设置失败', err);
}
});
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
@import "colorui/main.css";
@import "colorui/icon.css";
/*每个页面公共css */
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kaikai107/efan.git
git@gitee.com:kaikai107/efan.git
kaikai107
efan
efan
master

搜索帮助