| 123456789101112131415161718192021222324252627 |
- <script>
- import { isLoggedIn } from '@/utils/auth'
- import { startGpsTimer } from '@/utils/gps'
- export default {
- onLaunch: function() {
- console.log('App Launch')
- // 已登录用户直接跳转首页,无需再进登录页
- if (isLoggedIn()) {
- startGpsTimer()
- uni.switchTab({
- url: '/pages/home/index'
- })
- }
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- </style>
|