HW 4 年 前
コミット
549be6179d

+ 162 - 53
src/pages/admin/user/jurisdiction/components/authorityDetails.jsx

@@ -1,87 +1,196 @@
 import React, { Component } from 'react';
-import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import ProForm, {ModalForm, ProFormSelect, ProFormText,ProFormDigit} from "@ant-design/pro-form";
 import {urlType} from "@/utils/dataDic";
-import {selectAllById} from '../services/API';
-import {message} from "antd";
+import {selectAllById, selectName,updateById} from '../services/API';
+import { LoadingOutlined } from '@ant-design/icons';
+import {message,Form,AutoComplete,Spin} from "antd";
+
+const { Option } = AutoComplete;
+
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
 
 class AuthorityDetails extends Component{
   constructor(props) {
     super(props);
-    this.state={}
+    this.state={
+      detailsData: {},
+      modules: [],
+      spinning: false,
+    }
+    this.handleSearchModule = this.handleSearchModule.bind(this);
+    this.updateDetailsData = this.updateDetailsData.bind(this);
   }
 
   // 查看基本详情基本信息
   loaduser= async (id)=>{
+    this.setState({
+      spinning: true
+    })
     const msg = await selectAllById(id);
     if(msg.error.length === 0){
-      // this.setState({
-      //
-      // })
+      msg.data.createTime = new Date(msg.data.createTime).toLocaleString();
+      msg.data.updateTime = new Date(msg.data.updateTime).toLocaleString();
+      this.setState({
+        detailsData: msg.data,
+        spinning: false
+      });
+      this.formRef.current.setFieldsValue({
+        name:msg.data.name,
+        url:msg.data.url,
+        type:msg.data.type,
+        showOrder:msg.data.showOrder,
+        createId:msg.data.createId,
+        superId:msg.data.superId,
+      })
+    }else{
+      message.error(msg.error[0].message);
+      this.setState({
+        spinning: false
+      });
+    }
+  }
+
+  handleSearchModule=async (value)=>{
+    const msg = await selectName(value);
+    if(msg.error.length === 0){
+      this.setState({
+        modules: msg.data
+      })
     }else{
       message.error(msg.error[0].message)
     }
   }
 
+  updateDetailsData= async (value)=>{
+    message.loading({content:'保存中...',key:'updateDetailsData'});
+    value.id = this.state.detailsData.id;
+    const msg = await updateById(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'updateDetailsData', duration: 2});
+      this.props.tableRef.current.reload();// 刷新列表
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'updateDetailsData', duration: 2})
+    }
+  }
+
+  componentDidMount() {
+    this.props.detailsInfor && this.loaduser(this.props.detailsInfor.id);
+  }
+
+  formRef = React.createRef();
+
   render() {
+    const {detailsData} = this.state;
     return (
       <ModalForm
+        formRef={this.formRef}
+        layout='horizontal'
         title="权限详情"
         visible={this.props.visible}
         initialValues={{
-          name:this.props.detailsInfor.name,
-          url:this.props.detailsInfor.url
+
         }}
         modalProps={{
           onCancel: this.props.onCancel,
         }}
-        onFinish={this.newPermission}
+        onFinish={this.updateDetailsData}
       >
-        <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:'请选择接口类型'
+        <Spin indicator={antIcon} spinning={this.state.spinning}>
+          <ProForm.Group>
+            <ProFormText
+              rules={
+                [{
+                  required: true,
+                  message: '请输入接口名称!',
+                }]
               }
-            ]}
-            width="xl"
-            name="type"
-            label="接口类型:"
-            placeholder="请选择接口类型"
-            disabled={!this.props.superData}
-            request={async () => urlType}
-          />
-        </ProForm.Group>
+              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="请选择接口类型"
+              request={async () => urlType}
+            />
+          </ProForm.Group>
+          <Form.Item
+            label="上级功能模块:"
+            name='superId'
+          >
+            <AutoComplete
+              style={{
+                width: 200,
+              }}
+              onSearch={this.handleSearchModule}
+              placeholder="请选择上级功能模块"
+            >
+              {this.state.modules.map((email) => (
+                <Option key={email.name} value={email.name}>
+                  {email.name}
+                </Option>
+              ))}
+            </AutoComplete>
+          </Form.Item>
+          <ProForm.Group>
+            <ProFormDigit
+              width="xl"
+              name="showOrder"
+              label="排序数字:"
+              placeholder="请输入排序数字"
+            />
+          </ProForm.Group>
+          <Form.Item
+            label="权限编号:"
+          >
+            <span>{detailsData.autNo}</span>
+          </Form.Item>
+          <Form.Item
+            name='createId'
+            label="创建人:"
+          >
+            <span>{detailsData.createId}</span>
+          </Form.Item>
+          <Form.Item
+            label="创建时间:"
+          >
+            <span>{detailsData.createTime}</span>
+          </Form.Item>
+          <Form.Item
+            label="更新时间:"
+          >
+            <span>{detailsData.updateTime}</span>
+          </Form.Item>
+        </Spin>
       </ModalForm>
     )
   }
 }
+
 export default AuthorityDetails;

+ 5 - 15
src/pages/admin/user/jurisdiction/components/newPermission.jsx

