HW 4 年 前
コミット
9a5505483f

+ 5 - 0
config/routes.ts

@@ -21,6 +21,11 @@
     access: 'administrators',
   },
   {
+    path: '/mechanism',
+    component: './admin/organization/mechanism',
+    access: 'mechanism',
+  },
+  {
     path: '/welcome',
     name: 'welcome',
     component: './Welcome',

+ 2 - 0
src/access.ts

@@ -4,6 +4,8 @@ const routers = {
   welcome: false,
   billing: false,
   jurisdiction: false,
+  administrators: false,
+  mechanism: false,
 }
 
 export default function access(initialState: { currentUser?: API.CurrentUser | undefined }) {

+ 348 - 0
src/pages/admin/organization/mechanism/components/addOrganization/index.jsx

@@ -0,0 +1,348 @@
+import React,{Component} from 'react';
+import {AutoComplete, Form, message, Spin, Select, Modal} from "antd";
+import { LoadingOutlined,ExclamationCircleOutlined } from '@ant-design/icons';
+import ProForm, {ModalForm, ProFormSelect, ProFormText, ProFormTextArea} from "@ant-design/pro-form";
+import {getSelectSuperId} from "@/services/user";
+import {addOrganization,getSelectAllById,getSelectName,updateOrganization} from '../../services/API';
+import {patternOrganization,conditionOrganization} from '@/utils/dataDic';
+import {citySelect} from '@/utils/tools';
+
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
+const confirm = Modal.confirm;
+const { Option } = AutoComplete;
+
+class AddOrganization extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      loading: false,
+      modules: [],
+      financeList: [],
+      depNo: '',
+      createTime: '',
+      createId: '',
+      superId: '',
+      departmentList: [],
+    }
+    this.addOrganization = this.addOrganization.bind(this);
+    this.updateOrganization = this.updateOrganization.bind(this);
+  }
+
+  addOrganization= async (value)=>{
+    message.loading({content:'保存中...',key:'addOrganization'})
+    const msg = await addOrganization(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addOrganization',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addOrganization',duration:2.5})
+    }
+  }
+
+  updateOrganization= async (value)=>{
+    let statusLv = value.status === '1';
+    let superIdLv = value.superId !== this.state.superId;
+    let _this = this;
+    if(statusLv || superIdLv){
+      confirm({
+        title:'修改提醒',
+        icon: <ExclamationCircleOutlined />,
+        content: statusLv && superIdLv ? '确定要修改该组织的上级组织并且解散该部门吗?' : statusLv ? '确定要解散该部门吗?' : '确定要修改该组织的上级组织吗?',
+        onOk() {
+          _this.setUpdateOrganization(value);
+        }
+      })
+    }else{
+      this.setUpdateOrganization(value);
+    }
+  }
+
+  // 部门
+  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)
+    }
+    this.setState({
+      departmentList : theArr
+    })
+    return theArr;
+  }
+
+  setUpdateOrganization= async (value)=>{
+    message.loading({content:'保存中...',key:'updateOrganization'});
+    value.id = this.props.organizationInfor.id;
+    let arr = this.state.departmentList.filter(v=>v.value === value.superId || v.label === value.superId) || [];
+    value.superId = arr[0].value;
+    const msg = await updateOrganization(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'updateOrganization',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'updateOrganization',duration:2.5})
+    }
+  }
+
+  getType=async ()=>{
+    return [
+      {
+        label:'公司',
+        value: '0',
+      },
+      {
+        label:'部门',
+        value: '1',
+      },
+      {
+        label:'团队',
+        value: '2',
+      }
+    ]
+  }
+
+  async componentDidMount() {
+    await this.getModules('');
+    await this.getFinanceList('');
+   if(this.props.organizationInfor){
+    await this.getSelectAllById();
+   }
+  }
+
+  getSelectAllById= async ()=>{
+    this.setState({
+      loading: true
+    })
+    const msg = await getSelectAllById(this.props.organizationInfor.id);
+    if(msg && Object.keys(msg).length !== 0){
+      this.formRef.current.setFieldsValue({
+        name: msg.name,
+        managerId: msg.managerId,
+        type: msg.type,
+        superId: msg.superId,
+        remarks: msg.remarks || '该组织没有职能说明,请完善!',
+        status: msg.status,
+        province: msg.province,
+        abbreviation: msg.abbreviation,
+        financeId: msg.financeId,
+      });
+      this.setState({
+        superId:msg.superId
+      })
+      this.setState({
+        depNo: msg.depNo,
+        createTime: msg.createTime,
+        createId: msg.createId
+      })
+    }else{
+      message.error(msg.error.message);
+    }
+    this.setState({
+      loading: false
+    })
+  }
+
+
+
+  getModules=async (value)=>{
+    const msg = await getSelectName(value);
+    if(msg.error.length === 0){
+      let theArr = [];
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.name,
+          value: item.id
+        });
+      });
+      this.setState({
+        modules: theArr
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+  getFinanceList=async (value)=>{
+    const msg = await getSelectName(value);
+    if(msg.error.length === 0){
+      let theArr = [];
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.name,
+          value: item.id
+        });
+      });
+      this.setState({
+        financeList: theArr
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+
+  formRef = React.createRef();
+
+  render() {
+    return (
+      <ModalForm
+        formRef={this.formRef}
+        visible={this.props.visible}
+        preserve={false}
+        title={this.props.organizationInfor ? '编辑组织' : '新建组织'}
+        modalProps={{
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();this.setState({fileList:[]})},
+        }}
+        onFinish={this.props.organizationInfor ? this.updateOrganization : this.addOrganization}
+      >
+        <Spin spinning={this.state.loading} indicator={antIcon}>
+          {this.props.organizationInfor &&
+          <div style={{display:'flex',alientItem:'center',paddingBottom:'25px'}}>
+            <div style={{paddingRight:'35px'}}>
+              <span>组织编号:</span>
+              <span style={{paddingLeft:'15px'}}>{this.state.depNo}</span>
+            </div>
+            <div style={{paddingRight:'35px'}}>
+              <span>创建人:</span>
+              <span style={{paddingLeft:'15px'}}>{this.state.createId}</span>
+            </div>
+            <div>
+              <span>创建时间:</span>
+              <span style={{paddingLeft:'15px'}}>{this.state.createTime}</span>
+            </div>
+          </div>
+          }
+          <ProForm.Group>
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入组织名称'
+                }
+              ]}
+              placeholder="请输入组织名称"
+              name="name"
+              label="组织名称"/>
+            <Form.Item
+              name="managerId"
+              label="负责人"
+            >
+              <Select
+                showSearch
+                allowClear
+                style={{width:'328px'}}
+                options={this.state.modules}
+                onSearch={this.getModules}
+                optionFilterProp="label"
+                placeholder="请选择负责人"
+              />
+            </Form.Item>
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormSelect
+              width="m"
+              label='组织类型'
+              name="type"
+              placeholder="请选择组织类型"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择组织类型'
+                }
+              ]}
+              valueEnum={
+                {
+                  '0':'公司',
+                  '1':'部门',
+                  '2':'团队',
+                }}/>
+            <ProFormSelect
+              width="m"
+              label='上级组织'
+              name="superId"
+              placeholder="请选择上级组织"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择上级组织'
+                }
+              ]}
+              request={this.departmentList}/>
+          </ProForm.Group>
+          {this.props.organizationInfor &&
+            <>
+              <ProForm.Group>
+                <ProFormSelect
+                  width="m"
+                  label='组织状态'
+                  name="status"
+                  placeholder="请选择组织状态"
+                  rules={[
+                    {
+                      required:true,
+                      message:'请选择组织状态'
+                    }
+                  ]}
+                  request={async ()=>{
+                    return conditionOrganization;
+                  }}/>
+                <ProFormSelect
+                  width="m"
+                  label='省份'
+                  name="province"
+                  placeholder="请选择省份"
+                  request={citySelect}/>
+              </ProForm.Group>
+              <ProForm.Group>
+                <ProFormText
+                  width="m"
+                  placeholder="请输入缩写"
+                  name="abbreviation"
+                  label="缩写"/>
+                <Form.Item
+                  name="financeId"
+                  label="财务负责人"
+                >
+                  <Select
+                    showSearch
+                    allowClear
+                    rules={[
+                      {
+                        required:true,
+                        message:'请输入财务负责人'
+                      }
+                    ]}
+                    style={{width:'328px'}}
+                    options={this.state.financeList}
+                    onSearch={this.getFinanceList}
+                    optionFilterProp="label"
+                    placeholder="请输入财务负责人"
+                  />
+                </Form.Item>
+              </ProForm.Group>
+            </>
+          }
+          <ProForm.Group>
+            <ProFormTextArea
+              width="m"
+              placeholder="请输入组织职能说明"
+              name="remarks"
+              label="组织职能说明"/>
+          </ProForm.Group>
+        </Spin>
+      </ModalForm>
+    )
+  }
+}
+
+export default AddOrganization;

