|
@@ -1,4 +1,4 @@
|
|
|
-import React,{useEffect,useState} from 'react';
|
|
|
+import React from 'react';
|
|
|
import { Settings as LayoutSettings, PageLoading } from '@ant-design/pro-layout';
|
|
|
import {message, notification} from 'antd';
|
|
|
import qs from 'qs';
|
|
@@ -6,12 +6,13 @@ import { history, RequestConfig, RunTimeLayoutConfig, ErrorShowType } from 'umi'
|
|
|
import RightContent from '@/components/RightContent';
|
|
|
import Footer from '@/components/Footer';
|
|
|
import { ResponseError } from 'umi-request';
|
|
|
+import { MenuDataItem } from '@umijs/route-utils';
|
|
|
import {
|
|
|
queryCurrent,
|
|
|
selectNavList
|
|
|
} from './services/user';
|
|
|
import defaultSettings from '../config/defaultSettings';
|
|
|
-import DataTable from "@/components/common/DataTable";
|
|
|
+import { BasicLayoutProps } from '@ant-design/pro-layout';
|
|
|
|
|
|
/**
|
|
|
* 获取用户信息比较慢的时候会展示一个 loading
|
|
@@ -25,6 +26,7 @@ export async function getInitialState(): Promise<{
|
|
|
currentUser?: API.CurrentUser;
|
|
|
fetchUserInfo?: () => Promise<API.CurrentUser | undefined>;
|
|
|
fetchNavList?: () => Promise<API.CurrentUser | undefined>;
|
|
|
+ menuData: MenuDataItem[];
|
|
|
}> {
|
|
|
const fetchUserInfo = async () => {
|
|
|
try {
|
|
@@ -39,7 +41,17 @@ export async function getInitialState(): Promise<{
|
|
|
const fetchNavList = async () => {
|
|
|
try {
|
|
|
const currentNavList = await selectNavList();
|
|
|
- return currentNavList.data;
|
|
|
+ // return currentNavList.data;
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ path: '/welcome',
|
|
|
+ name: 'welcome',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'list.table-list',
|
|
|
+ path: '/order',
|
|
|
+ }
|
|
|
+ ]
|
|
|
} catch (error) {
|
|
|
history.push('/user/login');
|
|
|
}
|
|
@@ -53,18 +65,25 @@ export async function getInitialState(): Promise<{
|
|
|
fetchUserInfo,
|
|
|
fetchNavList,
|
|
|
currentUser,
|
|
|
- currentNavList,
|
|
|
+ menuData: currentNavList,
|
|
|
settings: defaultSettings,
|
|
|
};
|
|
|
}
|
|
|
return {
|
|
|
+ menuData: [],
|
|
|
fetchUserInfo,
|
|
|
fetchNavList,
|
|
|
settings: defaultSettings,
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-export const layout: RunTimeLayoutConfig = ({ initialState }) => {
|
|
|
+export const layout: RunTimeLayoutConfig = ({ initialState }: {
|
|
|
+ initialState: {
|
|
|
+ settings?: LayoutSettings;
|
|
|
+ menuData: Promise<BasicLayoutProps>;
|
|
|
+ currentUser?: API.CurrentUser;
|
|
|
+ };
|
|
|
+}) => {
|
|
|
return {
|
|
|
rightContentRender: () => <RightContent />,
|
|
|
disableContentMargin: false,
|
|
@@ -76,24 +95,7 @@ export const layout: RunTimeLayoutConfig = ({ initialState }) => {
|
|
|
history.push('/user/login');
|
|
|
}
|
|
|
},
|
|
|
- menuDataRender: (menuData)=>{
|
|
|
- console.debug(initialState)
|
|
|
- if(initialState.currentNavList && initialState.currentNavList.length>0){
|
|
|
- return [{
|
|
|
- name: 'list.table-list',
|
|
|
- icon: 'table',
|
|
|
- path: '/order',
|
|
|
- component: './Order/Billing',
|
|
|
- },{
|
|
|
- path: '/welcome',
|
|
|
- name: 'welcome',
|
|
|
- icon: 'smile',
|
|
|
- hideInMenu: true,
|
|
|
- component: './Welcome',
|
|
|
- }]
|
|
|
- }
|
|
|
- return [];
|
|
|
- },
|
|
|
+ menuDataRender: (menuData) => initialState.menuData || menuData,
|
|
|
menuHeaderRender: undefined,
|
|
|
// 自定义 403 页面
|
|
|
// unAccessible: <div>unAccessible</div>,
|