ソースを参照

管理员列表

HW 4 年 前
コミット
627ad4bd89

+ 5 - 0
config/routes.ts

@@ -16,6 +16,11 @@
     access: 'roleManage',
   },
   {
+    path: '/administrators',
+    component: './admin/user/administrators',
+    access: 'administrators',
+  },
+  {
     path: '/welcome',
     name: 'welcome',
     component: './Welcome',

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

@@ -19,6 +19,7 @@ export interface DataTable {
   params?: {},                      // 额外的请求参数
   method?: string,                  // 列表请求方式
   pagination?: object,              // 翻页配置
+  editable?: {},                // 表格相关配置
 }
 
 const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {
@@ -58,6 +59,7 @@ const DataTable: React.FC<DataTable> =  React.forwardRef((props, ref) => {
       }
       editable={{
         type: 'multiple',
+        ...props.editable,
       }}
       rowKey={props.rowKey || 'id'}
       search={props.search}

+ 3 - 2
src/components/common/ImgOperation/index.jsx

@@ -1,16 +1,17 @@
 import React,{Component} from 'react';
-import {Icon, message, Spin, Upload,Progress} from 'antd';
+import {message, Spin, Upload} from 'antd';
 import './index.less';
 import Viewer from 'viewerjs';
 import 'viewerjs/dist/viewer.css';
 import PropTypes from 'prop-types';
+import {PlusOutlined} from '@ant-design/icons'
 
 // const url1 = 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1601012352754&di=d33308119328f5ed987bd90031f98cfa&imgtype=0&src=http%3A%2F%2Fa2.att.hudong.com%2F27%2F81%2F01200000194677136358818023076.jpg';
 // const url2 = 'https://ss0.bdstatic.com/94oJfD_bAAcT8t7mm9GUKT-xh_/timg?image&quality=100&size=b4000_4000&sec=1601001245&di=60b5e1a42beb791524b46d7e3677f1f4&src=http://a2.att.hudong.com/13/86/01300001285722131043860050752.jpg';
 
 const uploadButton = (
   <div>
-    <Icon type="plus" />
+    <PlusOutlined />
     <div className="ant-upload-text">点击上传</div>
   </div>
 );

+ 1 - 1
src/pages/Order/Billing/index.jsx

@@ -18,9 +18,9 @@ import BillingHistory from './components/billingHistory';
 import CreateOrder from './components/createOrder';
 
 import {
-  getSelectSuperId,
   getFakeCaptcha
 } from './services/API';
+import {getSelectSuperId} from '@/services/user';
 
 import {
   getProcessStatus,

+ 294 - 0
src/pages/admin/user/administrators/compenents/addUser.jsx

@@ -0,0 +1,294 @@
+import React,{Component} from 'react';
+import {AutoComplete, Form, message, Modal, Spin} from "antd";
+import ProForm, {ModalForm, ProFormCheckbox, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import {post, roleResources, station,cityArr} from "@/utils/dataDic";
+import { LoadingOutlined } from '@ant-design/icons';
+import {getSelectSuperId,getRolesList} from "@/services/user";
+import ImgOperation from "@/components/common/ImgOperation";
+import {selectName} from "@/pages/admin/user/jurisdiction/services/API";
+import {getSelectName} from '../services/API';
+
+const { Option } = AutoComplete;
+
+class AddUser extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      loading: false,
+      fileList: [],
+      uploadImgLoading: false,
+      modules: [],
+    }
+    this.handleSearchModule= this.handleSearchModule.bind(this);
+  }
+
+  addUser= async ()=>{
+    if(this.state.uploadImgLoading){
+      message.info('有图片正在上传中,请稍后');
+      return;
+    }
+  }
+
+  getStation = async () => {
+    station.map((v)=>{
+      v.label = v.key;
+      return v;
+    })
+    return station;
+  }
+
+  getPost = async () => {
+    post.map((v)=>{
+      v.label = v.key;
+      return v;
+    })
+    return post;
+  }
+
+  getCityArr = async () => {
+    cityArr.map((v)=>{
+      v.label = v.key;
+      return v;
+    })
+    return cityArr;
+  }
+
+  getRolesList=async (value)=>{
+    const msg = await getRolesList(value);
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.name,
+          value: item.id
+        });
+      });
+    }else{
+      message.error(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  departmentList = async() => {
+    const msg = await getSelectSuperId();
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.name,
+          value: item.id
+        });
+      });
+    }else{
+      message.info(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  handleSearchModule=async (value)=>{
+    const msg = await getSelectName(value);
+    if(msg.error.length === 0){
+      this.setState({
+        modules: msg.data
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+  formRef = React.createRef();
+
+  render() {
+    return (
+      <ModalForm
+        formRef={this.formRef}
+        visible={this.props.visible}
+        preserve={false}
+        title='新建用户'
+        modalProps={{
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+        }}
+        onFinish={this.addUser}
+      >
+          <ProForm.Group>
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入用户名'
+                }
+              ]}
+              placeholder="请输入用户名"
+              name="mobile"
+              label="用户名"
+            />
+            <ProFormSelect
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择用户角色'
+                }
+              ]}
+              placeholder="请选择用户角色"
+              label='用户角色'
+              name="roles"
+              request={this.getRolesList}/>
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入用户姓名'
+                }
+              ]}
+              placeholder="请输入用户姓名"
+              name="name"
+              label="用户姓名"
+            />
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入联系方式'
+                },
+                {
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
+                }
+              ]}
+              placeholder="请输入手机号"
+              name="contactMobile"
+              label="联系方式"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormSelect
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择组织部门'
+                }
+              ]}
+              placeholder="请选择组织部门"
+              label='组织部门'
+              name="departmentId"
+              request={this.departmentList}/>
+            <ProFormSelect
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择职务'
+                }
+              ]}
+              placeholder="请选择职务"
+              label='职务'
+              name="duty"
+              request={this.getPost}/>
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormSelect
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择岗位'
+                }
+              ]}
+              placeholder="请选择岗位"
+              label='岗位'
+              name="position"
+              request={this.getStation}/>
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入电子邮箱'
+                },
+                {
+                  pattern: /^[A-Za-z0-9\-_]+[A-Za-z0-9\.\-_]*[A-Za-z0-9\-_]+@[A-Za-z0-9]+[A-Za-z0-9\.\-_]*(\.[A-Za-z0-9\.\-_]+)*[A-Za-z0-9]+\.[A-Za-z0-9]+[A-Za-z0-9\.\-_]*[A-Za-z0-9]+$/,
+                  message: '不合法的邮箱格式!',
+                },
+              ]}
+              placeholder="请输入电子邮箱"
+              name="email"
+              label="电子邮箱"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <Form.Item
+              rules={[
+                {
+                  required:true,
+                  message:'请选择上级主管'
+                }
+              ]}
+              label="上级主管"
+              name='superior'
+            >
+              <AutoComplete
+                style={{
+                  width:'328px'
+                }}
+                onSearch={this.handleSearchModule}
+                placeholder="请输入名称"
+              >
+                {this.state.modules.map((v) => (
+                  <Option key={v.id} value={v.name}>
+                    {v.name}
+                  </Option>
+                ))}
+              </AutoComplete>
+            </Form.Item>
+            <ProFormSelect
+              mode="multiple"
+              allowClear
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择地区'
+                }
+              ]}
+              placeholder="请选择地区"
+              label='地区'
+              name="district"
+              request={this.getCityArr}/>
+          </ProForm.Group>
+          <ProForm.Group>
+            <Form.Item label='用户头像'  name="orgCodeUrl" extra="图片建议:要清晰。">
+              <ImgOperation
+                domId='uploadAdminImg'
+                uploadConfig={{
+                  action:'/api/admin/superviser/uploadAdminImg',
+                  multiple:true,
+                  data:{ 'sign': this.props.pictureSign || '' },
+                  listType:"picture-card",
+                }}
+                onChange={(infor)=>{
+                  this.setState({
+                    fileList: infor.fileList,
+                  });
+                }}
+                fileList={this.state.fileList}
+                onUploadState={(v)=>{
+                  this.setState({
+                    uploadImgLoading: v.state === 'uploading'
+                  })
+                }}
+              />
+            </Form.Item>
+          </ProForm.Group>
+      </ModalForm>
+    )
+  }
+}
+
+export default AddUser;

