You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<script>
import config from './config'
import store from '@/store'
import {
getToken
} from '@/utils/auth'
import {
getVersions
} from '@/utils/handlerColor.js'
export default {
onLaunch: function() {
this.initApp()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
//#ifdef H5
this.checkLogin()
//#endif
},
async initConfig() {
this.globalData.config = config
//版本验证
const version = await getVersions()
const systemData = this.$u.sys()
if (systemData.appVersion != version) {
uni.showModal({
title: '发现新版本',
content: '版本V ' + version,
cancelText: '暂不更新',
confirmText: '立即更新',
success: (res) => {
if (res.confirm) {
const urlAndorid = 'https://www.pgyer.com/9B4d'
if (plus) plus.runtime.openURL(urlAndorid)
// 更新版本
else window.open(urlAndorid)
}
}
})
}
console.log(systemData.appVersion, '当前版本', version, "最新版本")
},
checkLogin() {
if (!getToken()) {
this.$tab.reLaunch('/pages/login')
}
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
@import '@/static/scss/index.scss'
</style>