HW 4 年 前
コミット
af04374016

+ 2 - 2
src/app.tsx

@@ -140,7 +140,7 @@ const errorHandler = (error: ResponseError) => {
   }
   if (!info) {
     notification.error({
-      description: '您的网络发生异常,无法连接服务器',
+      description: '您的网络发生异常,无法连接服务器,请尝试刷新页面',
       message: '网络异常',
     });
   }
@@ -152,7 +152,7 @@ export const request: RequestConfig = {
   errorConfig: {
     adaptor: (resData,ctx)=>{
       return {
-        success: resData.error && resData.error.length === 0,
+        success: !(resData.error && resData.error[0] && resData.error[0].field === '403'),// 只有没登录才是返回false
           data: resData.error || null,
         errorCode: (resData.error && resData.error.length > 0) ? resData.error[0].field : 0,
         errorMessage: (resData.error && resData.error.length > 0) ? resData.error[0].message : '',

+ 3 - 3
src/components/common/DataTable/index.tsx

@@ -1,5 +1,5 @@
-import React, { useRef } from 'react';
-import ProTable, { ActionType } from '@ant-design/pro-table';
+import React from 'react';
+import ProTable from '@ant-design/pro-table';
 import { request } from 'umi';
 
 export interface DataTable {
@@ -18,7 +18,7 @@ export interface DataTable {
   scroll?: {},
   params?: {},                      // 额外的请求参数
   method?: string,                  // 列表请求方式
-  pagination?: object,              //翻页配置
+  pagination?: object,              // 翻页配置
 }
 
 const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {

+ 87 - 0
src/pages/admin/user/jurisdiction/components/authorityDetails.jsx

@@ -0,0 +1,87 @@
+import React, { Component } from 'react';
+import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import {urlType} from "@/utils/dataDic";
+import {selectAllById} from '../services/API';
+import {message} from "antd";
+
+class AuthorityDetails extends Component{
+  constructor(props) {
+    super(props);
+    this.state={}
+  }
+
+  // 查看基本详情基本信息
+  loaduser= async (id)=>{
+    const msg = await selectAllById(id);
+    if(msg.error.length === 0){
+      // this.setState({
+      //
+      // })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+  render() {
+    return (
+      <ModalForm
+        title="权限详情"
+        visible={this.props.visible}
+        initialValues={{
+          name:this.props.detailsInfor.name,
+          url:this.props.detailsInfor.url
+        }}
+        modalProps={{
+          onCancel: this.props.onCancel,
+        }}
+        onFinish={this.newPermission}
+      >
+        <ProForm.Group>
+          <ProFormText
+            rules={
+              [{
+                required: true,
+                message: '请输入接口名称!',
+              }]
+            }
+            width="xl"
+            name="name"
+            label="接口名称:"
+            placeholder="请输入名称"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormText
+            rules={
+              [{
+                required: true,
+                message: '请输入接口路径'
+              }]
+            }
+            width="xl"
+            name="url"
+            label="接口路径:"
+            placeholder="请输入接口路径"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormSelect
+            rules={[
+              {
+                required:true,
+                message:'请选择接口类型'
+              }
+            ]}
+            width="xl"
+            name="type"
+            label="接口类型:"
+            placeholder="请选择接口类型"
+            disabled={!this.props.superData}
+            request={async () => urlType}
+          />
+        </ProForm.Group>
+      </ModalForm>
+    )
+  }
+}
+export default AuthorityDetails;

+ 51 - 41
src/pages/admin/user/jurisdiction/components/newPermission.jsx

@@ -8,7 +8,8 @@ import ProForm, {
   ProFormSelect,
 } from '@ant-design/pro-form';
 import {
-  addSupPermission
+  addSupPermission,
+  addPermission,
 } from '../services/API';
 import {
   urlType
@@ -17,70 +18,65 @@ import {
 class NewPermission extends Component{
   constructor(props) {
     super(props);
-    this.state={
-      showDesc: false,
-    };
-    this.addClick = this.addClick.bind(this);
     this.newPermission = this.newPermission.bind(this);
+    this.addNewPermission = this.addNewPermission.bind(this);
   }
 
-  addClick=()=>{
-    this.setState({
-      showDesc: true
-    });
-  }
-
+  // 添加导航权限
   newPermission= async(values) => {
-    if(this.props.userDetaile){
-      if (!this.state.auto) {
-        message.warning('请输入上级模块')
-        return false;
-      }
-    }
     const msg = await addSupPermission(values);
     if(msg.error.length === 0){
-      message.success('新增成功')
+      message.success('新增成功');
+      this.props.tableRef.current.reload();// 刷新列表
       return true;
-    }else {
+    }else{
+      message.warning(msg.error[0].message);
+      return false;
+    }
+  }
+
+  // 添加导航下级权限
+  addNewPermission= async(values) => {
+    const msg = await addPermission({...values,superId:this.props.superData.name});
+    if(msg.error.length === 0){
+      message.success('新增成功');
+      this.props.tableRef.current.reload();// 刷新列表
+      return true;
+    }else{
       message.warning(msg.error[0].message);
       return false;
     }
-    // {
-    //   id: this.state.ids,
-    //     name: this.state.name, //接口名称
-    //   url: this.state.url, //接口路径
-    //   type: this.state.urlType || "0",
-    //   superId: this.state.auto, //接口上级模板功能
-    //   showOrder: this.state.showOrder,
-    // }
   }
 
   render() {
     return (
         <ModalForm
-          title="新建权限"
-          initialValues={{
-            type: 0
+          title={this.props.superData ? "新建下级权限模板":"新建权限"}
+          initialValues={this.props.superData ? null : {
+            type: 0// 导航级别
           }}
           trigger={
             <Button
               type="primary"
               key='addSupPermission'
-              icon={<PlusOutlined />}
-              onClick={this.addClick}>
-              新增权限
+              style={{...this.props.buttonStyle}}
+              icon={!this.props.superData && <PlusOutlined />}>
+              {this.props.superData ? '新增下级权限':'新增权限'}
             </Button>
           }
           modalProps={{
-            onCancel: () => this.setState({ showDesc: true }),
-          }}
-          onFinish={async (values) => {
-            this.newPermission(values);
+            onCancel: () => {},
           }}
+          onFinish={this.props.superData ? this.addNewPermission : this.newPermission}
         >
           <ProForm.Group>
             <ProFormText
-              required
+              rules={
+                [{
+                  required: true,
+                  message: '请输入接口名称!',
+                }]
+              }
               width="xl"
               name="name"
               label="接口名称:"
@@ -89,7 +85,12 @@ class NewPermission extends Component{
           </ProForm.Group>
           <ProForm.Group>
             <ProFormText
-              required
+              rules={
+                [{
+                  required: true,
+                  message: '请输入接口路径'
+                }]
+              }
               width="xl"
               name="url"
               label="接口路径:"
@@ -98,15 +99,24 @@ class NewPermission extends Component{
           </ProForm.Group>
           <ProForm.Group>
             <ProFormSelect
-              required
+              rules={[
+                {
+                  required:true,
+                  message:'请选择接口类型'
+                }
+              ]}
               width="xl"
               name="type"
               label="接口类型:"
               placeholder="请选择接口类型"
-              disabled
+              disabled={!this.props.superData}
               request={async () => urlType}
             />
           </ProForm.Group>
+          {this.props.superData && <ProForm.Group>
+            <span>上级功能模块:</span>
+            <span>{this.props.superData.name}</span>
+          </ProForm.Group>}
         </ModalForm>
     );
   }

+ 42 - 22
src/pages/admin/user/jurisdiction/index.jsx

@@ -1,8 +1,9 @@
 import React, { Component }from 'react';
-import {Button, Popconfirm} from "antd";
-import { PlusOutlined } from "@ant-design/icons";
+import {Button, message, Popconfirm} from "antd";
 import DataTable from "@/components/common/DataTable";
 import NewPermission from './components/newPermission';
+import AuthorityDetails from './components/AuthorityDetails';
+import {deleteById} from './services/API';
 
 class Jurisdiction extends Component{
   constructor(props) {
@@ -22,51 +23,62 @@ class Jurisdiction extends Component{
         title: '操作',
         dataIndex: 'id',
         key: 'id',
-        render: (text, record) => {
+        render: (text, record, key, action) => {
           return(
-            <div>
+            <>
               {
                 record.url.indexOf('.html#')<=0 &&
-                <Button
-                  type="primary"
-                  style={{marginRight:'10px'}}
-                  onClick={(e)=>{
-                    e.stopPropagation();
-                    this.addNextURL(record)}
-                  }>
-                  新建下级权限
-                </Button>
+                <NewPermission buttonStyle={{marginRight:'10px'}} tableRef={{current:action}} superData={record}/>
               }
               <Popconfirm
                 title="是否真的删除?"
-                onConfirm={(e)=>{this.delectRow(record)}}
+                onConfirm={(e)=>{this.delectRow(record.id,action)}}
                 okText="确认"
                 cancelText="取消"
                 placement="topLeft">
-                <Button type="danger" onClick={(e)=>{e.stopPropagation()}}>删除</Button>
+                <Button type="danger" onClick={(e)=>{e.stopPropagation();}}>删除</Button>
               </Popconfirm>
-            </div>
+            </>
           )
         }
       }],
+      detailsVisible:false,
+      detailsInfor:{},
     };
 
     this.delectRow = this.delectRow.bind(this);
+    this.onRow = this.onRow.bind(this);
   }
 
+  onRow=(event,record)=>{
+    event.stopPropagation();
+    this.setState({
+      detailsVisible: true,
+      detailsInfor:record
+    })
 
-
-  delectRow=()=>{
-
+    console.log(record)
   }
 
-  addNextURL=()=>{
+  delectRow=async (id,action)=>{
+    message.loading({ content: '删除中...', key:'delectRow' });
+    const msg = await deleteById(id);
+    if(msg.error.length === 0){
+      message.success({ content: '删除成功!', key:'delectRow', duration: 2 });
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message, key:'delectRow', duration: 2} );
+    }
+  }
 
+  onCancel=()=>{
+    this.setState({
+      detailsVisible: false
+    })
   }
 
   render() {
     const ref = React.createRef();
-
     return (
       <>
         <DataTable
@@ -79,10 +91,18 @@ class Jurisdiction extends Component{
           columns={this.state.columns}
           search={false}
           pagination={false}
+          onRow={(record)=>({
+              onClick:event => this.onRow(event,record)
+            })}
           toolBarRender={[
-            <NewPermission key='NewPermission'/>
+            <NewPermission key='NewPermission' tableRef={ref}/>
           ]}
         />
+        {this.state.detailsVisible && <AuthorityDetails
+          detailsInfor={this.state.detailsInfor}
+          visible={this.state.detailsVisible}
+          onCancel={this.onCancel}
+        />}
       </>
     )
   }

+ 34 - 1
src/pages/admin/user/jurisdiction/services/API.ts

@@ -1,9 +1,42 @@
 import { request } from 'umi';
 
-// 添加权限
+// 添加导航权限
 export async function addSupPermission(data: object) {
   return request('/api/admin/addSupPermission',{
     method:'post',
     data,
   });
 }
+
+// 权限详情
+export async function selectAllById(id: number) {
+  return request('/api/admin/selectAllById',{
+    method:'post',
+    data:{
+      id
+    },
+  });
+}
+
+// 添加导航下级权限
+//  name:权限名称
+//  url: 权限路径
+//  superId: 上级名称
+//  type: 接口类型
+export async function addPermission(data: object) {
+  return request('/api/admin/addPermission',{
+    method:'post',
+    data,
+  });
+}
+
+// 删除权限
+export async function deleteById(id: number) {
+  return request('/api/admin/deleteById',{
+    method:'post',
+    data:{
+      id
+    },
+  });
+}
+