Commit b9aa9eeb authored by linxin's avatar linxin

Merge branch 'liuxin' into develop

parents 3cd68fab 757a48d0
Pipeline #4605 canceled with stages
...@@ -61,14 +61,17 @@ export default { ...@@ -61,14 +61,17 @@ export default {
}, },
beforeRouteEnter (to, from, next) { beforeRouteEnter (to, from, next) {
next(vm => { next(vm => {
vm.getAccessToken() if (from.name !== 'PrivacyPolicy') {
setTimeout(() => { vm.getAccessToken()
vm.downNum = true }
}, 1000) if (!window.localStorage.getItem('isReadPolicy')) {
setTimeout(() => {
vm.downNum = true
}, 1000)
}
}) })
}, },
created () { created () {
}, },
mounted () { mounted () {
window.addEventListener('native.keyboardhide', function () { window.addEventListener('native.keyboardhide', function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment