userDesc.jsx 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. import React from 'react';
  2. import { Icon, Modal, message, Spin, Input, Select, DatePicker, Button, Radio, Form, Cascader } from 'antd';
  3. import moment from 'moment';
  4. import './userList.less';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. import { provinceSelect } from '../../tools.js';
  8. import { auditStatusList, certifyStepList } from '../../dataDic.js';
  9. const UserForm = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. visible: false,
  13. loading: false
  14. };
  15. },
  16. loadData(uid) {
  17. this.setState({
  18. loading: true
  19. });
  20. $.ajax({
  21. method: window.showAuditStatus ? "get" : "post",
  22. dataType: "json",
  23. crossDomain: false,
  24. url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/userDetail" : globalConfig.context + "/api/admin/userDetail",
  25. data: {
  26. uid: uid
  27. },
  28. success: function (data) {
  29. let thisData = data.data;
  30. if (!thisData) {
  31. if (data.error && data.error.length) {
  32. message.warning(data.error[0].message);
  33. };
  34. thisData = {};
  35. };
  36. let d = new Date()
  37. if (thisData && thisData.dateOfBirthMonth && thisData.dateOfBirthYear) {
  38. d.setMonth(thisData.dateOfBirthMonth - 1);
  39. d.setYear(parseInt(thisData.dateOfBirthYear));
  40. };
  41. this.setState({
  42. username: thisData.username,
  43. sex: thisData.sex,
  44. id: thisData.id,
  45. birth: d,
  46. idNumber: thisData.idNumber,
  47. address: [thisData.province, thisData.city, thisData.area],
  48. positiveIdUrl: thisData.positiveIdUrl,
  49. oppositeIdUrl: thisData.oppositeIdUrl,
  50. aftUsername: thisData.aftUsername,
  51. contactMobile: thisData.contactMobile,
  52. bankName: thisData.bankName,
  53. bankAccount: thisData.bankAccount,
  54. bankCardNumber: thisData.bankCardNumber,
  55. amountMoney: thisData.amountMoney,
  56. auditStatus: thisData.auditStatus,
  57. process: thisData.process ? String(thisData.process) : undefined,
  58. paymentDateFormattedDate: thisData.paymentDateFormattedDate,
  59. paymentDate: thisData.paymentDate,
  60. aid: thisData.aid, //业务员ID
  61. mid: thisData.mid //客户经理ID
  62. });
  63. this.props.form.resetFields();
  64. }.bind(this),
  65. }).always(function () {
  66. this.setState({
  67. loading: false
  68. });
  69. }.bind(this));
  70. },
  71. getAuthorList() {
  72. this.setState({
  73. loading: true
  74. });
  75. $.ajax({
  76. method: "get",
  77. dataType: "json",
  78. crossDomain: false,
  79. url: globalConfig.context + "/api/admin/getPrincipal",
  80. success: function (data) {
  81. let theArr = [];
  82. if (!data.data) {
  83. if (data.error && data.error.length) {
  84. message.warning(data.error[0].message);
  85. };
  86. return;
  87. };
  88. for (var item in data.data) {
  89. theArr.push(
  90. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  91. )
  92. };
  93. this.setState({
  94. authorOption: theArr,
  95. authorList: data.data
  96. });
  97. }.bind(this),
  98. }).always(function () {
  99. this.setState({
  100. loading: false
  101. });
  102. }.bind(this));
  103. },
  104. handleSubmit(e) {
  105. e.preventDefault();
  106. this.props.form.validateFields((err, values) => {
  107. //金额判断
  108. if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
  109. message.warning('请输入0-100以内的金额');
  110. return;
  111. };
  112. if (!err) {
  113. this.setState({
  114. loading: true
  115. });
  116. $.ajax({
  117. method: "POST",
  118. dataType: "json",
  119. crossDomain: false,
  120. url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateUserDetail" : globalConfig.context + "/api/admin/updateUserDetail",
  121. data: {
  122. uid: this.props.uid,
  123. id: this.state.id,
  124. username: values.username,
  125. sex: values.sex,
  126. dateOfBirthYear: values.birth ? values.birth._d.getFullYear() : undefined,
  127. dateOfBirthMonth: values.birth ? values.birth._d.getMonth() + 1 : undefined,
  128. idNumber: values.idNumber,
  129. aftUsername: values.aftUsername,
  130. province: values.address[0],
  131. city: values.address[1],
  132. area: values.address[2],
  133. contactMobile: values.contactMobile,
  134. bankName: values.bankName,
  135. bankAccount: values.bankAccount,
  136. bankCardNumber: values.bankCardNumber,
  137. amountMoney: values.amountMoney,
  138. auditStatus: values.auditStatus,
  139. paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
  140. aid: values.aid, //指派业务员ID
  141. mid: values.mid //指派客户经理ID
  142. }
  143. }).done(function (data) {
  144. if (!data.error.length) {
  145. message.success('保存成功!');
  146. } else {
  147. message.warning(data.error[0].message);
  148. }
  149. }.bind(this)).always(function () {
  150. this.setState({
  151. visible: false,
  152. });
  153. this.props.handleOk();
  154. }.bind(this));
  155. }
  156. });
  157. },
  158. componentWillMount() {
  159. this.loadData(this.props.uid);
  160. this.getAuthorList();
  161. },
  162. componentWillReceiveProps(nextProps) {
  163. if (!this.props.visible && nextProps.visible) {
  164. this.state.uid = undefined;
  165. this.state.mid = undefined;
  166. this.loadData(nextProps.uid);
  167. };
  168. },
  169. render() {
  170. const { getFieldDecorator } = this.props.form;
  171. const { MonthPicker } = DatePicker;
  172. const FormItem = Form.Item
  173. const formItemLayout = {
  174. labelCol: { span: 6 },
  175. wrapperCol: { span: 12 },
  176. };
  177. return (
  178. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  179. <FormItem
  180. {...formItemLayout}
  181. label="用户名"
  182. >
  183. {getFieldDecorator('username', {
  184. initialValue: this.state.username
  185. })(
  186. <Input />
  187. )}
  188. </FormItem>
  189. <FormItem
  190. {...formItemLayout}
  191. label="性别"
  192. >
  193. {getFieldDecorator('sex', {
  194. initialValue: this.state.sex
  195. })(
  196. <Radio.Group>
  197. <Radio value="男">男</Radio>
  198. <Radio value="女">女</Radio>
  199. </Radio.Group>
  200. )}
  201. </FormItem>
  202. <FormItem
  203. {...formItemLayout}
  204. label="出生日期"
  205. >
  206. {getFieldDecorator('birth', {
  207. initialValue: !this.state.birth ? null : moment(this.state.birth, 'YYYY/MM')
  208. })(
  209. <MonthPicker />
  210. )}
  211. </FormItem>
  212. <FormItem
  213. {...formItemLayout}
  214. label="身份证号"
  215. >
  216. {getFieldDecorator('idNumber', {
  217. initialValue: this.state.idNumber
  218. })(
  219. <Input />
  220. )}
  221. </FormItem>
  222. <FormItem
  223. labelCol={{ span: 6 }}
  224. wrapperCol={{ span: 18 }}
  225. label="身份证图片"
  226. >
  227. <div className="idcard-img clearfix">
  228. {this.state.positiveIdUrl ? <div>
  229. <div className="idcard-imgbox">
  230. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.positiveIdUrl} alt="点击查看大图"
  231. onClick={(e) => { window.open(e.target.src) }} />
  232. </div>
  233. </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
  234. {this.state.oppositeIdUrl ? <div>
  235. <div className="idcard-imgbox">
  236. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.oppositeIdUrl} alt="点击查看大图"
  237. onClick={(e) => { window.open(e.target.src) }} />
  238. </div>
  239. </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
  240. </div>
  241. </FormItem>
  242. <FormItem
  243. {...formItemLayout}
  244. label="认证姓名"
  245. >
  246. {getFieldDecorator('aftUsername', {
  247. initialValue: this.state.aftUsername
  248. })(
  249. <Input />
  250. )}
  251. </FormItem>
  252. <FormItem
  253. {...formItemLayout}
  254. label="联系电话"
  255. >
  256. {getFieldDecorator('contactMobile', {
  257. initialValue: this.state.contactMobile
  258. })(
  259. <Input />
  260. )}
  261. </FormItem>
  262. <FormItem
  263. {...formItemLayout}
  264. label="所在地"
  265. >
  266. {getFieldDecorator('address', {
  267. initialValue: this.state.address
  268. })(
  269. <Cascader options={provinceSelect()} placeholder="请选择地址" />
  270. )}
  271. </FormItem>
  272. <FormItem
  273. {...formItemLayout}
  274. label="开户银行"
  275. >
  276. {getFieldDecorator('bankAccount', {
  277. initialValue: this.state.bankAccount
  278. })(
  279. <Input />
  280. )}
  281. </FormItem>
  282. <FormItem
  283. {...formItemLayout}
  284. label="银行卡号"
  285. >
  286. {getFieldDecorator('bankCardNumber', {
  287. initialValue: this.state.bankCardNumber
  288. })(
  289. <Input />
  290. )}
  291. </FormItem>
  292. <div style={{ display: window.showAuditStatus ? 'none' : 'none' }}>
  293. <FormItem
  294. {...formItemLayout}
  295. label="认证状态"
  296. >
  297. <span>
  298. {(() => {
  299. let _me = this, theStatus;
  300. auditStatusList.map(function (item) {
  301. if (_me.state.auditStatus == item.value) {
  302. theStatus = item.key;
  303. };
  304. });
  305. return theStatus;
  306. })()}
  307. </span>
  308. </FormItem>
  309. <FormItem
  310. {...formItemLayout}
  311. label="业务员"
  312. >
  313. <span>{this.state.authorList ? this.state.authorList[this.state.aid] : ''}</span>
  314. </FormItem>
  315. <FormItem
  316. {...formItemLayout}
  317. label="客户经理"
  318. >
  319. <span>{this.state.authorList ? this.state.authorList[this.state.mid] : ''}</span>
  320. </FormItem>
  321. </div>
  322. <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
  323. <FormItem
  324. {...formItemLayout}
  325. label="认证状态"
  326. >
  327. {getFieldDecorator('auditStatus', {
  328. initialValue: this.state.auditStatus
  329. })(
  330. <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
  331. onChange={(e) => { this.state.auditStatus = e }}>
  332. {
  333. auditStatusList.map(function (item, i) {
  334. return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
  335. })
  336. }
  337. </Select>
  338. )}
  339. </FormItem>
  340. <FormItem
  341. {...formItemLayout}
  342. label="业务员"
  343. >
  344. {getFieldDecorator('aid', {
  345. initialValue: this.state.aid
  346. })(
  347. <Select placeholder="选择一个业务员" style={{ width: 200 }}>
  348. {this.state.authorOption}
  349. </Select>
  350. )}
  351. </FormItem>
  352. <FormItem
  353. {...formItemLayout}
  354. label="客户经理"
  355. >
  356. {getFieldDecorator('mid', {
  357. initialValue: this.state.mid
  358. })(
  359. <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
  360. {this.state.authorOption}
  361. </Select>
  362. )}
  363. </FormItem>
  364. </div>
  365. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  366. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  367. </FormItem>
  368. </Form >
  369. )
  370. }
  371. }));
  372. const PatentDesc = React.createClass({
  373. getInitialState() {
  374. return {
  375. visible: false,
  376. loading: false
  377. };
  378. },
  379. showModal() {
  380. this.setState({
  381. visible: true,
  382. });
  383. },
  384. handleCancel(e) {
  385. this.setState({
  386. visible: false,
  387. });
  388. this.props.closeDesc(false);
  389. },
  390. handleOk(e) {
  391. this.setState({
  392. visible: false,
  393. });
  394. this.props.closeDesc(false, true);
  395. },
  396. componentWillReceiveProps(nextProps) {
  397. this.state.visible = nextProps.showDesc;
  398. },
  399. render() {
  400. if (this.props.data) {
  401. return (
  402. <div className="patent-desc">
  403. <Spin spinning={this.state.loading} className='spin-box'>
  404. <Modal title="用户详情" visible={this.state.visible}
  405. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  406. width='600px'
  407. footer=''
  408. className="admin-desc-content">
  409. <UserForm
  410. uid={this.props.data.id}
  411. closeDesc={this.handleCancel}
  412. visible={this.state.visible}
  413. handleOk={this.handleOk} />
  414. </Modal>
  415. </Spin>
  416. </div>
  417. );
  418. } else {
  419. return <div></div>
  420. }
  421. },
  422. });
  423. export default PatentDesc;
  424. // <FormItem
  425. // {...formItemLayout}
  426. // label="打款金额"
  427. // >
  428. // {getFieldDecorator('amountMoney', {
  429. // initialValue: this.state.amountMoney
  430. // })(
  431. // <Input />
  432. // )}
  433. // </FormItem>
  434. // <FormItem
  435. // {...formItemLayout}
  436. // label="打款日期"
  437. // >
  438. // {getFieldDecorator('paymentDateFormattedDate', {
  439. // initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
  440. // })(
  441. // <DatePicker />
  442. // )}
  443. // </FormItem>