| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 | 
							- import React from 'react';
 
- import { Icon, Modal, message, Spin, Input, Select, DatePicker, Button, Radio, Form } from 'antd';
 
- import moment from 'moment';
 
- import './userList.less';
 
- import ajax from 'jquery/src/ajax/xhr.js';
 
- import $ from 'jquery/src/ajax';
 
- import { addressInit } from '../../tools.js';
 
- import { auditStatusList, certifyStepList } from '../../dataDic.js';
 
- const UserForm = Form.create()(React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             visible: false,
 
-             loading: false
 
-         };
 
-     },
 
-     loadData(uid) {
 
-         this.state.data = [];
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "post",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/userDetail",
 
-             data: {
 
-                 uid: uid
 
-             },
 
-             success: function (data) {
 
-                 let thisData = data.data;
 
-                 if (!thisData) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     };
 
-                     thisData = {};
 
-                 };
 
-                 let d = new Date()
 
-                 if (thisData && thisData.dateOfBirthMonth && thisData.dateOfBirthYear) {
 
-                     d.setMonth(thisData.dateOfBirthMonth - 1);
 
-                     d.setYear(parseInt(thisData.dateOfBirthYear));
 
-                 };
 
-                 addressInit('cmbProvince', 'cmbCity', 'cmbArea',
 
-                     thisData.province, thisData.city, thisData.area);
 
-                 this.setState({
 
-                     username: thisData.username,
 
-                     sex: thisData.sex,
 
-                     id: thisData.id,
 
-                     birth: d,
 
-                     idNumber: thisData.idNumber,
 
-                     positiveIdUrl: thisData.positiveIdUrl,
 
-                     oppositeIdUrl: thisData.oppositeIdUrl,
 
-                     aftUsername: thisData.aftUsername,
 
-                     contactMobile: thisData.contactMobile,
 
-                     bankName: thisData.bankName,
 
-                     bankAccount: thisData.bankAccount,
 
-                     bankCardNumber: thisData.bankCardNumber,
 
-                     amountMoney: thisData.amountMoney,
 
-                     auditStatus: thisData.auditStatus,
 
-                     process: thisData.process ? String(thisData.process) : undefined,
 
-                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
 
-                     paymentDate: thisData.paymentDate
 
-                 });
 
-                 this.props.form.resetFields();
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     handleSubmit(e) {
 
-         e.preventDefault();
 
-         this.props.form.validateFields((err, values) => {
 
-             //地址值
 
-             let cmbP = document.getElementById('cmbProvince').value;
 
-             let cmbC = document.getElementById('cmbCity').value;
 
-             let cmbA = document.getElementById('cmbArea').value;
 
-             //金额判断
 
-             if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
 
-                 message.warning('请输入0-100以内的金额');
 
-                 return;
 
-             };
 
-             if (!err) {
 
-                 this.setState({
 
-                     loading: true
 
-                 });
 
-                 $.ajax({
 
-                     method: "POST",
 
-                     dataType: "json",
 
-                     crossDomain: false,
 
-                     url: globalConfig.context + "/api/admin/updateUserDetail",
 
-                     data: {
 
-                         uid: this.props.uid,
 
-                         id: this.state.id,
 
-                         username: values.username,
 
-                         sex: values.sex,
 
-                         dateOfBirthYear: values.birth ? values.birth._d.getFullYear() : undefined,
 
-                         dateOfBirthMonth: values.birth ? values.birth._d.getMonth() + 1 : undefined,
 
-                         idNumber: values.idNumber,
 
-                         aftUsername: values.aftUsername,
 
-                         province: cmbP,
 
-                         city: cmbC,
 
-                         area: cmbA,
 
-                         contactMobile: values.contactMobile,
 
-                         bankName: values.bankName,
 
-                         bankAccount: values.bankAccount,
 
-                         bankCardNumber: values.bankCardNumber,
 
-                         amountMoney: values.amountMoney,
 
-                         auditStatus: values.auditStatus,
 
-                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
 
-                         process: this.state.process
 
-                     }
 
-                 }).done(function (data) {
 
-                     if (!data.error.length) {
 
-                         message.success('保存成功!');
 
-                     } else {
 
-                         message.warning(data.error[0].message);
 
-                     }
 
-                 }.bind(this)).always(function () {
 
-                     this.setState({
 
-                         visible: false,
 
-                     });
 
-                     this.props.handleOk();
 
-                 }.bind(this));
 
-             }
 
-         });
 
-     },
 
-     componentDidMount() {
 
-         addressInit('cmbProvince', 'cmbCity', 'cmbArea');
 
-         this.loadData(this.props.uid);
 
-     },
 
-     componentWillReceiveProps(nextProps) {
 
-         if (!this.props.visible && nextProps.visible) {
 
-             this.loadData(nextProps.uid);
 
-         };
 
-     },
 