+ 76 - 0
src/pages/admin/user/administrators/compenents/unifiedTransfer.jsx

@@ -0,0 +1,76 @@
+import React,{Component} from 'react';
+import {Button, Modal, Popconfirm} from "antd";
+import DataTable from "@/components/common/DataTable";
+
+class UnifiedTransfer extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns:[{
+        title: '用户编号',
+        dataIndex: 'userNo',
+        key: 'userNo',
+      }, {
+        title: '登录用户名',
+        dataIndex: 'mobile',
+        key: 'mobile',
+      }, {
+        title: '角色',
+        dataIndex: 'roles',
+        key: 'roles',
+      }, {
+        title: '用户姓名',
+        dataIndex: 'name',
+        key: 'name',
+        searchBool: true,
+      }, {
+        title: '转交',
+        dataIndex: 'id',
+        key: 'id',
+        render: (text, record) => {
+          return <Popconfirm
+            title={'请确认转交【'+record.name+'】'}
+            onConfirm={(e)=>{e.stopPropagation();}}
+            okText="确认"
+            cancelText="取消"
+            placement="topLeft">
+            <Button type="primary" danger onClick={(e)=>e.stopPropagation()}>
+              转交
+            </Button>
+          </Popconfirm>
+        }
+      },
+      ]
+    }
+  }
+
+  render() {
+    return (
+      <Modal
+        title="离职一键转交"
+        visible={this.props.visible}
+        destroyOnClose
+        footer={null}
+        width={800}
+        onCancel={this.props.onCancel}
+      >
+        <DataTable
+          headerTitle=''
+          url='/api/admin/superviser/adminList'
+          rowKey='id'
+          columns={this.state.columns}
+          params={{
+            status: '正常'
+          }}
+          search={{
+            filterType: 'query',
+            labelWidth: 'auto',
+            defaultCollapsed: false,
+          }}
+        />
+      </Modal>
+    )
+  }
+}
+
+export default UnifiedTransfer;

