Sword/src/pages/System/User/UserEdit.js

323 lines
11 KiB
JavaScript

import React, { PureComponent } from 'react';
import { Form, Input, Card, Row, Col, Button, TreeSelect, DatePicker, Select } from 'antd';
import moment from 'moment';
import { connect } from 'dva';
import Panel from '../../../components/Panel';
import func from '../../../utils/Func';
import styles from '../../../layouts/Sword.less';
import { USER_CHANGE_INIT, USER_DETAIL, USER_UPDATE } from '../../../actions/user';
import { tenantMode } from '../../../defaultSettings';
const FormItem = Form.Item;
@connect(({ user, loading }) => ({
user,
submitting: loading.effects['user/submit'],
}))
@Form.create()
class UserEdit extends PureComponent {
componentWillMount() {
const {
dispatch,
match: {
params: { id },
},
} = this.props;
dispatch(USER_DETAIL(id)).then(()=>{
const {
user: { detail },
} = this.props;
dispatch(USER_CHANGE_INIT({ tenantId: detail.tenantId }));
});
}
handleSubmit = e => {
e.preventDefault();
const {
dispatch,
match: {
params: { id },
},
form,
} = this.props;
form.validateFieldsAndScroll((err, values) => {
if (!err) {
const params = {
id,
...values,
roleId: func.join(values.roleId),
deptId: func.join(values.deptId),
postId: func.join(values.postId),
birthday: func.format(values.birthday),
};
dispatch(USER_UPDATE(params));
}
});
};
handleChange = value => {
const { dispatch, form } = this.props;
form.resetFields(['roleId', 'deptId', 'postId']);
dispatch(USER_CHANGE_INIT({ tenantId: value }));
};
render() {
const {
form: { getFieldDecorator },
user: {
detail,
init: { roleTree, deptTree, postList, tenantList },
},
submitting,
} = this.props;
const formItemLayout = {
labelCol: {
span: 8,
},
wrapperCol: {
span: 16,
},
};
const formAllItemLayout = {
labelCol: {
span: 4,
},
wrapperCol: {
span: 20,
},
};
const action = (
<Button type="primary" onClick={this.handleSubmit} loading={submitting}>
提交
</Button>
);
return (
<Panel title="修改" back="/system/user" action={action}>
<Form hideRequiredMark style={{ marginTop: 8 }}>
<Card title="基本信息" className={styles.card} bordered={false}>
<Row gutter={24}>
<Col span={20}>
<FormItem {...formAllItemLayout} label="登录账号">
{getFieldDecorator('account', {
rules: [
{
required: true,
message: '请输入登录账号',
},
],
initialValue: detail.account,
})(<Input placeholder="请输入登录账号" />)}
</FormItem>
</Col>
</Row>
{tenantMode ? (
<Row gutter={24}>
<Col span={20}>
<FormItem {...formAllItemLayout} label="所属租户">
{getFieldDecorator('tenantId', {
rules: [
{
required: true,
message: '请选择所属租户',
},
],
initialValue: detail.tenantId,
})(
<Select
showSearch
onChange={this.handleChange}
filterOption={(input, option) =>
option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}
allowClear
placeholder="请选择所属租户"
>
{tenantList.map(d => (
<Select.Option key={d.tenantId} value={d.tenantId}>
{d.tenantName}
</Select.Option>
))}
</Select>
)}
</FormItem>
</Col>
</Row>
) : null}
<Row gutter={24}>
<Col span={10}>
<FormItem {...formItemLayout} label="用户昵称">
{getFieldDecorator('name', {
rules: [
{
required: true,
message: '请输入用户昵称',
},
],
initialValue: detail.name,
})(<Input placeholder="请输入用户昵称" />)}
</FormItem>
</Col>
<Col span={10}>
<FormItem {...formItemLayout} label="用户姓名">
{getFieldDecorator('realName', {
rules: [
{
required: true,
message: '请输入用户姓名',
},
],
initialValue: detail.realName,
})(<Input placeholder="请输入用户姓名" />)}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span={10}>
<FormItem {...formItemLayout} label="所属角色">
{getFieldDecorator('roleId', {
rules: [
{
required: true,
message: '请选择所属角色',
},
],
initialValue: func.split(detail.roleId),
})(
<TreeSelect
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
treeData={roleTree}
allowClear
showSearch
treeNodeFilterProp="title"
multiple
placeholder="请选择所属角色"
/>
)}
</FormItem>
</Col>
<Col span={10}>
<FormItem {...formItemLayout} label="所属部门">
{getFieldDecorator('deptId', {
rules: [
{
required: true,
message: '请选择所属部门',
},
],
initialValue: func.split(detail.deptId),
})(
<TreeSelect
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
treeData={deptTree}
allowClear
showSearch
treeNodeFilterProp="title"
multiple
placeholder="请选择所属部门"
/>
)}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span={10}>
<FormItem {...formItemLayout} label="用户编号">
{getFieldDecorator('code', {
initialValue: detail.code
})(<Input placeholder="请输入用户编号" />)}
</FormItem>
</Col>
<Col span={10}>
<FormItem {...formItemLayout} label="所属岗位">
{getFieldDecorator('postId', {
rules: [
{
required: true,
message: '请选择所属岗位',
},
],
initialValue: func.split(detail.postId),
})(
<Select
mode="multiple"
showSearch
filterOption={(input, option) =>
option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}
allowClear
placeholder="请选择所属岗位"
>
{postList.map(d => (
<Select.Option key={d.id} value={d.id}>
{d.postName}
</Select.Option>
))}
</Select>
)}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span={10}>
<FormItem {...formItemLayout} label="手机号码">
{getFieldDecorator('phone', {
initialValue: detail.phone,
})(<Input placeholder="请输入手机号码" />)}
</FormItem>
</Col>
<Col span={10}>
<FormItem {...formItemLayout} label="电子邮箱">
{getFieldDecorator('email', {
initialValue: detail.email,
})(<Input placeholder="请输入电子邮箱" />)}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span={10}>
<FormItem {...formItemLayout} label="用户性别">
{getFieldDecorator('sex', {
initialValue: detail.sex,
})(
<Select placeholder="请选择用户性别">
<Select.Option key={1} value={1}>
</Select.Option>
<Select.Option key={2} value={2}>
</Select.Option>
<Select.Option key={3} value={3}>
未知
</Select.Option>
</Select>
)}
</FormItem>
</Col>
<Col span={10}>
<FormItem {...formItemLayout} label="用户生日">
{getFieldDecorator('birthday', {
initialValue: func.moment(detail.birthday),
})(
<DatePicker
style={{ width: '100%' }}
format="YYYY-MM-DD HH:mm:ss"
showTime={{ defaultValue: moment('00:00:00', 'HH:mm:ss') }}
placeholder="请选择用户生日"
/>
)}
</FormItem>
</Col>
</Row>
</Card>
</Form>
</Panel>
);
}
}
export default UserEdit;