-     render() {
 
-         const { getFieldDecorator } = this.props.form;
 
-         const { MonthPicker } = DatePicker;
 
-         const FormItem = Form.Item
 
-         const formItemLayout = {
 
-             labelCol: { span: 6 },
 
-             wrapperCol: { span: 12 },
 
-         };
 
-         return (
 
-             <Form horizontal onSubmit={this.handleSubmit} className="person-form">
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="用户名"
 
-                 >
 
-                     {getFieldDecorator('username', {
 
-                         initialValue: this.state.username
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="性别"
 
-                 >
 
-                     {getFieldDecorator('sex', {
 
-                         initialValue: this.state.sex
 
-                     })(
 
-                         <Radio.Group>
 
-                             <Radio value="男">男</Radio>
 
-                             <Radio value="女">女</Radio>
 
-                         </Radio.Group>
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="出生日期"
 
-                 >
 
-                     {getFieldDecorator('birth', {
 
-                         initialValue: !this.state.birth ? null : moment(this.state.birth, 'YYYY/MM')
 
-                     })(
 
-                         <MonthPicker />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="身份证号"
 
-                 >
 
-                     {getFieldDecorator('idNumber', {
 
-                         initialValue: this.state.idNumber
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     labelCol={{ span: 6 }}
 
-                     wrapperCol={{ span: 18 }}
 
-                     label="身份证图片"
 
-                 >
 
-                     <div className="idcard-img clearfix">
 
-                         {this.state.positiveIdUrl ? <div>
 
-                             <div className="idcard-imgbox">
 
-                                 <img src={globalConfig.context + '/open/writeImage?path=' + this.state.positiveIdUrl} alt="点击查看大图"
 
-                                     onClick={(e) => { window.open(e.target.src) }} />
 
-                             </div>
 
-                         </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
 
-                         {this.state.oppositeIdUrl ? <div>
 
-                             <div className="idcard-imgbox">
 
-                                 <img src={globalConfig.context + '/open/writeImage?path=' + this.state.oppositeIdUrl} alt="点击查看大图"
 
-                                     onClick={(e) => { window.open(e.target.src) }} />
 
-                             </div>
 
-                         </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
 
-                     </div>
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="认证姓名"
 
-                 >
 
-                     {getFieldDecorator('aftUsername', {
 
-                         initialValue: this.state.aftUsername
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="联系电话"
 
-                 >
 
-                     {getFieldDecorator('contactMobile', {
 
-                         initialValue: this.state.contactMobile
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     labelCol={{ span: 6 }}
 
-                     wrapperCol={{ span: 18 }}
 
-                     label="所在地"
 
-                 >
 
-                     {getFieldDecorator('address')(
 
-                         <div>
 
-                             <select id="cmbProvince" name="cmbProvince"></select>
 
-                             <select id="cmbCity" name="cmbCity"></select>
 
-                             <select id="cmbArea" name="cmbArea"></select>
 
-                         </div>
 
-                     )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="开户银行"
 
-                 >
 
-                     {getFieldDecorator('bankAccount', {
 
-                         initialValue: this.state.bankAccount
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="银行卡号"
 
-                 >
 
-                     {getFieldDecorator('bankCardNumber', {
 
-                         initialValue: this.state.bankCardNumber
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="打款金额"
 
-                 >
 
-                     {getFieldDecorator('amountMoney', {
 
-                         initialValue: this.state.amountMoney
 
-                     })(
 
-                         <Input />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="打款日期"
 
-                 >
 
-                     {getFieldDecorator('paymentDateFormattedDate', {
 
-                         initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
 
-                     })(
 
-                         <DatePicker />
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="认证状态"
 
-                 >
 
-                     {getFieldDecorator('auditStatus', {
 
-                         initialValue: this.state.auditStatus
 
-                     })(
 
-                         <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
 
-                             onChange={(e) => { this.state.auditStatus = e }}>
 
-                             {
 
-                                 auditStatusList.map(function (item, i) {
 
-                                     return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
 
-                                 })
 
-                             }
 
-                         </Select>
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem
 
-                     {...formItemLayout}
 
-                     label="认证步骤"
 
-                 >
 
-                     {getFieldDecorator('process', {
 
-                         initialValue: this.state.process
 
-                     })(
 
-                         <Select placeholder="选择要修改的认证步骤" style={{ width: 200 }}
 
-                             onChange={(e) => { this.state.process = e }}>
 
-                             {
 
-                                 certifyStepList.map(function (item, i) {
 
-                                     return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
 
-                                 })
 
-                             }
 
-                         </Select>
 
-                         )}
 
-                 </FormItem>
 
-                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>
 
-                     <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
 
-                 </FormItem>
 
-             </Form >
 
-         )
 
-     }
 
- }));
 
- const PatentDesc = React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             visible: false,
 
-             loading: false
 
-         };
 
-     },
 
-     showModal() {
 
-         this.setState({
 
-             visible: true,
 
-         });
 
-     },
 
-     handleCancel(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-         this.props.closeDesc(false);
 
-     },
 
-     handleOk(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-         this.props.closeDesc(false, true);
 
-     },
 
-     componentWillReceiveProps(nextProps) {
 
-         this.state.visible = nextProps.showDesc;
 
-     },
 
-     render() {
 
-         if (this.props.data) {
 
-             return (
 
-                 <div className="patent-desc">
 
-                     <Spin spinning={this.state.loading} className='spin-box'>
 
-                         <Modal title="用户详情" visible={this.state.visible}
 
-                             onOk={this.checkPatentProcess} onCancel={this.handleCancel}
 
-                             width='600px'
 
-                             footer=''
 
-                             className="admin-desc-content">
 
-                             <UserForm
 
-                                 uid={this.props.data.id}
 
-                                 closeDesc={this.handleCancel}
 
-                                 visible={this.state.visible}
 
-                                 handleOk={this.handleOk} />
 
-                         </Modal>
 
-                     </Spin>
 
-                 </div>
 
-             );
 
-         } else {
 
-             return <div></div>
 
-         }
 
-     },
 
- });
 
- export default PatentDesc;
 
 
  |