123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // import { Component, PropsWithChildren } from 'react'
- // class App extends Component<PropsWithChildren> {
- // 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<IAppProps>) => {
- 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);
- <AppContext.Provider
- value={{
- systemInfo: result.data,
- screenSize: {
- width: result.data?.screenWidth || 0,
- height: result.data?.screenHeight || 0,
- },
- padding: {
- // top: result.data?.safeArea?.top || 0,
- top: 0,
- bottom:
- (result.data?.screenHeight || 0) -
- (result.data?.safeArea?.bottom || 0),
- },
- }}
- >
- <WebView src="https://mp.weixin.qq.com/s/4umQqPbPGfCgXqCizeXqKA"></WebView>
- <ReduxProvider store={ReduxUtil.store}>{props.children}</ReduxProvider>
- </AppContext.Provider>
- );
- };
- export default App;
|