1
This commit is contained in:
16
src/app.ts
16
src/app.ts
@@ -1,8 +1,11 @@
|
||||
import { Component, ReactNode } from 'react'
|
||||
import Taro from '@tarojs/taro';
|
||||
import './nutui-theme.scss'
|
||||
import './app.scss'
|
||||
import { useDictionaryStore } from './store/dictionaryStore'
|
||||
import { useGlobalStore } from './store/global'
|
||||
import { check_login_status } from './services/loginService';
|
||||
|
||||
|
||||
// import { getNavbarHeight } from "@/utils/getNavbarHeight";
|
||||
|
||||
@@ -11,6 +14,19 @@ interface AppProps {
|
||||
}
|
||||
|
||||
class App extends Component<AppProps> {
|
||||
|
||||
|
||||
onLaunch() {
|
||||
console.log('小程序启动,初始化逻辑写这里')
|
||||
// 已经登录过就跳转到 列表页
|
||||
let is_login = check_login_status()
|
||||
if (is_login) {
|
||||
Taro.redirectTo({
|
||||
url: '/pages/list/index'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
// 初始化字典数据
|
||||
this.initDictionaryData()
|
||||
|
||||
Reference in New Issue
Block a user