+ 181 - 0
src/pages/admin/organization/mechanism/index.jsx

@@ -0,0 +1,181 @@
+import React,{Component} from 'react';
+import {Button, message, Popconfirm} from "antd";
+import {getPattern,getCondition} from '@/utils/tools';
+import DataTable from "@/components/common/DataTable";
+import {ProFormSelect} from "@ant-design/pro-form";
+import {getSelectSuperId} from "@/services/user";
+import AddOrganization from './components/addOrganization';
+import {deleteById} from './services/API';
+
+// 部门
+const departmentList = async() => {
+  const msg = await getSelectSuperId();
+  if(msg.error.length === 0){
+    let theArr = [];
+    msg.data.forEach((item) => {
+      theArr.push({
+        label: item.name,
+        value: item.id
+      });
+    });
+    return theArr;
+  }else{
+    message.info(msg.error[0].message)
+  }
+  return [];
+}
+
+class Mechanism extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns: [
+        {
+          title: '组织编号',
+          dataIndex: 'depNo',
+          key: 'depNo',
+          searchBool: true,
+        }, {
+          title: '组织名称',
+          dataIndex: 'name',
+          key: 'name',
+          searchBool: true,
+        }, {
+          title: '负责人',
+          dataIndex: 'managerName',
+          key: 'managerName',
+        },{
+          title: '组织类型',
+          dataIndex: 'type',
+          key: 'type',
+          searchBool: true,
+          render: text => { return getPattern(text) },
+          renderFormItem: () => {
+            return (
+              <ProFormSelect label='' request={this.getType}/>
+            );
+          },
+        },  {
+          title: '上级组织',
+          dataIndex: 'superName',
+          key: 'superId',
+          searchBool: true,
+          renderFormItem: () => {
+            return (
+              <ProFormSelect label='' request={departmentList}/>
+            );
+          },
+        },{
+          title: '组织状态',
+          dataIndex: 'status',
+          key: 'status',
+          render: text => { return getCondition(text) }
+        },{
+          title: '操作',
+          dataIndex: 'id',
+          key: 'id',
+          render: (text,record,key,action) => { return (
+            <Popconfirm
+              title="是否删除?"
+              onConfirm={(e)=>{e.stopPropagation();this.deleteById(text,action)}}
+              onCancel={(e)=>{e.stopPropagation();}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+                <Button type='primary' danger onClick={(e)=>e.stopPropagation()}>删除</Button>
+            </Popconfirm>
+          ) }
+        }
+      ],
+      visible: false,
+      organizationInfor: '',
+    }
+  }
+
+  getType=async ()=>{
+    return [
+      {
+        label:'公司',
+        value: 0,
+      },
+      {
+        label:'部门',
+        value: 1,
+      },
+      {
+        label:'团队',
+        value: 2,
+      }
+    ]
+  }
+
+  deleteById=async (id,action)=>{
+    message.loading({content:'删除中...',key:'deleteById'})
+    const msg = await deleteById(id);
+    if(msg.error.length === 0){
+      message.success({content:'删除成功',key:'deleteById',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'deleteById',duration:2.5});
+    }
+  }
+
+  render() {
+    const ref = React.createRef();
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          headerTitle='角色管理'
+          url='/api/admin/organization/listOrganizationManagement'
+          method='post'
+          rowKey='id'
+          scroll={{x:1000}}
+          columns={this.state.columns}
+          search={{
+            filterType: 'query',
+            labelWidth: 'auto',
+            defaultCollapsed: false,
+          }}
+          onRow={(record) => ({
+            onClick: (e) => {
+              e.stopPropagation();
+              this.setState({
+                visible: true,
+                organizationInfor: record,
+              })
+            }
+          })}
+          toolBarRender={[
+            <Button
+              type='primary'
+              key='addUser'
+              onClick={(e)=>{
+                e.stopPropagation();
+                this.setState({
+                  visible: true,
+                  organizationInfor: ''
+                })
+              }}
+            >
+              新增组织
+            </Button>
+          ]}
+        />
+        {this.state.visible && <AddOrganization
+          formRef={ref}
+          organizationInfor={this.state.organizationInfor}
+          visible={this.state.visible}
+          onCancel={()=>{
+            this.setState({
+              visible: false,
+              organizationInfor: ''
+            })
+          }}
+        /> }
+      </>
+    )
+  }
+}
+
+export default Mechanism;

