MaoMeiQiHW 4 年 前
コミット
df8968fdd3
共有5 個のファイルを変更した66 個の追加48 個の削除を含む
  1. 18 22
      config/routes.ts
  2. 21 2
      src/access.ts
  3. 25 23
      src/app.tsx
  4. 1 0
      src/components/RightContent/AvatarDropdown.tsx
  5. 1 1
      src/services/login.ts

+ 18 - 22
config/routes.ts

@@ -1,5 +1,23 @@
 export default [
   {
+    name: 'list.table-list',
+    icon: 'table',
+    path: '/order',
+    component: './Order/Billing',
+    access: 'billing',
+  },
+  {
+    path: '/welcome',
+    name: 'welcome',
+    icon: 'smile',
+    component: './Welcome',
+    access: 'welcome',
+  },
+  {
+    path: '/',
+    redirect: '/welcome',
+  },
+  {
     path: '/user',
     layout: false,
     routes: [
@@ -16,28 +34,6 @@
     ],
   },
   {
-    path: '/welcome',
-    name: 'welcome',
-    icon: 'smile',
-    component: './Welcome',
-  },
-  {
-    name: 'list.table-list',
-    icon: 'table',
-    path: '/order',
-    component: './Order/Billing',
-  },
-  // {
-  //   name: 'list.table-list',
-  //   icon: 'table',
-  //   path: '/list',
-  //   component: './ListTableList',
-  // },
-  {
-    path: '/',
-    redirect: '/welcome',
-  },
-  {
     component: './404',
   },
 ];

+ 21 - 2
src/access.ts

@@ -1,7 +1,26 @@
 // src/access.ts
+
+const routers = {
+  welcome: false,
+  billing: false,
+}
+
 export default function access(initialState: { currentUser?: API.CurrentUser | undefined }) {
   const { currentUser } = initialState || {};
-  return {
-    canAdmin: false,
+  console.log(currentUser,'currentUser');
+  // TODO 目前只能把routes.ts里面的每个页面都定义上不同的权限名,然后在此处根据不同角色返回所有页面的权限
+  if(!currentUser){
+    // 退出登陆或者无当前用户信息时,所有页面都无权访问
+    return routers;
+  }
+  if(currentUser.mobile === 'admin'){
+    return {}
+  }else if(currentUser.mobile === 'zxs'){
+    // 从后端获取的权限(只能查看欢迎页)
+    let mobilelv = {welcome:true}
+    return {
+      ...routers,
+      ...mobilelv,
+    }
   };
 }

+ 25 - 23
src/app.tsx

@@ -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>,

+ 1 - 0
src/components/RightContent/AvatarDropdown.tsx

@@ -7,6 +7,7 @@ import { stringify } from 'querystring';
 import HeaderDropdown from '../HeaderDropdown';
 import styles from './index.less';
 
+
 export interface GlobalHeaderRightProps {
   menu?: boolean;
 }

+ 1 - 1
src/services/login.ts

@@ -20,5 +20,5 @@ export async function getFakeCaptcha(mobile: string) {
 }
 
 export async function outLogin() {
-  return request('/api/login/outLogin');
+  return request('/api/login');
 }