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

1 week ago
<script>
import config from './config'
import store from '@/store'
import {
getToken
} from '@/utils/auth'
import {
getVersions
} from '@/utils/handlerColor.js'
1 week ago
export default {
onLaunch: function() {
1 week ago
this.initApp()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
//#ifdef H5
this.checkLogin()
//#endif
},
async initConfig() {
1 week ago
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 (window.plus) window.plus.runtime.openURL(urlAndorid)
// 更新版本
else window.open(urlAndorid)
}
}
})
}
console.log(systemData.appVersion, '当前版本', version, "最新版本")
1 week ago
},
checkLogin() {
if (!getToken()) {
this.$tab.reLaunch('/pages/login')
}
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
@import '@/static/scss/index.scss'
</style>