+ 295 - 0
src/pages/admin/user/administrators/index.jsx

@@ -0,0 +1,295 @@
+import React, {Component} from 'react';
+import {Button, Form, message, Popconfirm} from "antd";
+import DataTable from "@/components/common/DataTable";
+import {ProFormSelect} from "@ant-design/pro-form";
+import {getRolesList,getSelectSuperId} from '@/services/user';
+import {post,station} from '@/utils/dataDic';
+import {getPost,getStation} from '@/utils/tools.js';
+import {updateAdmin} from './services/API';
+import UnifiedTransfer from './compenents/unifiedTransfer';
+import AddUser from './compenents/addUser';
+
+class Administrators extends Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+      columns: [{
+        title: '用户编号',
+        dataIndex: 'userNo',
+        key: 'userNo',
+      }, {
+        title: '登录用户名',
+        dataIndex: 'mobile',
+        key: 'mobile',
+        searchBool: true,
+      }, {
+        title: '角色',
+        dataIndex: 'roles',
+        key: 'rid',
+        searchBool: true,
+        renderFormItem: () => {
+          return (
+              <ProFormSelect label='' request={this.getRolesList}/>
+          );
+        },
+      }, {
+        title: '用户姓名',
+        dataIndex: 'name',
+        key: 'name',
+        searchBool: true,
+      }, {
+        title: '部门',
+        dataIndex: 'departmentName',
+        key: 'departmentId',
+        searchBool: true,
+        renderFormItem: () => {
+          return (
+            <ProFormSelect label='' request={this.departmentList}/>
+          );
+        },
+      }, {
+        title: '职务',
+        dataIndex: 'duty',
+        key: 'duty',
+        searchBool: true,
+        render: text => {
+          return getPost(text)
+        },
+        renderFormItem: () => {
+          return (
+              <ProFormSelect label='' request={this.getPost}/>
+          );
+        }
+      }, {
+        title: '岗位',
+        dataIndex: 'position',
+        key: 'position',
+        searchBool: true,
+        render: text => {
+          return getStation(text)
+        },
+        renderFormItem: () => {
+          return (
+              <ProFormSelect label='' request={this.getStation}/>
+          );
+        }
+      }, {
+        title: '上级主管姓名',
+        dataIndex: 'superior',
+        key: 'superior',
+        searchBool: true,
+      }, {
+        title: '状态',
+        dataIndex: 'status',
+        key: 'status',
+        searchBool: true,
+        renderFormItem: () => {
+          return (
+            <ProFormSelect label='' valueEnum={{
+              '正常': {
+                text: '正常',
+              },
+              '锁定': {
+                text: '锁定',
+              },
+              '注销': {
+                text: '注销',
+              }
+            }}/>
+          );
+        }
+      }, {
+        title: '最后登录时间',
+        dataIndex: 'lastLoginTime',
+        key: 'lastLoginTime',
+      },{
+        title: '操作',
+        dataIndex: 'id',
+        key: 'id',
+        fixed: 'right',
+        align: 'center',
+        width: 250,
+        render:(text,record,key,action)=>(
+          <>
+            {record.status === '正常' ? <Popconfirm
+              title="是否锁定?"
+              onConfirm={(e)=>{e.stopPropagation();this.locking(record,action);}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+              <Button type="primary" onClick={(e)=>e.stopPropagation()}>
+                锁定
+              </Button>
+            </Popconfirm> : record.status === '锁定' ?
+            <Popconfirm
+              title="是否激活?"
+              onConfirm={(e)=>{e.stopPropagation();this.activation(record,action)}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+              <Button type="primary" onClick={(e)=>e.stopPropagation()}>
+                激活
+              </Button>
+            </Popconfirm> : null}
+            <Button type='primary' style={{marginLeft:'15px'}} danger onClick={(e)=>{
+              e.stopPropagation();
+              this.setState({
+                visible: true,
+              })
+            }}>
+              离职一键转交
+            </Button>
+          </>
+        )
+      }],
+      visible: false,
+      addUserVisible: false,
+    }
+  }
+
+  // 锁定
+  locking=async (record,action)=>{
+    message.loading({content:'锁定中...',key:'updateAdmin'})
+    const msg = await updateAdmin({
+      roles:record.rolesId,
+      data:JSON.stringify({
+        id: record.id,
+        status: '锁定',
+        name: record.name,
+        mobile: record.mobile,
+      }),
+    });
+    if(msg.error.length === 0){
+      message.success({content:'锁定成功',key:'updateAdmin',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'updateAdmin',duration:2.5})
+    }
+  }
+
+  // 激活
+  activation=async (record,action)=>{
+    message.loading({content:'激活中...',key:'activation'})
+    const msg = await updateAdmin({
+      roles:record.rolesId,
+      data:JSON.stringify({
+        id: record.id,
+        status: '正常',
+        name: record.name,
+        mobile: record.mobile,
+      }),
+    });
+    if(msg.error.length === 0){
+      message.success({content:'激活成功',key:'activation',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'activation',duration:2.5})
+    }
+  }
+
+  getRolesList= async ()=>{
+    const msg = await getRolesList();
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.map((item, index)=> {
+        theArr.push({
+          label: item.roleName,
+          value: item.id
+        })
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  departmentList = async() => {
+    const msg = await getSelectSuperId();
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.name,
+          value: item.id
+        });
+      });
+    }else{
+      message.info(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  getPost = async () => {
+    post.map((v)=>{
+      v.label = v.key;
+      return v;
+    })
+    return post;
+  }
+
+  getStation = async () => {
+    station.map((v)=>{
+      v.label = v.key;
+      return v;
+    })
+    return station;
+  }
+
+  render() {
+    const ref = React.createRef();
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          headerTitle='角色管理'
+          url='/api/admin/superviser/adminList'
+          rowKey='id'
+          scroll={{x:1200}}
+          columns={this.state.columns}
+          search={{
+            filterType: 'query',
+            labelWidth: 'auto',
+            defaultCollapsed: false,
+          }}
+          onRow={(record) => ({
+            onClick: (e) => {
+              e.stopPropagation();
+            }
+          })}
+          toolBarRender={[
+            <Button
+              type='primary'
+              key='addUser'
+              onClick={(e)=>{
+                e.stopPropagation();
+                this.setState({
+                  addUserVisible: true
+                })
+              }}
+            >
+              新增用户
+            </Button>
+          ]}
+        />
+        <UnifiedTransfer
+          visible={this.state.visible}
+          onCancel={()=>{
+            this.setState({
+              visible:false
+            })
+          }}
+        />
+        <AddUser
+          visible={this.state.addUserVisible}
+          onCancel={()=>{
+            this.setState({
+              addUserVisible:false
+            })
+          }}
+        />
+      </>
+    );
+  }
+}
+
+export default Administrators;

