医学道
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.
video/src/app.tsx

76 lines
1.5 KiB

1 year ago
import Taro, {useDidShow, useDidHide} from '@tarojs/taro'
import './app.scss'
import {CustomWrapper} from "@tarojs/components";
import unique_ident from "@/hooks/unique_ident";
1 year ago
function updateApp() {
if (Taro.canIUse('getUpdateManager')) {
const updateManager = Taro.getUpdateManager()
updateManager.onCheckForUpdate((res) => {
console.log('新版本', res.hasUpdate)
})
updateManager.onUpdateReady(() => {
Taro.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(() => {
// 新版本下载失败
Taro.showToast({title: '新版本下载失败'})
})
}
}
function App(props) {
// 可以使用所有的 React Hooks
1 year ago
Taro.useLaunch(() => {
1 year ago
updateApp()
const token = JSON.parse(Taro.getStorageSync('profile') || '{}')?.token
if (!token) {
1 year ago
Taro.reLaunch({url: '/pages/login/login'})
1 year ago
}
unique_ident.put()
unique_ident.del()
1 year ago
})
1 year ago
Taro.getSystemInfo({
success(res) {
Taro.getApp().globalData = {
statusBarHeight: res.statusBarHeight,
screenWidth: res.screenWidth,
screenHeight: res.screenHeight,
safeArea: res.safeArea,
}
}
})
// 对应 onShow
useDidShow(() => {
})
// 对应 onHide
useDidHide(() => {
})
return (
<CustomWrapper>
{props.children}
</CustomWrapper>
)
}
export default App