@@ -1,5 +1,4 @@
 import React, { Component } from 'react';
-import {PlusOutlined} from "@ant-design/icons";
 import {Button, message} from "antd";
 import ProForm, {
   ModalForm,
@@ -28,10 +27,9 @@ class NewPermission extends Component{
     if(msg.error.length === 0){
       message.success('新增成功');
       this.props.tableRef.current.reload();// 刷新列表
-      return true;
+      this.props.onCancel();
     }else{
       message.warning(msg.error[0].message);
-      return false;
     }
   }
 
@@ -41,31 +39,23 @@ class NewPermission extends Component{
     if(msg.error.length === 0){
       message.success('新增成功');
       this.props.tableRef.current.reload();// 刷新列表
-      return true;
+      this.props.onCancel();
     }else{
       message.warning(msg.error[0].message);
-      return false;
     }
   }
 
   render() {
     return (
         <ModalForm
+          preserve={false}
+          visible={this.props.visible}
           title={this.props.superData ? "新建下级权限模板":"新建权限"}
           initialValues={this.props.superData ? null : {
             type: 0// 导航级别
           }}
-          trigger={
-            <Button
-              type="primary"
-              key='addSupPermission'
-              style={{...this.props.buttonStyle}}
-              icon={!this.props.superData && <PlusOutlined />}>
-              {this.props.superData ? '新增下级权限':'新增权限'}
-            </Button>
-          }
           modalProps={{
-            onCancel: () => {},
+            onCancel: (e) => {e.stopPropagation();this.props.onCancel && this.props.onCancel();},
           }}
           onFinish={this.props.superData ? this.addNewPermission : this.newPermission}
         >

+ 40 - 3
src/pages/admin/user/jurisdiction/index.jsx

@@ -4,6 +4,7 @@ import DataTable from "@/components/common/DataTable";
 import NewPermission from './components/newPermission';
 import AuthorityDetails from './components/AuthorityDetails';
 import {deleteById} from './services/API';
+import {PlusOutlined} from "@ant-design/icons";
 
 class Jurisdiction extends Component{
   constructor(props) {
@@ -28,11 +29,17 @@ class Jurisdiction extends Component{
             <>
               {
                 record.url.indexOf('.html#')<=0 &&
-                <NewPermission buttonStyle={{marginRight:'10px'}} tableRef={{current:action}} superData={record}/>
+                <Button
+                  type="primary"
+                  key='addSupPermission'
+                  style={{marginRight:'15px'}}
+                  onClick={(e)=>{e.stopPropagation();this.setState({newPermissionVisible:true,superData:record})}}>
+                  新增下级权限
+                </Button>
               }
               <Popconfirm
                 title="是否真的删除?"
-                onConfirm={(e)=>{this.delectRow(record.id,action)}}
+                onConfirm={(e)=>{e.stopPropagation();this.delectRow(record.id,action)}}
                 okText="确认"
                 cancelText="取消"
                 placement="topLeft">
@@ -44,6 +51,8 @@ class Jurisdiction extends Component{
       }],
       detailsVisible:false,
       detailsInfor:{},
+      newPermissionVisible: false,
+      superData:{},
     };
 
     this.delectRow = this.delectRow.bind(this);
@@ -77,6 +86,13 @@ class Jurisdiction extends Component{
     })
   }
 
+  onNewPermissionCancel=()=>{
+    this.setState({
+      newPermissionVisible: false,
+      superData:'',
+    })
+  }
+
   render() {
     const ref = React.createRef();
     return (
@@ -95,14 +111,35 @@ class Jurisdiction extends Component{
               onClick:event => this.onRow(event,record)
             })}
           toolBarRender={[
-            <NewPermission key='NewPermission' tableRef={ref}/>
+            <Button
+              type="primary"
+              key='NewPermission'
+              icon={<PlusOutlined />}
+              onClick={()=>{
+                this.setState({
+                  newPermissionVisible: true,
+                  superData:'',
+                })
+              }}
+            >
+              新增权限
+            </Button>
           ]}
         />
         {this.state.detailsVisible && <AuthorityDetails
+          tableRef={ref}
           detailsInfor={this.state.detailsInfor}
           visible={this.state.detailsVisible}
           onCancel={this.onCancel}
         />}
+        {this.state.newPermissionVisible &&
+          <NewPermission
+            tableRef={ref}
+            superData={this.state.superData}
+            visible={this.state.newPermissionVisible}
+            onCancel={this.onNewPermissionCancel}
+          />
+        }
       </>
     )
   }

+ 19 - 0
src/pages/admin/user/jurisdiction/services/API.ts

@@ -18,6 +18,25 @@ export async function selectAllById(id: number) {
   });
 }
 
+// 编辑权限信息
+export async function updateById(data: number) {
+  return request('/api/admin/updateById',{
+    method:'post',
+    data,
+  });
+}
+
+// 上级权限自动补全查询
+// name	模糊搜索权限名字
+export async function selectName(name: string) {
+  return request('/api/admin/selectName',{
+    method:'post',
+    data:{
+      name
+    },
+  });
+}
+
 // 添加导航下级权限
 //  name:权限名称
 //  url: 权限路径