| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 | import React from 'react';import { Icon, Modal, message, Spin, Button, Tabs, Input, Select, Form, DatePicker, Cascader, Upload } from 'antd';import './userList.less';import ajax from 'jquery/src/ajax/xhr.js';import $ from 'jquery/src/ajax';import moment from 'moment';import { eduLevelList, auditStatusList, certifyStepList } from '../../dataDic.js'import { provinceSelect, beforeUploadFile } from '../../tools.js';const OrgCertify = Form.create()(React.createClass({    getInitialState() {        return {            visible: false,            loading: false,            tabKey: "1",            saveSign: "save",            eduLvlOption: [],            auditStatusOption: []        };    },    loadData(uid) {        this.state.data = [];        this.setState({            loading: true        });        $.ajax({            method: window.showAuditStatus ? "get" : "post",            dataType: "json",            crossDomain: false,            url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/orgDetail" : globalConfig.context + "/api/admin/orgDetail",            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 = {};                };                this.setState({                    id: thisData.id,                    licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],                    locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],                    contacts: thisData.contacts,                    contactMobile: thisData.contactMobile,                    fixedTel: thisData.fixedTel,                    qq: thisData.qq,                    postalAddress: thisData.postalAddress,                    postcode: thisData.postcode,                    aftUsername: thisData.aftUsername,                    unitName: thisData.unitName,                    identityType: thisData.identityType, //组织性质                    registeredCapital: thisData.registeredCapital, //注册资金                    firstContacts: thisData.firstContacts,                    firstMobile: thisData.firstMobile,                    secondContacts: thisData.secondContacts,                    secondMobile: thisData.secondMobile,                    thirdContacts: thisData.thirdContacts,                    thirdMobile: thisData.thirdMobile,                    legalPerson: thisData.legalPerson,                    legalPersonIdCard: thisData.legalPersonIdCard,                    licenceNumber: thisData.licenceNumber,                    licenceScanningUrl: thisData.licenceScanningUrl,                    orgCode: thisData.orgCode,                    orgCodeUrl: thisData.orgCodeUrl,                    bankAccount: thisData.bankAccount,                    banks: thisData.banks,                    bankBranch: thisData.bankBranch,                    bankCardNumber: thisData.bankCardNumber,                    validationAmount: thisData.validationAmount, //打款金额                    paymentDate: thisData.paymentDate,                    paymentDateFormattedDate: thisData.paymentDateFormattedDate,                    lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,                    auditStatus: thisData.auditStatus,                    aid: thisData.aid,   //业务员ID                    mid: thisData.mid  //客户经理ID                });                this.props.form.resetFields();            }.bind(this),        }).always(function () {            this.setState({                loading: false            });        }.bind(this));    },    getAccountManagerList() {        this.setState({            loading: true        });        $.ajax({            method: "get",            dataType: "json",            crossDomain: false,            url: globalConfig.context + "/api/admin/userCertify/accountManager",            success: function (data) {                let theArr = [];                if (!data.data) {                    if (data.error && data.error.length) {                        message.warning(data.error[0].message);                    };                    return;                };                for (var item in data.data) {                    theArr.push(                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>                    )                };                this.setState({                    accountManagerOption: theArr,                    accountManagerList: data.data                });            }.bind(this),        }).always(function () {            this.setState({                loading: false            });        }.bind(this));    },    getTechnicianList() {        this.setState({            loading: true        });        $.ajax({            method: "get",            dataType: "json",            crossDomain: false,            url: globalConfig.context + "/api/admin/userCertify/technician",            success: function (data) {                let theArr = [];                if (!data.data) {                    if (data.error && data.error.length) {                        message.warning(data.error[0].message);                    };                    return;                };                for (var item in data.data) {                    theArr.push(                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>                    )                };                this.setState({                    technicianOption: theArr,                    technicianList: data.data                });            }.bind(this),        }).always(function () {            this.setState({                loading: false            });        }.bind(this));    },    handleSubmit(e) {        if (e) {            e.preventDefault();        };        this.props.form.validateFields((err, values) => {            if (!err) {                this.setState({                    loading: true                });                //金额判断                if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {                    message.warning('请输入0-100以内的金额');                    return;                };                $.ajax({                    method: "POST",                    dataType: "json",                    crossDomain: false,                    url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateOrgDetail" : globalConfig.context + "/api/admin/updateOrgDetail",                    data: {                        uid: this.props.uid,                        id: this.state.id,                        contacts: values.contacts,                        contactMobile: values.contactMobile,                        postalAddress: values.postalAddress,                        postcode: values.postcode,                        aftUsername: values.aftUsername,                        unitName: values.unitName,                        identityType: values.identityType, //组织性质                        registeredCapital: values.registeredCapital, //注册资金                        legalPerson: values.legalPerson,                        legalPersonIdCard: values.legalPersonIdCard,                        licenceNumber: values.licenceNumber,                        orgCode: values.orgCode,                        firstContacts: values.firstContacts,                        firstMobile: values.firstMobile,                        secondContacts: values.secondContacts,                        secondMobile: values.secondMobile,                        thirdContacts: values.thirdContacts,                        thirdMobile: values.thirdMobile,                        bankAccount: values.bankAccount,                        banks: values.banks,                        bankBranch: values.bankBranch,                        bankCardNumber: values.bankCardNumber,                        validationAmount: values.validationAmount, //打款金额                        paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,                        auditStatus: values.auditStatus,                        licenceScanningUrl: this.state.licenceScanningUrl,                        orgCodeUrl: this.state.orgCodeUrl,                        lastYearTaxReportUrl: this.state.lastYearTaxReportUrl,                        //process: this.state.process,                        licenceArea: values.licenceAddress[2],                        licenceCity: values.licenceAddress[1],                        licenceProvince: values.licenceAddress[0],                        locationArea: values.locationAddress[2],                        locationCity: values.locationAddress[1],                        locationProvince: values.locationAddress[0],                        aid: values.aid, //指派业务员ID                        mid: values.mid, //指派客户经理ID                        saveSign: this.state.saveSign                    }                }).done(function (data) {                    if (!data.error.length) {                        message.success('保存成功!');                    } else {                        message.warning(data.error[0].message);                    }                }.bind(this)).always(function () {                    this.setState({                        visible: false,                        saveSign: "save"                    });                    this.props.handleOk();                }.bind(this));            }        });    },    handleCancel() {        this.props.closeDesc(false);    },    componentWillMount() {        let _me = this;        eduLevelList.map(function (item, i) {            _me.state.eduLvlOption.push(                <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>            );        });        auditStatusList.map(function (item, i) {            _me.state.auditStatusOption.push(                <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>            );        });        this.loadData(this.props.uid);        if (window.showAuditStatus) {            this.getAccountManagerList();            this.getTechnicianList();        };    },    componentWillReceiveProps(nextProps) {        if (!this.props.visible && nextProps.visible) {            this.loadData(nextProps.uid);            this.state.tabKey = "1";        };    },    render() {        const { getFieldDecorator } = this.props.form;        const FormItem = Form.Item        const formItemLayout = {            labelCol: { span: 6 },            wrapperCol: { span: 12 },        };        return (            <Form horizontal onSubmit={this.handleSubmit} className="person-form">                <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>                    <Tabs.TabPane tab="基本资料" key="1">                        <FormItem                            {...formItemLayout}                            label="公司名称"                        >                            {getFieldDecorator('unitName', {                                initialValue: this.state.unitName                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="认证名称"                        >                            {getFieldDecorator('aftUsername', {                                initialValue: this.state.aftUsername                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="身份类型"                        >                            {getFieldDecorator('identityType', {                                initialValue: this.state.identityType                            })(                                <Select placeholder="身份类型" style={{ width: 200 }}                                    onChange={(e) => { this.state.identityType = e }}>                                    {this.state.eduLvlOption}                                </Select>                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第一联系人"                        >                            {getFieldDecorator('firstContacts', {                                initialValue: this.state.firstContacts                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第一联系人电话"                        >                            {getFieldDecorator('firstMobile', {                                initialValue: this.state.firstMobile                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第二联系人"                        >                            {getFieldDecorator('secondContacts', {                                initialValue: this.state.secondContacts                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第二联系人电话"                        >                            {getFieldDecorator('secondMobile', {                                initialValue: this.state.secondMobile                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第三联系人"                        >                            {getFieldDecorator('thirdContacts', {                                initialValue: this.state.thirdContacts                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="第三联系人电话"                        >                            {getFieldDecorator('thirdMobile', {                                initialValue: this.state.thirdMobile                            })(                                <Input />                                )}                        </FormItem>                    </Tabs.TabPane>                    <Tabs.TabPane tab="认证信息" key="2">                        <FormItem                            {...formItemLayout}                            label="法人"                        >                            {getFieldDecorator('legalPerson', {                                initialValue: this.state.legalPerson                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="法人身份证号"                        >                            {getFieldDecorator('legalPersonIdCard', {                                initialValue: this.state.legalPersonIdCard                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="注册资金"                        >                            {getFieldDecorator('registeredCapital', {                                initialValue: this.state.registeredCapital                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="营业执照编号"                        >                            {getFieldDecorator('licenceNumber', {                                initialValue: this.state.licenceNumber                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="营业执照所在地"                        >                            {getFieldDecorator('licenceAddress', {                                initialValue: this.state.licenceAddress                            })(                                <Cascader options={provinceSelect()} placeholder="请选择地址" />                                )}                        </FormItem>                        <FormItem                            labelCol={{ span: 6 }}                            wrapperCol={{ span: 18 }}                            label="营业执照图片"                        >                            <div className="idcard-img clearfix">                                {this.state.licenceScanningUrl ? <div>                                    <div className="idcard-imgbox">                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"                                            onClick={(e) => { window.open(e.target.src) }} />                                    </div>                                </div> : <div>                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>                                    </div>}                                <Upload                                    name="licence"                                    action={globalConfig.context + "/api/admin/userCertify/upload"}                                    data={{                                        'uid': this.props.uid,                                        'sign': 'licence'                                    }}                                    beforeUpload={beforeUploadFile}                                    showUploadList={false}                                    onChange={(info) => {                                        if (info.file.status !== 'uploading') {                                            console.log(info.file, info.fileList);                                        }                                        if (info.file.status === 'done') {                                            if (!info.file.response.error.length) {                                                message.success(`${info.file.name} 文件上传成功!`);                                            } else {                                                message.warning(info.file.response.error[0].message);                                                return;                                            };                                            this.state.licenceScanningUrl = info.file.response.data;                                        } else if (info.file.status === 'error') {                                            message.error(`${info.file.name} 文件上传失败。`);                                        }                                    }}                                >                                    <Button><Icon type="upload" /> 上传营业执照 </Button>                                </Upload>                            </div>                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="组织机构代码"                        >                            {getFieldDecorator('orgCode', {                                initialValue: this.state.orgCode                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            labelCol={{ span: 6 }}                            wrapperCol={{ span: 18 }}                            label="组织机构代码证图片"                        >                            <div className="idcard-img clearfix">                                {this.state.orgCodeUrl ? <div>                                    <div className="idcard-imgbox">                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"                                            onClick={(e) => { window.open(e.target.src) }} />                                    </div>                                </div> : <div>                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>                                    </div>}                                <Upload                                    name="orgCode"                                    action={globalConfig.context + "/api/admin/userCertify/upload"}                                    data={{ 'uid': this.props.uid, 'sign': 'orgcode' }}                                    beforeUpload={beforeUploadFile}                                    showUploadList={false}                                    onChange={(info) => {                                        if (info.file.status !== 'uploading') {                                            console.log(info.file, info.fileList);                                        }                                        if (info.file.status === 'done') {                                            if (!info.file.response.error.length) {                                                message.success(`${info.file.name} 文件上传成功!`);                                            } else {                                                message.warning(info.file.response.error[0].message);                                                return;                                            };                                            this.state.orgCodeUrl = info.file.response.data;                                        } else if (info.file.status === 'error') {                                            message.error(`${info.file.name} 文件上传失败。`);                                        }                                    }}                                >                                    <Button><Icon type="upload" /> 上传组织机构代码证 </Button>                                </Upload>                            </div>                        </FormItem>                        <FormItem                            labelCol={{ span: 6 }}                            wrapperCol={{ span: 18 }}                            label="上年度纳税报表"                        >                            <div className="idcard-img clearfix">                                {this.state.lastYearTaxReportUrl ? <div>                                    <div className="idcard-imgbox">                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"                                            onClick={(e) => { window.open(e.target.src) }} />                                    </div>                                </div> : <div>                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>                                    </div>}                                <Upload                                    name="ratepay"                                    action={globalConfig.context + "/api/admin/userCertify/upload"}                                    data={{ 'uid': this.props.uid, 'sign': 'ratepay' }}                                    beforeUpload={beforeUploadFile}                                    showUploadList={false}                                    onChange={(info) => {                                        if (info.file.status !== 'uploading') {                                            console.log(info.file, info.fileList);                                        }                                        if (info.file.status === 'done') {                                            if (!info.file.response.error.length) {                                                message.success(`${info.file.name} 文件上传成功!`);                                            } else {                                                message.warning(info.file.response.error[0].message);                                                return;                                            };                                            this.state.lastYearTaxReportUrl = info.file.response.data;                                        } else if (info.file.status === 'error') {                                            message.error(`${info.file.name} 文件上传失败。`);                                        }                                    }}                                >                                    <Button><Icon type="upload" /> 上传上年度纳税表 </Button>                                </Upload>                            </div>                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="开户银行"                        >                            {getFieldDecorator('banks', {                                initialValue: this.state.banks                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="开户银行支行"                        >                            {getFieldDecorator('bankBranch', {                                initialValue: this.state.bankBranch                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="银行卡号"                        >                            {getFieldDecorator('bankCardNumber', {                                initialValue: this.state.bankCardNumber                            })(                                <Input />                                )}                        </FormItem>                        <FormItem                            {...formItemLayout}                            label="开户行所在地"                        >                            {getFieldDecorator('locationAddress', {                                initialValue: this.state.locationAddress                            })(                                <Cascader options={provinceSelect()} placeholder="请选择地址" />                                )}                        </FormItem>                        <div style={{ display: window.showAuditStatus ? 'none' : 'none' }}>                            <FormItem                                {...formItemLayout}                                label="认证状态"                            >                                <span>                                    {(() => {                                        let _me = this, theStatus;                                        auditStatusList.map(function (item) {                                            if (_me.state.auditStatus == item.value) {                                                theStatus = item.key;                                            };                                        });                                        return theStatus;                                    })()}                                </span>                            </FormItem>                            <FormItem                                {...formItemLayout}                                label="业务员"                            >                                <span>{this.state.technicianList ? this.state.technicianList[this.state.aid] : ''}</span>                            </FormItem>                            <FormItem                                {...formItemLayout}                                label="客户经理"                            >                                <span>{this.state.accountManagerList ? this.state.accountManagerList[this.state.mid] : ''}</span>                            </FormItem>                        </div>                        <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>                            <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('aid', {                                    initialValue: this.state.aid                                })(                                    <Select placeholder="选择一个业务员" style={{ width: 200 }}>                                        {this.state.technicianOption}                                    </Select>                                    )}                            </FormItem>                            <FormItem                                {...formItemLayout}                                label="客户经理"                            >                                {getFieldDecorator('mid', {                                    initialValue: this.state.mid                                })(                                    <Select placeholder="选择一个客户经理" style={{ width: 200 }}>                                        {this.state.accountManagerOption}                                    </Select>                                    )}                            </FormItem>                        </div>                    </Tabs.TabPane>                </Tabs>                <FormItem wrapperCol={{ span: 12, offset: 4 }}>                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>                    <Button className="set-submit" type="ghost"                        onClick={() => {                            this.state.saveSign = "submit";                            this.handleSubmit();                        }}>提交审核</Button>                </FormItem>            </Form >        );    }}));const OrgDesc = 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}                            onCancel={this.handleCancel}                            width='600px'                            footer=''                            className="admin-desc-content">                            <OrgCertify                                visible={this.state.visible}                                uid={this.props.data.id}                                closeDesc={this.handleCancel}                                handleOk={this.handleOk} />                        </Modal>                    </Spin>                </div>            );        } else {            return <div></div>        }    },});export default OrgDesc;// <FormItem//     {...formItemLayout}//     label="打款金额"// >//     {getFieldDecorator('validationAmount', {//         initialValue: this.state.validationAmount//     })(//         <Input />//         )}// </FormItem>//     <FormItem//         {...formItemLayout}//         label="打款日期"//     >//         {getFieldDecorator('paymentDateFormattedDate', {//             initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null//         })(//             <DatePicker />//             )}//     </FormItem>
 |