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.
|
|
|
|
<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 (window.plus) window.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>
|