|
@@ -1,15 +1,16 @@
|
|
|
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 {AutoComplete, Form, message} 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 {selectName} from "@/pages/admin/user/jurisdiction/services/API";
|
|
|
-import {getSelectName} from '../services/API';
|
|
|
+import {getSelectName,setInsertAdmin,getNewId,getSelectAllByid,getUserRole,updateAdmin} from '../services/API';
|
|
|
|
|
|
const { Option } = AutoComplete;
|
|
|
|
|
|
+@connectModel('test', '@@initialState')
|
|
|
class AddUser extends Component{
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
@@ -18,14 +19,87 @@ class AddUser extends Component{
|
|
|
fileList: [],
|
|
|
uploadImgLoading: false,
|
|
|
modules: [],
|
|
|
+ addId: '',
|
|
|
+ details: {},
|
|
|
}
|
|
|
this.handleSearchModule= this.handleSearchModule.bind(this);
|
|
|
}
|
|
|
|
|
|
- addUser= async ()=>{
|
|
|
+ addUser= async (value) =>{
|
|
|
if(this.state.uploadImgLoading){
|
|
|
message.info('有图片正在上传中,请稍后');
|
|
|
- return;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ let superiorId ='';
|
|
|
+ if(value.superiorId){
|
|
|
+ let arr = this.state.modules.filter(v=>v.name === value.superiorId);
|
|
|
+ if(arr.length){
|
|
|
+ superiorId = arr[0].id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ message.loading({content:'保存中...',key:'addUser'})
|
|
|
+ const msg = await setInsertAdmin({
|
|
|
+ roles:value.roles,
|
|
|
+ data:JSON.stringify({
|
|
|
+ id:this.state.addId,
|
|
|
+ email:value.email,
|
|
|
+ position:value.position,
|
|
|
+ mobile:value.mobile,
|
|
|
+ status:'正常',
|
|
|
+ contactMobile:value.contactMobile,
|
|
|
+ name:value.name,
|
|
|
+ duty:value.duty,
|
|
|
+ headPortraitUrl:value.headPortraitUrl.fileList[0].response.data,
|
|
|
+ departmentId:this.props.test.initialState.globalConfig.adminData.isSuperAdmin?value.departmentId:this.props.test.initialState.globalConfig.adminData.departmentId,
|
|
|
+ superiorId:superiorId,
|
|
|
+ district:value.district,
|
|
|
+ })
|
|
|
+ });
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ message.success({content:'保存成功',key:'addUser',duration:2.5});
|
|
|
+ this.props.onCancel();
|
|
|
+ this.props.tableRef.current.reload();
|
|
|
+ }else{
|
|
|
+ message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ updateAdmin= async (value)=>{
|
|
|
+ if(this.state.uploadImgLoading){
|
|
|
+ message.info('有图片正在上传中,请稍后');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ let superiorId ='';
|
|
|
+ if(value.superiorId){
|
|
|
+ let arr = this.state.modules.filter(v=>v.name === value.superiorId);
|
|
|
+ if(arr.length){
|
|
|
+ superiorId = arr[0].id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ message.loading({content:'保存中...',key:'addUser'})
|
|
|
+ const msg = await updateAdmin({
|
|
|
+ roles:value.roles,
|
|
|
+ data:JSON.stringify({
|
|
|
+ id:this.props.userId,
|
|
|
+ email:value.email,
|
|
|
+ position:value.position,
|
|
|
+ mobile:value.mobile,
|
|
|
+ status: value.status,
|
|
|
+ contactMobile:value.contactMobile,
|
|
|
+ name:value.name,
|
|
|
+ duty:value.duty,
|
|
|
+ headPortraitUrl:value.headPortraitUrl ? value.headPortraitUrl.fileList[0].response.data : '',
|
|
|
+ departmentId:this.props.test.initialState.globalConfig.adminData.isSuperAdmin?value.departmentId:this.props.test.initialState.globalConfig.adminData.departmentId,
|
|
|
+ superiorId:superiorId,
|
|
|
+ district:value.district,
|
|
|
+ })
|
|
|
+ });
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ message.success({content:'保存成功',key:'addUser',duration:2.5});
|
|
|
+ this.props.onCancel();
|
|
|
+ this.props.tableRef.current.reload();
|
|
|
+ }else{
|
|
|
+ message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -45,6 +119,23 @@ class AddUser extends Component{
|
|
|
return post;
|
|
|
}
|
|
|
|
|
|
+ getStatus = async () =>{
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ label: '正常',
|
|
|
+ value: '正常',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '注销',
|
|
|
+ value: '注销',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '锁定',
|
|
|
+ value: '锁定',
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
getCityArr = async () => {
|
|
|
cityArr.map((v)=>{
|
|
|
v.label = v.key;
|
|
@@ -59,7 +150,7 @@ class AddUser extends Component{
|
|
|
if(msg.error.length === 0){
|
|
|
msg.data.forEach((item) => {
|
|
|
theArr.push({
|
|
|
- label: item.name,
|
|
|
+ label: item.roleName,
|
|
|
value: item.id
|
|
|
});
|
|
|
});
|
|
@@ -96,19 +187,84 @@ class AddUser extends Component{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ getNewId= async ()=>{
|
|
|
+ const msg = await getNewId();
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ this.setState({
|
|
|
+ addId: msg.data
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ message.error(msg.error[0].message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ getUserRole= async (id)=>{
|
|
|
+ const msg = await getUserRole(id);
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ this.formRef.current.setFieldsValue({
|
|
|
+ roles: msg.data,
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ message.error(msg.error[0].message);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ getSelectAllByid= async (id)=>{
|
|
|
+ const msg = await getSelectAllByid(id);
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ this.setState({
|
|
|
+ details: msg.data,
|
|
|
+ fileList: msg.data.headPortraitUrl? splitUrl(msg.data.headPortraitUrl, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload').fileList : []
|
|
|
+ })
|
|
|
+ let superiorId ='';
|
|
|
+ if(msg.data.superiorId){
|
|
|
+ let arr = this.state.modules.filter(v=>v.id === msg.data.superiorId);
|
|
|
+ if(arr.length){
|
|
|
+ superiorId = arr[0].name
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.formRef.current.setFieldsValue({
|
|
|
+ email:msg.data.email,
|
|
|
+ position:msg.data.position,
|
|
|
+ mobile:msg.data.mobile,
|
|
|
+ status: msg.data.status,
|
|
|
+ contactMobile:msg.data.contactMobile,
|
|
|
+ name:msg.data.name,
|
|
|
+ duty:msg.data.duty,
|
|
|
+ headPortraitUrl:msg.data.headPortraitUrl? splitUrl(msg.data.headPortraitUrl, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload') : '',
|
|
|
+ departmentId:msg.data.departmentId,
|
|
|
+ superiorId: superiorId,
|
|
|
+ district:msg.data.district ? JSON.parse(msg.data.district) : null,
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ message.error(msg.error.message);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async componentDidMount() {
|
|
|
+ if(!this.props.userId){
|
|
|
+ this.getNewId();
|
|
|
+ }else if(this.props.userId){
|
|
|
+ await this.handleSearchModule('');
|
|
|
+ await this.getUserRole(this.props.userId);
|
|
|
+ await this.getSelectAllByid(this.props.userId);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
formRef = React.createRef();
|
|
|
|
|
|
render() {
|
|
|
+ const {userId} = this.props;
|
|
|
return (
|
|
|
<ModalForm
|
|
|
formRef={this.formRef}
|
|
|
visible={this.props.visible}
|
|
|
preserve={false}
|
|
|
- title='新建用户'
|
|
|
+ title={userId ? '编辑用户': '新建用户'}
|
|
|
modalProps={{
|
|
|
- onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
|
|
|
+ onCancel: (e) => {e.stopPropagation();this.props.onCancel();this.setState({fileList:[]})},
|
|
|
}}
|
|
|
- onFinish={this.addUser}
|
|
|
+ onFinish={userId ? this.updateAdmin : this.addUser}
|
|
|
>
|
|
|
<ProForm.Group>
|
|
|
<ProFormText
|
|
@@ -124,6 +280,8 @@ class AddUser extends Component{
|
|
|
label="用户名"
|
|
|
/>
|
|
|
<ProFormSelect
|
|
|
+ mode="multiple"
|
|
|
+ allowClear
|
|
|
width="m"
|
|
|
rules={[
|
|
|
{
|
|
@@ -149,23 +307,30 @@ class AddUser extends Component{
|
|
|
name="name"
|
|
|
label="用户姓名"
|
|
|
/>
|
|
|
- <ProFormText
|
|
|
- width="m"
|
|
|
+ <Form.Item
|
|
|
rules={[
|
|
|
{
|
|
|
required:true,
|
|
|
- message:'请输入联系方式'
|
|
|
- },
|
|
|
- {
|
|
|
- pattern: /^1\d{10}$/,
|
|
|
- message: '不合法的手机号格式!',
|
|
|
+ message:'请选择上级主管'
|
|
|
}
|
|
|
]}
|
|
|
- placeholder="请输入手机号"
|
|
|
- name="contactMobile"
|
|
|
- label="联系方式"
|
|
|
- />
|
|
|
- </ProForm.Group>
|
|
|
+ label="上级主管"
|
|
|
+ name='superiorId'
|
|
|
+ >
|
|
|
+ <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>
|
|
|
<ProForm.Group>
|
|
|
<ProFormSelect
|
|
|
width="m"
|
|
@@ -181,12 +346,6 @@ class AddUser extends Component{
|
|
|
request={this.departmentList}/>
|
|
|
<ProFormSelect
|
|
|
width="m"
|
|
|
- rules={[
|
|
|
- {
|
|
|
- required:true,
|
|
|
- message:'请选择职务'
|
|
|
- }
|
|
|
- ]}
|
|
|
placeholder="请选择职务"
|
|
|
label='职务'
|
|
|
name="duty"
|
|
@@ -195,12 +354,6 @@ class AddUser extends Component{
|
|
|
<ProForm.Group>
|
|
|
<ProFormSelect
|
|
|
width="m"
|
|
|
- rules={[
|
|
|
- {
|
|
|
- required:true,
|
|
|
- message:'请选择岗位'
|
|
|
- }
|
|
|
- ]}
|
|
|
placeholder="请选择岗位"
|
|
|
label='岗位'
|
|
|
name="position"
|
|
@@ -209,10 +362,6 @@ class AddUser extends Component{
|
|
|
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: '不合法的邮箱格式!',
|
|
|
},
|
|
@@ -223,54 +372,52 @@ class AddUser extends Component{
|
|
|
/>
|
|
|
</ProForm.Group>
|
|
|
<ProForm.Group>
|
|
|
- <Form.Item
|
|
|
+ <ProFormText
|
|
|
+ width="m"
|
|
|
rules={[
|
|
|
{
|
|
|
- required:true,
|
|
|
- message:'请选择上级主管'
|
|
|
+ pattern: /^1\d{10}$/,
|
|
|
+ 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>
|
|
|
+ placeholder="请输入手机号"
|
|
|
+ name="contactMobile"
|
|
|
+ label="联系方式"
|
|
|
+ />
|
|
|
+ </ProForm.Group>
|
|
|
<ProFormSelect
|
|
|
mode="multiple"
|
|
|
allowClear
|
|
|
width="m"
|
|
|
+ placeholder="请选择地区"
|
|
|
+ label='地区'
|
|
|
+ name="district"
|
|
|
+ request={this.getCityArr}/>
|
|
|
+ </ProForm.Group>
|
|
|
+ <ProForm.Group>
|
|
|
+ {userId && <ProFormSelect
|
|
|
+ width="m"
|
|
|
rules={[
|
|
|
{
|
|
|
required:true,
|
|
|
- message:'请选择地区'
|
|
|
+ message:'请选择用户状态'
|
|
|
}
|
|
|
]}
|
|
|
- placeholder="请选择地区"
|
|
|
- label='地区'
|
|
|
- name="district"
|
|
|
- request={this.getCityArr}/>
|
|
|
+ placeholder="请选择用户状态"
|
|
|
+ label='用户状态'
|
|
|
+ name="status"
|
|
|
+ request={this.getStatus}/>}
|
|
|
</ProForm.Group>
|
|
|
<ProForm.Group>
|
|
|
- <Form.Item label='用户头像' name="orgCodeUrl" extra="图片建议:要清晰。">
|
|
|
+ <Form.Item label='用户头像' name="headPortraitUrl" extra="图片建议:要清晰。">
|
|
|
<ImgOperation
|
|
|
domId='uploadAdminImg'
|
|
|
uploadConfig={{
|
|
|
action:'/api/admin/superviser/uploadAdminImg',
|
|
|
- multiple:true,
|
|
|
+ multiple:false,
|
|
|
data:{ 'sign': this.props.pictureSign || '' },
|
|
|
listType:"picture-card",
|
|
|
+ maxCount:1
|
|
|
}}
|
|
|
onChange={(infor)=>{
|
|
|
this.setState({
|