ソースを参照

新增权限管理

HW 4 年 前
コミット
f7ebba32d3
共有8 個のファイルを変更した130 個の追加12 個の削除を含む
  1. 15 2
      config/routes.ts
  2. 1 0
      package.json
  3. 1 1
      src/access.ts
  4. 5 6
      src/app.tsx
  5. 5 2
      src/components/common/DataTable/index.tsx
  6. 5 0
      src/locales/zh-CN/menu.ts
  7. 97 0
      src/pages/admin/user/jurisdiction/index.jsx
  8. 1 1
      src/services/user.ts

+ 15 - 2
config/routes.ts

@@ -1,15 +1,28 @@
 export default [
   {
     name: 'list.table-list',
-    icon: 'table',
     path: '/order',
     component: './Order/Billing',
     access: 'billing',
   },
   {
+    path: '/',
+    routes: [
+      {
+        path: '/',
+        routes: [
+          {
+            path: '/jurisdiction',
+            component: './admin/user/jurisdiction',
+            access: 'jurisdiction',
+          }
+        ],
+      }
+    ]
+  },
+  {
     path: '/welcome',
     name: 'welcome',
-    icon: 'smile',
     component: './Welcome',
     access: 'welcome',
   },

+ 1 - 0
package.json

@@ -45,6 +45,7 @@
     "not ie <= 10"
   ],
   "dependencies": {
+    "@ant-design/compatible": "^1.0.8",
     "@ant-design/icons": "^4.0.0",
     "@ant-design/pro-descriptions": "^1.0.19",
     "@ant-design/pro-form": "^1.3.0",

+ 1 - 1
src/access.ts

@@ -3,11 +3,11 @@
 const routers = {
   welcome: false,
   billing: false,
+  jurisdiction: false,
 }
 
 export default function access(initialState: { currentUser?: API.CurrentUser | undefined }) {
   const { currentUser } = initialState || {};
-  console.log(currentUser,'currentUser');
   // TODO 目前只能把routes.ts里面的每个页面都定义上不同的权限名,然后在此处根据不同角色返回所有页面的权限
   if(!currentUser){
     // 退出登陆或者无当前用户信息时,所有页面都无权访问

+ 5 - 6
src/app.tsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Settings as LayoutSettings, PageLoading } from '@ant-design/pro-layout';
+import { Settings as LayoutSettings, PageLoading,BasicLayoutProps } from '@ant-design/pro-layout';
 import {message, notification} from 'antd';
 import qs from 'qs';
 import { history, RequestConfig, RunTimeLayoutConfig, ErrorShowType } from 'umi';
@@ -12,7 +12,7 @@ import {
   selectNavList
 } from './services/user';
 import defaultSettings from '../config/defaultSettings';
-import { BasicLayoutProps } from '@ant-design/pro-layout';
+import { Icon } from '@ant-design/compatible';
 
 /**
  * 获取用户信息比较慢的时候会展示一个 loading
@@ -67,11 +67,11 @@ export async function getInitialState(): Promise<{
   };
 }
 
-//处理后端返回的菜单数据
+// 处理后端返回的菜单数据
 const handleMenuList = (menuList)=>{
   menuList.map((value)=>{
-    console.debug(value.url)
     value.path = value.url;
+    value.icon = <Icon type="copy" theme="filled" />;
     if(value.subMenus){
       value.routes = value.subMenus;
       handleMenuList(value.routes);
@@ -100,8 +100,7 @@ export const layout: RunTimeLayoutConfig = ({ initialState }: {
       }
     },
     menuDataRender: (menuData) => {
-      console.debug(handleMenuList(initialState.menuData),'initialState.menuData')
-      return initialState.menuData || menuData;
+      return initialState.menuData ? handleMenuList(initialState.menuData) : menuData;
     },
     menuHeaderRender: undefined,
     // 自定义 403 页面

+ 5 - 2
src/components/common/DataTable/index.tsx

@@ -17,6 +17,8 @@ export interface DataTable {
   onHeaderRow?: ()=>{},             // 标题行操作
   scroll?: {},
   params?: {},                      // 额外的请求参数
+  method?: string,                  // 列表请求方式
+  pagination?: object,              //翻页配置
 }
 
 const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {
@@ -40,10 +42,11 @@ const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {
             params.pageNo = params.current;
             delete params.current;
             const msg = await request(props.url, {
+              method: props.method || 'get',
               params: props.requestProcess?props.requestProcess(params):params,
             });
             return {
-              data: msg.data.list,
+              data: msg.data.list || msg.data.one,
               success: true,
               total: msg.data.totalCount,
             };
@@ -58,7 +61,7 @@ const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {
       }}
       rowKey={props.rowKey || 'id'}
       search={props.search}
-      pagination={{
+      pagination={typeof props.pagination === 'boolean' ? props.pagination : {
         pageSize: 10,
       }}
       scroll={props.scroll || {}}

+ 5 - 0
src/locales/zh-CN/menu.ts

@@ -49,4 +49,9 @@ export default {
   'menu.editor.flow': '流程编辑器',
   'menu.editor.mind': '脑图编辑器',
   'menu.editor.koni': '拓扑编辑器',
+
+
+  // 新增
+  'menu.admin.user': '用户管理',
+  'menu.admin.user.jurisdiction': '权限管理',
 };

+ 97 - 0
src/pages/admin/user/jurisdiction/index.jsx

@@ -0,0 +1,97 @@
+import React, { Component }from 'react';
+import {Button, Popconfirm} from "antd";
+import { PlusOutlined } from "@ant-design/icons";
+import DataTable from "@/components/common/DataTable";
+
+class Jurisdiction extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns:[{
+        title: '接口名称',
+        dataIndex: 'name',
+        key: 'name',
+        width: '400px'
+      }, {
+        title: '接口路径',
+        dataIndex: 'url',
+        key: 'url',
+      }, {
+        title: '操作',
+        dataIndex: 'id',
+        key: 'id',
+        render: (text, record) => {
+          return(
+            <div>
+              {
+                record.url.indexOf('.html#')<=0 &&
+                <Button
+                  type="primary"
+                  style={{marginRight:'10px'}}
+                  onClick={(e)=>{
+                    e.stopPropagation();
+                    this.addNextURL(record)}
+                  }>
+                  新建下级权限
+                </Button>
+              }
+              <Popconfirm
+                title="是否真的删除?"
+                onConfirm={(e)=>{this.delectRow(record)}}
+                okText="确认"
+                cancelText="取消"
+                placement="topLeft">
+                <Button type="danger" onClick={(e)=>{e.stopPropagation()}}>删除</Button>
+              </Popconfirm>
+            </div>
+          )
+        }
+      }]
+    };
+    this.addClick = this.addClick.bind(this);
+    this.delectRow = this.delectRow.bind(this);
+  }
+
+  addClick=()=>{
+
+  }
+
+  delectRow=()=>{
+
+  }
+
+  addNextURL=()=>{
+
+  }
+
+  render() {
+    const ref = React.createRef();
+
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          headerTitle='权限管理'
+          url='/api/admin/permissions'
+          method='post'
+          rowKey='id'
+          scroll={{ x: 900 }}
+          columns={this.state.columns}
+          search={false}
+          pagination={false}
+          toolBarRender={[
+            <Button
+              type="primary"
+              key='addSupPermission'
+              icon={<PlusOutlined />}
+              onClick={this.addClick}>
+              新增权限
+            </Button>
+          ]}
+        />
+      </>
+    )
+  }
+}
+
+export default Jurisdiction;

+ 1 - 1
src/services/user.ts

@@ -16,7 +16,7 @@ export async function selectNavList() {
   return request<API.CurrentUser>('/api/admin/selectMenuList',{
     method: 'get',
     params:{
-      navId: 'bd670e1f-f551-4e41-beb5-6e8f47717d23',
+      navId: '17066bfb-e2d7-443d-97e1-f71f1f84c6f0',
     }
   });
 }