import React,{useEffect,useState} from 'react'; import { Settings as LayoutSettings, PageLoading } from '@ant-design/pro-layout'; import {message, notification} from 'antd'; import qs from 'qs'; import { history, RequestConfig, RunTimeLayoutConfig, ErrorShowType } from 'umi'; import RightContent from '@/components/RightContent'; import Footer from '@/components/Footer'; import { ResponseError } from 'umi-request'; import { queryCurrent, selectNavList } from './services/user'; import defaultSettings from '../config/defaultSettings'; import DataTable from "@/components/common/DataTable"; /** * 获取用户信息比较慢的时候会展示一个 loading */ export const initialStateConfig = { loading: , }; export async function getInitialState(): Promise<{ settings?: LayoutSettings; currentUser?: API.CurrentUser; fetchUserInfo?: () => Promise; fetchNavList?: () => Promise; }> { const fetchUserInfo = async () => { try { const currentUser = await queryCurrent(); currentUser.data.token = currentUser.token; return currentUser.data; } catch (error) { history.push('/user/login'); } return undefined; }; const fetchNavList = async () => { try { const currentNavList = await selectNavList(); return currentNavList.data; } catch (error) { history.push('/user/login'); } return undefined; }; // 如果是登录页面,不执行 if (history.location.pathname !== '/user/login') { const currentUser = await fetchUserInfo(); const currentNavList = await fetchNavList(); return { fetchUserInfo, fetchNavList, currentUser, currentNavList, settings: defaultSettings, }; } return { fetchUserInfo, fetchNavList, settings: defaultSettings, }; } export const layout: RunTimeLayoutConfig = ({ initialState }) => { return { rightContentRender: () => , disableContentMargin: false, footerRender: () =>