// import { Component, PropsWithChildren } from 'react' // class App extends Component { // componentDidMount () {} // componentDidShow () {} // componentDidHide () {} // render () { // // this.props.children 是将要会渲染的页面 // return this.props.children // } // } // export default App import { PropsWithChildren } from "react"; import { useRequest } from "ahooks"; import { Provider as ReduxProvider } from "react-redux"; import Taro, { useDidShow } from "@tarojs/taro"; import { WebView } from "@tarojs/components"; import StorageUtil, { EStorage } from "@/utils/storageUtil"; import AppContext from "./context/appContext"; import ReduxUtil from "./utils/reduxUtil"; import RouteUtil from "./utils/routeUtil"; import UserHelper from "./helper/userHelper"; import "./app.scss"; interface IAppProps {} const App = (props: PropsWithChildren) => { const result = useRequest(Taro.getSystemInfo); useRequest(() => { return UserHelper.cacheTabMenu(); }); useDidShow((options: any) => { console.log('11111111111111111111111', options) if (options.query?.source === "app" && options.query?.platform) { let jumpUrls = ""; switch (options.query?.platform) { case "cyqb": jumpUrls = "https://mp.weixin.qq.com/s/TBP2VhzYRaMWf_CWbo5mBA"; break; case "hrqb": jumpUrls = "https://mp.weixin.qq.com/s/JJrWlgaA1lvIBAp7eNZjxg"; break; default: // 默认惠融钱包的文章 jumpUrls = "https://mp.weixin.qq.com/s/JJrWlgaA1lvIBAp7eNZjxg"; break; } RouteUtil.toWebViewPage({ url: jumpUrls, }); } if (StorageUtil.get(EStorage.channelCode)) { StorageUtil.remove(EStorage.channelCode); } if (options.query?.channelCode) { StorageUtil.set(EStorage.channelCode, options.query?.channelCode); } }); return ( // (appContext.systemInfo?.screenHeight || 0) - (appContext.systemInfo?.safeArea?.bottom || 0); {props.children} ); }; export default App;