+ 47 - 0
src/pages/admin/organization/mechanism/services/API.ts

@@ -0,0 +1,47 @@
+import {request} from 'umi';
+
+// 新增组织
+export async function addOrganization(data: object){
+  return request('/api/admin/organization/addOrganization',{
+    method:'post',
+    data
+  })
+}
+
+// 删除组织
+export async function deleteById(id: string){
+  return request('/api/admin/organization/deleteById',{
+    method:'post',
+    data:{
+      id
+    }
+  })
+}
+
+// 获取组织详情
+export async function getSelectAllById(id: string){
+  return request('/api/admin/organization/selectAllById',{
+    method:'post',
+    data:{
+      id
+    }
+  })
+}
+
+// 查询上级主管
+export async function getSelectName(name: string){
+  return request('/api/admin/organization/selectName',{
+    method:'post',
+    data:{
+      name
+    }
+  })
+}
+
+// 更新组织
+export async function updateOrganization(data: object){
+  return request('/api/admin/organization/updateOrganization',{
+    method:'post',
+    data
+  })
+}

+ 65 - 55
src/pages/admin/user/administrators/compenents/addUser.jsx

@@ -1,14 +1,16 @@
 import React,{Component} from 'react';
-import {AutoComplete, Form, message} from "antd";
+import {AutoComplete, Form, message, Spin} from "antd";
 import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
 import {post, station,cityArr} from "@/utils/dataDic";
 import {splitUrl} from '@/utils/tools';
 import {getSelectSuperId,getRolesList} from "@/services/user";
 import {connectModel} from "@/services/common";
 import ImgOperation from "@/components/common/ImgOperation";
