modal.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import { Form, Cascader, Switch, Radio, Input, Modal, Icon } from 'antd';
  4. import { Codes, domains } from '../../utils/config';
  5. const RadioGroup = Radio.Group;
  6. const FormItem = Form.Item
  7. const formItemLayout = {
  8. labelCol: {
  9. span: 6,
  10. },
  11. wrapperCol: {
  12. span: 15,
  13. },
  14. }
  15. const ModalForm = ({
  16. item = {},
  17. onOk,
  18. form: {
  19. getFieldDecorator,
  20. getFieldsValue,
  21. validateFields,
  22. },
  23. ...modalProps,
  24. }) => {
  25. const handleOk = () => {
  26. validateFields((errors) => {
  27. if (errors) return;
  28. const data = {
  29. ...getFieldsValue(),
  30. };
  31. item.id ? data.id = item.id : null;
  32. onOk(data);
  33. })
  34. }
  35. const modalOpts = {
  36. ...modalProps,
  37. onOk: handleOk,
  38. }
  39. return (
  40. <Modal {...modalOpts}>
  41. <Form layout="horizontal">
  42. <FormItem label="所属平台:" {...formItemLayout}>
  43. {getFieldDecorator('domain', {
  44. rules: [{ required: true, type: 'number', message: '请选择平台!' }],
  45. initialValue: item.domain || Codes.CODE_LJ,
  46. })(
  47. <RadioGroup>
  48. {Object.keys(domains).map(key => <Radio value={Number(key)} key={key}>{domains[Number(key)]}</Radio>)}
  49. </RadioGroup>
  50. )}
  51. </FormItem>
  52. <FormItem label="用户名称:" hasFeedback {...formItemLayout}>
  53. {getFieldDecorator('name', {
  54. rules: [{ required: true, type: 'string', message: '用户名为必填项!' }],
  55. initialValue: item.name,
  56. })(<Input />)}
  57. </FormItem>
  58. <FormItem label="用户昵称:" hasFeedback {...formItemLayout}>
  59. {getFieldDecorator('nickname', {
  60. initialValue: item.nickname,
  61. })(<Input />)}
  62. </FormItem>
  63. <FormItem label="用户性别:" {...formItemLayout}>
  64. {getFieldDecorator('gender', {
  65. initialValue: item.gender || 0,
  66. })(
  67. <RadioGroup>
  68. <Radio value={0} key={0}>男</Radio>
  69. <Radio value={1} key={1}>女</Radio>
  70. </RadioGroup>
  71. )}
  72. </FormItem>
  73. <FormItem label="出生日期:" hasFeedback {...formItemLayout}>
  74. {getFieldDecorator('birthday', {
  75. initialValue: item.birthday,
  76. })(<Input />)}
  77. </FormItem>
  78. <FormItem label="电话:" hasFeedback {...formItemLayout}>
  79. {getFieldDecorator('mobile', {
  80. initialValue: item.mobile,
  81. })(<Input />)}
  82. </FormItem>
  83. <FormItem label="邮箱:" hasFeedback {...formItemLayout}>
  84. {getFieldDecorator('mail', {
  85. initialValue: item.mail,
  86. })(<Input />)}
  87. </FormItem>
  88. <FormItem label="QQ:" hasFeedback {...formItemLayout}>
  89. {getFieldDecorator('qq', {
  90. initialValue: item.qq,
  91. })(<Input />)}
  92. </FormItem>
  93. <FormItem label="微信:" hasFeedback {...formItemLayout}>
  94. {getFieldDecorator('weChat', {
  95. initialValue: item.weChat,
  96. })(<Input />)}
  97. </FormItem>
  98. <FormItem label="账号状态:" {...formItemLayout}>
  99. {getFieldDecorator('status', {
  100. valuePropsName: 'checked',
  101. })(<Switch defaultChecked={item.status === Codes.CODE_NORMAL ? true : false} checkedChildren="使用中" unCheckedChildren="禁用中" />)}
  102. </FormItem>
  103. </Form>
  104. </Modal>
  105. )
  106. }
  107. ModalForm.propTypes = {
  108. item: PropTypes.object,
  109. form: PropTypes.object,
  110. type: PropTypes.string,
  111. onOk: PropTypes.func,
  112. }
  113. export default Form.create()(ModalForm);