CmsUserEdit.js 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. import React, { PureComponent } from 'react';
  2. import { Card, Form, Table, Input, Button, Radio, Icon, Switch, message } from 'antd';
  3. import { connect } from 'dva';
  4. import { routerRedux } from 'dva/router';
  5. import FooterToolbar from '../../../components/FooterToolbar';
  6. import {renderAvatar, renderGender, renderStatus, boolToStatus, statusToBool} from '../../../utils/utils';
  7. import styles from './CmsUserCreate.less';
  8. const genders = [{
  9. title: '男',
  10. value: 'MALE',
  11. }, {
  12. title: '女',
  13. value: 'FEMALE',
  14. }];
  15. const fieldLabels = {
  16. nickName: '用户昵称',
  17. gender: '用户性别',
  18. birthday: '出生日期',
  19. mobile: '电话',
  20. mail: '邮箱',
  21. qq: 'QQ号码',
  22. weChat: '微信号码',
  23. password: '用户密码',
  24. confirm: '确认密码',
  25. status: '账号状态',
  26. };
  27. const formItemLayout = {
  28. labelCol: {
  29. xs: { span: 24 },
  30. sm: { span: 6 },
  31. },
  32. wrapperCol: {
  33. xs: { span: 24 },
  34. sm: { span: 14 },
  35. md: { span: 12 },
  36. },
  37. };
  38. function cmsUserDataFormatter(item) {
  39. const {
  40. qq,
  41. name,
  42. mail,
  43. weChat,
  44. mobile,
  45. status,
  46. gender,
  47. avatar,
  48. birthday,
  49. nickName,
  50. merchantName,
  51. } = item;
  52. return [{
  53. key: 1,
  54. field: '用户头像',
  55. text: renderAvatar(avatar, nickName),
  56. }, {
  57. key: 2,
  58. field: '用户名称',
  59. text: name,
  60. }, {
  61. key: 3,
  62. field: '用户昵称',
  63. text: nickName,
  64. }, {
  65. key: 4,
  66. field: '出生日期',
  67. text: birthday,
  68. }, {
  69. key: 5,
  70. field: '用户性别',
  71. text: renderGender(gender),
  72. }, {
  73. key: 6,
  74. field: '所属商户',
  75. text: merchantName,
  76. }, {
  77. key: 7,
  78. field: '联系电话',
  79. text: mobile,
  80. }, {
  81. key: 8,
  82. field: 'QQ号码',
  83. text: qq,
  84. }, {
  85. key: 9,
  86. field: '微信',
  87. text: weChat,
  88. }, {
  89. key: 10,
  90. field: '邮箱',
  91. text: mail,
  92. }, {
  93. key: 11,
  94. field: '账号状态',
  95. text: renderStatus(status),
  96. }];
  97. }
  98. @Form.create()
  99. @connect(({ loading, cmsUser }) => ({
  100. cmsUser,
  101. submitting: loading.models.cmsUser,
  102. }))
  103. export default class CmsUserEditPage extends PureComponent {
  104. state = {
  105. currentItem: {},
  106. passwordEdit: false,
  107. };
  108. componentWillMount() {
  109. this.setState({
  110. currentItem: this.props.location.state.currentItem,
  111. });
  112. }
  113. checkPassword = (rule, value, callback) => {
  114. if (value && value !== this.props.form.getFieldValue('password')) {
  115. callback('两次输入的密码不一致');
  116. } else if (!value) {
  117. callback('请再次输入密码进行确认');
  118. } else {
  119. callback();
  120. }
  121. };
  122. handlePasswordEdit = () => {
  123. this.setState({
  124. passwordEdit: true,
  125. });
  126. };
  127. handlePasswordSave = () => {
  128. this.props.form.validateFieldsAndScroll((error) => {
  129. if (!error) {
  130. this.setState({
  131. passwordEdit: false,
  132. });
  133. }
  134. });
  135. };
  136. handlePageSubmit = () => {
  137. this.props.form.validateFieldsAndScroll((error, values) => {
  138. const { currentItem, passwordEdit } = this.state;
  139. if (error) {
  140. return;
  141. }
  142. if (passwordEdit) {
  143. message.error('请保存密码!');
  144. return;
  145. }
  146. const { id } = currentItem;
  147. const { status, ...restProps } = values;
  148. restProps.status = boolToStatus(status);
  149. restProps.id = id;
  150. this.props.dispatch({
  151. type: 'cmsUser/updateCmsUserItem',
  152. payload: restProps,
  153. states: this.props.location.state,
  154. });
  155. });
  156. };
  157. handlePageBack = () => {
  158. this.props.dispatch(routerRedux.push({
  159. pathname: '/system/cms-user/list',
  160. state: this.props.location.state,
  161. }));
  162. };
  163. render() {
  164. const { form, submitting } = this.props;
  165. const { currentItem, passwordEdit } = this.state;
  166. const { getFieldDecorator } = form;
  167. const {
  168. qq,
  169. mail,
  170. gender,
  171. weChat,
  172. status,
  173. birthday,
  174. nickName,
  175. mobile,
  176. } = currentItem;
  177. const campusColumns = [{
  178. title: '字段名',
  179. key: 1,
  180. dataIndex: 'field',
  181. width: '15%',
  182. }, {
  183. title: '字段值',
  184. key: 2,
  185. dataIndex: 'text',
  186. width: '85%',
  187. }];
  188. return (
  189. <div>
  190. <Card title="用户详情" style={{ marginBottom: 16 }}>
  191. <Form>
  192. <Form.Item wrapperCol={{ span: 13, offset: 5 }}>
  193. <Table
  194. bordered
  195. size="small"
  196. showHeader={false}
  197. pagination={false}
  198. className={styles.infoTable}
  199. columns={campusColumns}
  200. dataSource={cmsUserDataFormatter(currentItem)}
  201. />
  202. </Form.Item>
  203. </Form>
  204. </Card>
  205. <Card title="修改信息" style={{ marginBottom: 70 }}>
  206. <Form hideRequiredMark>
  207. <Form.Item label={fieldLabels.nickName} {...formItemLayout}>
  208. {getFieldDecorator('nickName', {
  209. initialValue: nickName,
  210. })(
  211. <Input placeholder="请输入" />
  212. )}
  213. </Form.Item>
  214. <Form.Item label={fieldLabels.password} {...formItemLayout}>
  215. {getFieldDecorator('password', {
  216. rules: [
  217. {
  218. pattern: /^[a-zA-Z0-9|-]+$/ig, message: '密码格式错误!',
  219. }],
  220. })(
  221. <Input
  222. type="password"
  223. placeholder="请输入"
  224. disabled={!passwordEdit}
  225. addonBefore={<Icon type="lock" />}
  226. addonAfter={
  227. passwordEdit ? (
  228. <Icon type="save" onClick={this.handlePasswordSave} />
  229. ) : (
  230. <Icon type="edit" onClick={this.handlePasswordEdit} />
  231. )
  232. }
  233. />
  234. )}
  235. </Form.Item>
  236. {passwordEdit && (
  237. <Form.Item label={fieldLabels.confirm} {...formItemLayout}>
  238. {getFieldDecorator('confirm', {
  239. rules: [
  240. {
  241. validator: this.checkPassword,
  242. }],
  243. })(
  244. <Input
  245. type="password"
  246. placeholder="请输入"
  247. addonBefore={<Icon type="lock" />}
  248. />
  249. )}
  250. </Form.Item>
  251. )}
  252. <Form.Item label={fieldLabels.birthday} {...formItemLayout}>
  253. {getFieldDecorator('birthday', {
  254. initialValue: birthday,
  255. })(
  256. <Input placeholder="请输入" />
  257. )}
  258. </Form.Item>
  259. <Form.Item label={fieldLabels.mobile} {...formItemLayout}>
  260. {getFieldDecorator('mobile', {
  261. rules: [{
  262. pattern: /^[1][34578][0-9]{9}$/g, message: '请输入11位有效手机号!',
  263. }],
  264. initialValue: mobile,
  265. })(
  266. <Input placeholder="请输入" />
  267. )}
  268. </Form.Item>
  269. <Form.Item label={fieldLabels.mail} {...formItemLayout}>
  270. {getFieldDecorator('mail', {
  271. initialValue: mail,
  272. })(
  273. <Input placeholder="请输入" />
  274. )}
  275. </Form.Item>
  276. <Form.Item label={fieldLabels.qq} {...formItemLayout}>
  277. {getFieldDecorator('qq', {
  278. initialValue: qq,
  279. })(
  280. <Input placeholder="请输入" />
  281. )}
  282. </Form.Item>
  283. <Form.Item label={fieldLabels.weChat} {...formItemLayout}>
  284. {getFieldDecorator('weChat', {
  285. initialValue: weChat,
  286. })(
  287. <Input placeholder="请输入" />
  288. )}
  289. </Form.Item>
  290. <Form.Item label={fieldLabels.gender} {...formItemLayout}>
  291. {getFieldDecorator('gender', {
  292. initialValue: gender,
  293. })(
  294. <Radio.Group className={styles.radio}>
  295. {
  296. genders.map(item =>
  297. (
  298. <Radio.Button
  299. key={item.value}
  300. value={item.value}
  301. >{item.title}
  302. </Radio.Button>
  303. )
  304. )
  305. }
  306. </Radio.Group>
  307. )}
  308. </Form.Item>
  309. <Form.Item label={fieldLabels.status} {...formItemLayout}>
  310. {getFieldDecorator('status', {
  311. valuePropName: 'checked',
  312. initialValue: statusToBool(status),
  313. })(
  314. <Switch
  315. checkedChildren="启用"
  316. unCheckedChildren="禁用"
  317. />
  318. )}
  319. </Form.Item>
  320. </Form>
  321. </Card>
  322. <FooterToolbar style={{ width: '100%' }}>
  323. <Button
  324. onClick={this.handlePageBack}
  325. style={{ marginRight: 10 }}
  326. >取消
  327. </Button>
  328. <Button
  329. type="primary"
  330. loading={submitting}
  331. onClick={this.handlePageSubmit}
  332. >提交
  333. </Button>
  334. </FooterToolbar>
  335. </div>
  336. );
  337. }
  338. }