2 Star 1 Fork 0

道法合一(qq:1126919503)/寄售商城-小豚优选

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.91 KB
一键复制 编辑 原始数据 按行查看 历史
道法合一(qq:1126919503) 提交于 2022-07-30 20:26 . ttii
<script>
import {
mapState,
mapMutations
} from 'vuex';
import QQMapWX from '@/common/qqmap-wx-jssdk.js';
import APPUpdate from "@/untils/js_sdk/appUpdate.js";
export default {
onLaunch: function() {
// #ifdef APP-PLUS
APPUpdate()
// #endif
// #ifdef MP-WEIXIN
// this.getLoation()
// this.checkUpdateVersion()
// #endif
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods: {
...mapMutations(['SET_LOCATION']),
getLoation() {
uni.authorize({
scope: "scope.userLocation",
success: (res) => {
let qqmapsdk = new QQMapWX({
// 填写自己的Key值,这个值是与AppID绑定的
key: '2V5BZ-5KE6F-RABJE-JZVOH-BOZAO-3BB6X'
});
uni.getLocation({
type: 'gcj02',
success: (res1) => {
qqmapsdk.reverseGeocoder({
location: {
latitude: res1.latitude,
longitude: res1.longitude
},
success: (res2) => {
var city = res2.result.ad_info.city;
this.SET_LOCATION(city)
},
fail: (err) => {
this.hasLocation = false
uni.showToast({
icon: 'none',
title: '获取用户定位失败,请手动选择当前城市'
})
}
})
}
})
},
fail: (err) => {
uni.showModal({
content: '检测到您还没有打开位置授权,是否去设置打开?',
confirmText: "确认",
cancelText: "取消",
success: function(res) {
if (res.confirm) {
uni.openSetting({
success: (res) => {
}
})
} else {
console.log('用户点击取消')
}
}
})
}
})
},
// 版本审计
checkUpdateVersion() {
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function(res2) {
uni.showModal({
title: '更新提示',
content: '发现新版本,是否重启应用?',
success(res2) {
if (res2.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
}
});
updateManager.onUpdateFailed(function(res) {
// 新的版本下载失败
uni.showModal({
title: '提示',
content: '检查到有新版本,但下载失败,请检查网络设置',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
},
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.cell-hover-class {
background-color: rgb(235, 237, 238);
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freesytle/small-porpoise-optimization.git
[email protected]:freesytle/small-porpoise-optimization.git
freesytle
small-porpoise-optimization
寄售商城-小豚优选
master

搜索帮助