+ 18 - 0
src/pages/admin/user/administrators/services/API.ts

@@ -0,0 +1,18 @@
+import { request } from 'umi';
+
+export async function updateAdmin(data: object){
+  return request('/api/admin/superviser/updateAdmin',{
+    method:'post',
+    data
+  })
+}
+
+// 查询上级主管
+export async function getSelectName(name: object){
+  return request('/api/admin/organization/selectName',{
+    method:'post',
+    data:{
+      name
+    }
+  })
+}

+ 64 - 29
src/pages/admin/user/roleManage/components/editRole.jsx

@@ -1,7 +1,7 @@
 import React,{Component} from 'react';
 import ProForm, {ModalForm, ProFormText} from "@ant-design/pro-form";
 import {addRole,getPermissions,getRolePermission} from '../services/API';
-import {Button, message,Tree,Form} from "antd";
+import {Spin, message,Tree,Form} from "antd";
 
 class EditRole extends Component{
   constructor(props) {
@@ -11,9 +11,11 @@ class EditRole extends Component{
       expandedKeys:'',
       checkedKeys: '',
       selectedKeys: '',
-      rolePermission: {},
+      roleNameLoading: false,
+      treeLoading: false,
     }
     this.finishAddRole = this.finishAddRole.bind(this);
+    this.finishUpdataRole = this.finishUpdataRole.bind(this);
     this.onSelect = this.onSelect.bind(this);
     this.onExpand = this.onExpand.bind(this);
     this.onCheck = this.onCheck.bind(this);
@@ -23,7 +25,7 @@ class EditRole extends Component{
 
   finishAddRole= async (value)=>{
     let obj = Object.assign({permissions:this.state.checkedKeys || []},value)
-    message.loading({content:'加中...',key:'finishAddRole'})
+    message.loading({content:'加中...',key:'finishAddRole'})
     const msg = await addRole({data:JSON.stringify(obj)});
     if(msg.error.length === 0){
       message.success({content:'添加成功',key:'finishAddRole',duration:2.5});
@@ -31,6 +33,21 @@ class EditRole extends Component{
       this.props.onCancel();
     }else{
       message.error({content:msg.error[0].message,key:'finishAddRole',duration:2.5});
+      return false;
+    }
+  }
+
+  finishUpdataRole= async (value)=>{
+    value.id = this.props.roleData.id;
+    let obj = Object.assign({permissions:this.state.checkedKeys || []},value)
+    message.loading({content:'修改中...',key:'finishUpdataRole'})
+    const msg = await addRole({data:JSON.stringify(obj)});
+    if(msg.error.length === 0){
+      message.success({content:'修改成功',key:'finishUpdataRole',duration:2.5});
+      this.props.tableRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'finishUpdataRole',duration:2.5});
     }
   }
 
@@ -54,6 +71,9 @@ class EditRole extends Component{
   }
 
   getPermissionsList= async ()=>{
+    this.setState({
+      treeLoading: true,
+    })
     const msg = await getPermissions();
     if(msg.error.length === 0){
       let data = await this.handlePermissionsList(msg.data.one);
@@ -63,6 +83,9 @@ class EditRole extends Component{
     }else{
       message.error(msg.error[0].message)
     }
+    this.setState({
+      treeLoading: false,
+    })
   }
 
   handlePermissionsList=(menuList)=>{
@@ -82,6 +105,10 @@ class EditRole extends Component{
   }
 
   getRolePermission =async ()=>{
+    this.setState({
+      roleNameLoading: true,
+      treeLoading: true,
+    })
     const msg = await getRolePermission(this.props.roleData.id);
     if(msg.error.length === 0){
       let idList=[];
@@ -91,7 +118,6 @@ class EditRole extends Component{
         )
       })
       this.setState({
-        rolePermission:msg.data,
         checkedKeys:idList,
       })
       this.formRef.current.setFieldsValue({
@@ -100,6 +126,10 @@ class EditRole extends Component{
     }else{
       message.error(msg.error[0].message);
     }
+    this.setState({
+      roleNameLoading: false,
+      treeLoading: false,
+    })
   }
 
   componentDidUpdate(prevProps, prevState, snapshot) {
@@ -120,36 +150,41 @@ class EditRole extends Component{
         preserve={false}
         title={roleData?'编辑角色':'添加角色'}
         modalProps={{
-          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+          destroyOnClose: true,
+          onCancel: (e) => {e.stopPropagation();this.setState({checkedKeys:''});this.props.onCancel();},
         }}
-        onFinish={this.finishAddRole}
+        onFinish={roleData?this.finishUpdataRole : this.finishAddRole}
       >
         <ProForm.Group>
-          <ProFormText
-            rules={
-              [{
-                required: true,
-                message: '请输入角色名称!',
-              }]
-            }
-            width="xl"
-            name="roleName"
-            label="角色名称:"
-            placeholder="请输入角色名称"
-          />
+          <Spin spinning={this.state.roleNameLoading}>
+            <ProFormText
+              rules={
+                [{
+                  required: true,
+                  message: '请输入角色名称!',
+                }]
+              }
+              width="xl"
+              name="roleName"
+              label="角色名称:"
+              placeholder="请输入角色名称"
+            />
+          </Spin>
         </ProForm.Group>
         <Form.Item name='tree'>
-          <Tree
-            checkable
-            onExpand={this.onExpand}
-            expandedKeys={this.state.expandedKeys}
-            autoExpandParent={this.state.autoExpandParent}
-            onCheck={this.onCheck}
-            checkedKeys={this.state.checkedKeys}
-            onSelect={this.onSelect}
-            selectedKeys={this.state.selectedKeys}
-            treeData={this.state.permissionsList}
-          />
+          <Spin spinning={this.state.treeLoading}>
+            <Tree
+              checkable
+              onExpand={this.onExpand}
+              expandedKeys={this.state.expandedKeys}
+              autoExpandParent={this.state.autoExpandParent}
+              onCheck={this.onCheck}
+              checkedKeys={this.state.checkedKeys}
+              onSelect={this.onSelect}
+              selectedKeys={this.state.selectedKeys}
+              treeData={this.state.permissionsList}
+            />
+          </Spin>
         </Form.Item>
       </ModalForm>
     )

+ 100 - 0
src/pages/admin/user/roleManage/components/turnover.jsx

@@ -0,0 +1,100 @@
+import React,{Component} from 'react';
+import {roleResources} from '@/utils/dataDic';
+import ProForm, {ModalForm, ProFormCheckbox} from "@ant-design/pro-form";
+import {addResources,getResourcesDetail} from '../services/API';
+import { LoadingOutlined } from '@ant-design/icons';
+import {Form, message,Spin} from "antd";
+
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
+
+class Turnover extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      loading: false
+    }
+    this.addResources = this.addResources.bind(this);
+    this.getResourcesDetail = this.getResourcesDetail.bind(this);
+  }
+
+  addResources= async (value)=>{
+    message.loading({content:'保存中...',key:'addResources'});
+    const msg = await addResources({
+      rid: this.props.roleData.id,
+      resources:value.resources.join(","),
+    });
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addResources',duration:2.5});
+      this.props.tableRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addResources',duration:2.5});
+    }
+  }
+
+  getResourcesDetail= async ()=>{
+    this.setState({
+      loading: true
+    })
+    const msg = await getResourcesDetail(this.props.roleData.id);
+    if(msg.error.length === 0){
+      let resourcesData=[];
+      for(let i=0;i<msg.data.length;i++){
+        resourcesData.push(msg.data[i].resources.toString())
+      }
+      this.formRef.current.setFieldsValue({
+        resources: resourcesData,
+      });
+    }else{
+      message.error(msg.error[0].message);
+    }
+    this.setState({
+      loading: false,
+    })
+  }
+
+  componentDidUpdate(prevProps, prevState, snapshot) {
+    if(!prevProps.visible && this.props.roleData){
+      this.getResourcesDetail();
+    }
+  }
+
+  formRef=React.createRef();
+
+  render() {
+    return(
+      <ModalForm
+        formRef={this.formRef}
+        visible={this.props.visible}
+        preserve={false}
+        title='离职转交配置'
+        modalProps={{
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+        }}
+        onFinish={this.addResources}
+        layout='horizonta'
+      >
+        <Form.Item label="角色名称">
+          <span className="ant-form-text">{this.props.roleData.roleName}</span>
+        </Form.Item>
+        <ProForm.Group>
+          <Spin indicator={antIcon} spinning={this.state.loading}>
+            <ProFormCheckbox.Group
+              rules={[
+                {
+                  required:true,
+                  message:'请选择离职转交配置'
+                }
+              ]}
+              name="resources"
+              label="请选择离职转交配置"
+              options={roleResources}
+            />
+          </Spin>
+        </ProForm.Group>
+      </ModalForm>
+    )
+  }
+}
+
+export default Turnover;

+ 25 - 3
src/pages/admin/user/roleManage/index.jsx

@@ -1,9 +1,11 @@
 import React,{Component} from 'react';
-import {Button, message, Popconfirm, Table} from "antd";
+import {Button, message, Popconfirm} from "antd";
 import DataTable from "@/components/common/DataTable";
 import EditRole from './components/editRole';
 import {PlusOutlined} from "@ant-design/icons";
 import {deleteRole} from './services/API';
+import Turnover from './components/turnover';
+import moment from "moment";
 
 class RoleManage extends Component{
   constructor(props) {
@@ -23,6 +25,9 @@ class RoleManage extends Component{
           title: '创建时间',
           dataIndex: 'createTime',
           key: 'createTime',
+          render: (text)=>(
+            <span>{moment(text).format('YYYY-MM-DD')}</span>
+          )
         },
         {
           title: '离职转交配置',
@@ -30,7 +35,13 @@ class RoleManage extends Component{
           key: 'id',
           render: (text ,record, key ,action)=>{
             return (
-              <Button type='primary'>
+              <Button type='primary' onClick={(e)=>{
+                e.stopPropagation();
+                this.setState({
+                  turnoverVisible: true,
+                  roleDataTurnover: record,
+                })
+              }}>
                 离职转交配置
               </Button>
             )
@@ -57,7 +68,9 @@ class RoleManage extends Component{
         }
       ],
       visible: false,
+      turnoverVisible: false,
       roleData: '',
+      roleDataTurnover: '',
     }
   }
 
@@ -110,7 +123,6 @@ class RoleManage extends Component{
           ]}
         />
         <EditRole
-          key='addRoles'
           roleData={this.state.roleData}
           tableRef={ref}
           visible={this.state.visible}
@@ -120,6 +132,16 @@ class RoleManage extends Component{
               roleData: '',
             })
           }}/>
