This commit is contained in:
张成
2025-09-02 10:40:37 +08:00
parent b50d9dba1d
commit f033adba10
5 changed files with 20 additions and 483 deletions

View File

@@ -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()