+import { LoadingOutlined } from '@ant-design/icons';
 import {getSelectName,setInsertAdmin,getNewId,getSelectAllByid,getUserRole,updateAdmin} from '../services/API';
 
 const { Option } = AutoComplete;
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
 
 @connectModel('test', '@@initialState')
 class AddUser extends Component{
@@ -245,9 +247,15 @@ class AddUser extends Component{
     if(!this.props.userId){
       this.getNewId();
     }else if(this.props.userId){
+      this.setState({
+        loading: true,
+      });
       await this.handleSearchModule('');
       await this.getUserRole(this.props.userId);
       await this.getSelectAllByid(this.props.userId);
+      this.setState({
+        loading: false,
+      });
     }
   }
 
@@ -266,6 +274,7 @@ class AddUser extends Component{
         }}
         onFinish={userId ? this.updateAdmin : this.addUser}
       >
+        <Spin spinning={this.state.loading} indicator={antIcon}>
           <ProForm.Group>
             <ProFormText
               width="m"
@@ -331,60 +340,60 @@ class AddUser extends Component{
                 ))}
               </AutoComplete>
             </Form.Item>
-          <ProForm.Group>
-            <ProFormSelect
-              width="m"
-              rules={[
-                {
-                  required:true,
-                  message:'请选择组织部门'
-                }
-              ]}
-              placeholder="请选择组织部门"
-              label='组织部门'
-              name="departmentId"
-              request={this.departmentList}/>
-            <ProFormSelect
-              width="m"
-              placeholder="请选择职务"
-              label='职务'
-              name="duty"
-              request={this.getPost}/>
-          </ProForm.Group>
-          <ProForm.Group>
-            <ProFormSelect
-              width="m"
-              placeholder="请选择岗位"
-              label='岗位'
-              name="position"
-              request={this.getStation}/>
-            <ProFormText
-              width="m"
-              rules={[
-                {
-                  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>
-            <ProFormText
-              width="m"
-              rules={[
-                {
-                  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"
+                placeholder="请选择职务"
+                label='职务'
+                name="duty"
+                request={this.getPost}/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormSelect
+                width="m"
+                placeholder="请选择岗位"
+                label='岗位'
+                name="position"
+                request={this.getStation}/>
+              <ProFormText
+                width="m"
+                rules={[
+                  {
+                    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>
+              <ProFormText
+                width="m"
+                rules={[
+                  {
+                    pattern: /^1\d{10}$/,
+                    message: '不合法的手机号格式!',
+                  }
+                ]}
+                placeholder="请输入手机号"
+                name="contactMobile"
+                label="联系方式"
+              />
+            </ProForm.Group>
             <ProFormSelect
               mode="multiple"
               allowClear
@@ -433,6 +442,7 @@ class AddUser extends Component{
               />
             </Form.Item>
           </ProForm.Group>
+        </Spin>
       </ModalForm>
     )
   }

+ 1 - 1
src/pages/admin/user/administrators/index.jsx

@@ -270,7 +270,7 @@ class Administrators extends Component {
           headerTitle='角色管理'
           url='/api/admin/superviser/adminList'
           rowKey='id'
-          scroll={{x:1400}}
+          scroll={{x:1500}}
           columns={this.state.columns}
           search={{
             filterType: 'query',

File diff suppressed because it is too large
+ 13369 - 2
src/utils/dataDic.js


+ 43 - 1
src/utils/tools.js

@@ -6,7 +6,9 @@ import {
   invoiceStatus,
   post,
   patternOrganization,
-  station
+  station,
+  conditionOrganization,
+  addressList
 } from './dataDic';
 
 // 流程状态
@@ -121,6 +123,19 @@ const getPattern = (e) => {
   }
 }
 
+// 组织状态
+const getCondition = (e) => {
+  if (e) {
+    let theType = "";
+    conditionOrganization.map((item) => {
+      if (item.value === e) {
+        theType = item.label;
+      }
+    });
+    return theType;
+  }
+}
+
 // 处理图片地址
 const splitUrl = (string, i, url) => {
   let theList = [];
@@ -142,6 +157,31 @@ const splitUrl = (string, i, url) => {
   return {fileList:theList};
 }
 
+const citySelect = () => {
+  let option = [];
+  addressList.map((item, i) => {
+    if (item.cityList.length) {
+      let cityArr = [];
+      item.cityList.map((city, n) => {
+        cityArr.push({
+          value: city.id,
+          label: city.name
+        });
+      });
+      option.push({
+        value: item.id,
+        label: item.name,
+      });
+    } else {
+      option.push({
+        value: item.id,
+        label: item.name
+      });
+    };
+  });
+  return option;
+}
+
 export {
   getProcessStatus,
   getLiquidationStatus,
@@ -152,4 +192,6 @@ export {
   getPattern,
   getStation,
   splitUrl,
+  getCondition,
+  citySelect,
 };