+          <Turnover
+            roleData={this.state.roleDataTurnover}
+            tableRef={ref}
+            visible={this.state.turnoverVisible}
+            onCancel={()=>{
+              this.setState({
+                turnoverVisible: false,
+                roleDataTurnover: '',
+              })
+            }}/>
       </>
     )
   }

+ 18 - 0
src/pages/admin/user/roleManage/services/API.ts

@@ -29,3 +29,21 @@ export async function getRolePermission(id: string){
   });
 }
 
+// 保存离职资源配置
+export async function addResources(data: object){
+  return request('/api/admin/role/addResources',{
+    method:'post',
+    data
+  });
+}
+
+// 角色离职配置详情
+export async function getResourcesDetail(rid: string){
+  return request('/api/admin/role/ResourcesDetail',{
+    method:'post',
+    data:{
+      rid
+    }
+  });
+}
+

+ 10 - 1
src/services/user.ts

@@ -1,5 +1,4 @@
 import { request } from 'umi';
-import Cookies from 'js-cookie';
 
 export async function query() {
   return request<API.CurrentUser[]>('/api/users');
@@ -24,3 +23,13 @@ export async function selectNavList() {
 export async function queryNotices(): Promise<any> {
   return request<{ data: API.NoticeIconData[] }>('/api/notices');
 }
+
+// 获取角色列表
+export async function getRolesList(){
+  return request('/api/roles');
+}
+
+// 部门
+export async function getSelectSuperId() {
+  return request('/api/admin/organization/selectSuperId');
+}

+ 46 - 1
src/utils/tools.js

@@ -3,7 +3,10 @@ import {
   liquidationStatus,
   approvedState,
   newOrderStatus,
-  invoiceStatus
+  invoiceStatus,
+  post,
+  patternOrganization,
+  station
 } from './dataDic';
 
 // 流程状态
@@ -79,10 +82,52 @@ const getInvoiceStatus = (e, record) => {
   }
 }
 
+// 职务
+const getPost = (e) => {
+  if (e) {
+    let theType = "";
+    post.map((item) => {
+      if (item.value === e) {
+        theType = item.key;
+      }
+    });
+    return theType;
+  }
+}
+
+// 岗位
+const getStation = (e) => {
+  if (e) {
+    let theType = "";
+    station.map((item) => {
+      if (item.value === e) {
+        theType = item.key;
+      }
+    });
+    return theType;
+  }
+}
+
+// 组织类型
+const getPattern = (e) => {
+  if (e) {
+    let theType = "";
+    patternOrganization.map((item) => {
+      if (item.value === e) {
+        theType = item.key;
+      }
+    });
+    return theType;
+  }
+}
+
 export {
   getProcessStatus,
   getLiquidationStatus,
   getApprovedState,
   getNewOrderStatus,
   getInvoiceStatus,
+  getPost,
+  getPattern,
+  getStation
 };