|
@@ -5,18 +5,16 @@ 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 { beforeUploadFile } from '../../tools.js';
|
|
|
-import { areaSelect } from '../../NewDicProvinceList'
|
|
|
+import { beforeUploadFile, getAuditState } from '../../tools.js';
|
|
|
+import { areaSelect, getProvince } from '../../NewDicProvinceList'
|
|
|
|
|
|
-const OrgCertify = Form.create()(React.createClass({
|
|
|
+const OrgShow = Form.create()(React.createClass({
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
- visible: false,
|
|
|
loading: false,
|
|
|
tabKey: "1",
|
|
|
- saveSign: "save",
|
|
|
eduLvlOption: [],
|
|
|
- auditStatusOption: []
|
|
|
+ eduLvlObj: {}
|
|
|
};
|
|
|
},
|
|
|
loadData(uid) {
|
|
@@ -25,10 +23,10 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
loading: true
|
|
|
});
|
|
|
$.ajax({
|
|
|
- method: window.showAuditStatus ? "get" : "post",
|
|
|
+ method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/orgDetail" : globalConfig.context + "/api/admin/orgDetail",
|
|
|
+ url: globalConfig.context + "/api/admin/userCertify/orgDetail",
|
|
|
data: {
|
|
|
uid: uid
|
|
|
},
|
|
@@ -42,8 +40,12 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
};
|
|
|
this.setState({
|
|
|
id: thisData.id,
|
|
|
- licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
|
|
|
- locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
|
|
|
+ licenceProvince: thisData.licenceProvince,
|
|
|
+ licenceCity: thisData.licenceCity,
|
|
|
+ licenceArea: thisData.licenceArea,
|
|
|
+ locationProvince: thisData.locationProvince,
|
|
|
+ locationCity: thisData.locationCity,
|
|
|
+ locationArea: thisData.locationArea,
|
|
|
contacts: thisData.contacts,
|
|
|
contactMobile: thisData.contactMobile,
|
|
|
fixedTel: thisData.fixedTel,
|
|
@@ -159,6 +161,390 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
}.bind(this));
|
|
|
},
|
|
|
handleSubmit(e) {
|
|
|
+ e.preventDefault();
|
|
|
+ this.props.form.validateFields((err, values) => {
|
|
|
+ if (!err) {
|
|
|
+ this.setState({
|
|
|
+ loading: true
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ method: "POST",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/api/admin/userCertify/updateOrgDetail",
|
|
|
+ data: {
|
|
|
+ uid: this.props.uid,
|
|
|
+ id: this.state.id,
|
|
|
+ auditStatus: values.auditStatus,
|
|
|
+ level: this.state.level,
|
|
|
+ aid: values.aid, //指派业务员ID
|
|
|
+ mid: values.mid, //指派客户经理ID
|
|
|
+ }
|
|
|
+ }).done(function (data) {
|
|
|
+ if (!data.error.length) {
|
|
|
+ message.success('保存成功!');
|
|
|
+ } else {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ }
|
|
|
+ }.bind(this)).always(function () {
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ this.props.handleOk();
|
|
|
+ }.bind(this));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleCancel() {
|
|
|
+ this.props.closeDesc(false);
|
|
|
+ },
|
|
|
+ componentWillMount() {
|
|
|
+ let _me = this;
|
|
|
+ eduLevelList.map(function (item, i) {
|
|
|
+ _me.state.eduLvlObj[item.value] = item.key
|
|
|
+ });
|
|
|
+ this.loadData(this.props.uid);
|
|
|
+ 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')(
|
|
|
+ <span>{this.state.unitName}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="认证名称" >
|
|
|
+ {getFieldDecorator('aftUsername', {
|
|
|
+ initialValue: this.state.aftUsername
|
|
|
+ })(
|
|
|
+ <span>{this.state.aftUsername}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="身份类型" >
|
|
|
+ {getFieldDecorator('identityType')(
|
|
|
+ <span>{this.state.eduLvlObj[this.state.identityType]}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第一联系人" >
|
|
|
+ {getFieldDecorator('firstContacts')(
|
|
|
+ <span>{this.state.firstContacts}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第一联系人电话" >
|
|
|
+ {getFieldDecorator('firstMobile')(
|
|
|
+ <span>{this.state.firstMobile}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第二联系人" >
|
|
|
+ {getFieldDecorator('secondContacts')(
|
|
|
+ <span>{this.state.secondContacts}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第二联系人电话" >
|
|
|
+ {getFieldDecorator('secondMobile')(
|
|
|
+ <span>{this.state.secondMobile}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第三联系人" >
|
|
|
+ {getFieldDecorator('thirdContacts')(
|
|
|
+ <span>{this.state.thirdContacts}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="第三联系人电话"
|
|
|
+ >
|
|
|
+ {getFieldDecorator('thirdMobile')(
|
|
|
+ <span>{this.state.thirdMobile}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ </Tabs.TabPane>
|
|
|
+ <Tabs.TabPane tab="认证信息" key="2">
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="法人" >
|
|
|
+ {getFieldDecorator('legalPerson')(
|
|
|
+ <span>{this.state.legalPerson}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="法人身份证号" >
|
|
|
+ {getFieldDecorator('legalPersonIdCard')(
|
|
|
+ <span>{this.state.legalPersonIdCard}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="注册资金" >
|
|
|
+ {getFieldDecorator('registeredCapital')(
|
|
|
+ <span>{this.state.registeredCapital}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="营业执照编号" >
|
|
|
+ {getFieldDecorator('licenceNumber')(
|
|
|
+ <span>{this.state.licenceNumber}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="营业执照所在地" >
|
|
|
+ {getFieldDecorator('licenceAddress', {
|
|
|
+ initialValue: this.state.licenceAddress
|
|
|
+ })(
|
|
|
+ <span>{getProvince(this.state.licenceProvince, this.state.licenceCity, this.state.licenceArea)}</span>
|
|
|
+ )}
|
|
|
+ </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>}
|
|
|
+ </div>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="组织机构代码" >
|
|
|
+ {getFieldDecorator('orgCode')(
|
|
|
+ <span>{this.state.orgCode}</span>
|
|
|
+ )}
|
|
|
+ </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>}
|
|
|
+ </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>}
|
|
|
+ </div>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="开户银行" >
|
|
|
+ {getFieldDecorator('banks')(
|
|
|
+ <span>{this.state.banks}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="开户银行支行" >
|
|
|
+ {getFieldDecorator('bankBranch')(
|
|
|
+ <span>{this.state.bankBranch}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="银行卡号" >
|
|
|
+ {getFieldDecorator('bankCardNumber')(
|
|
|
+ <span>{this.state.bankCardNumber}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="开户行所在地" >
|
|
|
+ {getFieldDecorator('locationAddress', {
|
|
|
+ initialValue: this.state.locationAddress
|
|
|
+ })(
|
|
|
+ <span>{getProvince(this.state.locationProvince, this.state.locationCity, this.state.locationArea)}</span>
|
|
|
+ )}
|
|
|
+ </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('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>
|
|
|
+ </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.props.closeDesc }} >取消</Button>
|
|
|
+ </FormItem>
|
|
|
+ </Form >
|
|
|
+ );
|
|
|
+ }
|
|
|
+}));
|
|
|
+
|
|
|
+const OrgCertify = Form.create()(React.createClass({
|
|
|
+ getInitialState() {
|
|
|
+ return {
|
|
|
+ loading: false,
|
|
|
+ tabKey: "1",
|
|
|
+ saveSign: "save",
|
|
|
+ eduLvlOption: [],
|
|
|
+ auditStatusOption: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ loadData(uid) {
|
|
|
+ this.state.data = [];
|
|
|
+ this.setState({
|
|
|
+ loading: true
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ method: "post",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: 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,
|
|
|
+ level: thisData.level,
|
|
|
+
|
|
|
+ aid: thisData.aid, //业务员ID
|
|
|
+ mid: thisData.mid //客户经理ID
|
|
|
+ });
|
|
|
+ this.props.form.resetFields();
|
|
|
+ }.bind(this),
|
|
|
+ }).always(function () {
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ handleSubmit(e) {
|
|
|
if (e) {
|
|
|
e.preventDefault();
|
|
|
};
|
|
@@ -167,16 +553,20 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
this.setState({
|
|
|
loading: true
|
|
|
});
|
|
|
- //金额判断
|
|
|
- if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
|
|
|
- message.warning('请输入0-100以内的金额');
|
|
|
+ // //金额判断
|
|
|
+ // if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
|
|
|
+ // message.warning('请输入0-100以内的金额');
|
|
|
+ // return;
|
|
|
+ // };
|
|
|
+ if ((this.state.auditStatus == "5" && values.level == "0") || (this.state.auditStatus != "5" && values.level != "0")) {
|
|
|
+ message.warning('认证状态和用户等级不匹配!');
|
|
|
return;
|
|
|
};
|
|
|
$.ajax({
|
|
|
method: "POST",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateOrgDetail" : globalConfig.context + "/api/admin/updateOrgDetail",
|
|
|
+ url: globalConfig.context + "/api/admin/updateOrgDetail",
|
|
|
data: {
|
|
|
uid: this.props.uid,
|
|
|
id: this.state.id,
|
|
@@ -209,7 +599,6 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
|
|
|
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,
|
|
@@ -222,6 +611,8 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
locationCity: values.locationAddress[1],
|
|
|
locationProvince: values.locationAddress[0],
|
|
|
|
|
|
+ //auditStatus: this.state.auditStatus,
|
|
|
+ level: values.level,
|
|
|
aid: values.aid, //指派业务员ID
|
|
|
mid: values.mid, //指派客户经理ID
|
|
|
saveSign: this.state.saveSign
|
|
@@ -234,7 +625,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
}
|
|
|
}.bind(this)).always(function () {
|
|
|
this.setState({
|
|
|
- visible: false,
|
|
|
+ loading: false,
|
|
|
saveSign: "save"
|
|
|
});
|
|
|
this.props.handleOk();
|
|
@@ -252,16 +643,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<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) {
|
|
@@ -282,8 +664,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<Tabs.TabPane tab="基本资料" key="1">
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="公司名称"
|
|
|
- >
|
|
|
+ label="公司名称" >
|
|
|
{getFieldDecorator('unitName', {
|
|
|
initialValue: this.state.unitName
|
|
|
})(
|
|
@@ -292,8 +673,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="认证名称"
|
|
|
- >
|
|
|
+ label="认证名称" >
|
|
|
{getFieldDecorator('aftUsername', {
|
|
|
initialValue: this.state.aftUsername
|
|
|
})(
|
|
@@ -302,8 +682,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="身份类型"
|
|
|
- >
|
|
|
+ label="身份类型" >
|
|
|
{getFieldDecorator('identityType', {
|
|
|
initialValue: this.state.identityType
|
|
|
})(
|
|
@@ -315,8 +694,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第一联系人"
|
|
|
- >
|
|
|
+ label="第一联系人" >
|
|
|
{getFieldDecorator('firstContacts', {
|
|
|
initialValue: this.state.firstContacts
|
|
|
})(
|
|
@@ -325,8 +703,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第一联系人电话"
|
|
|
- >
|
|
|
+ label="第一联系人电话" >
|
|
|
{getFieldDecorator('firstMobile', {
|
|
|
initialValue: this.state.firstMobile
|
|
|
})(
|
|
@@ -335,8 +712,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第二联系人"
|
|
|
- >
|
|
|
+ label="第二联系人" >
|
|
|
{getFieldDecorator('secondContacts', {
|
|
|
initialValue: this.state.secondContacts
|
|
|
})(
|
|
@@ -345,8 +721,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第二联系人电话"
|
|
|
- >
|
|
|
+ label="第二联系人电话" >
|
|
|
{getFieldDecorator('secondMobile', {
|
|
|
initialValue: this.state.secondMobile
|
|
|
})(
|
|
@@ -355,8 +730,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第三联系人"
|
|
|
- >
|
|
|
+ label="第三联系人" >
|
|
|
{getFieldDecorator('thirdContacts', {
|
|
|
initialValue: this.state.thirdContacts
|
|
|
})(
|
|
@@ -365,8 +739,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="第三联系人电话"
|
|
|
- >
|
|
|
+ label="第三联系人电话" >
|
|
|
{getFieldDecorator('thirdMobile', {
|
|
|
initialValue: this.state.thirdMobile
|
|
|
})(
|
|
@@ -377,8 +750,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<Tabs.TabPane tab="认证信息" key="2">
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="法人"
|
|
|
- >
|
|
|
+ label="法人" >
|
|
|
{getFieldDecorator('legalPerson', {
|
|
|
initialValue: this.state.legalPerson
|
|
|
})(
|
|
@@ -387,8 +759,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="法人身份证号"
|
|
|
- >
|
|
|
+ label="法人身份证号" >
|
|
|
{getFieldDecorator('legalPersonIdCard', {
|
|
|
initialValue: this.state.legalPersonIdCard
|
|
|
})(
|
|
@@ -397,8 +768,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="注册资金"
|
|
|
- >
|
|
|
+ label="注册资金" >
|
|
|
{getFieldDecorator('registeredCapital', {
|
|
|
initialValue: this.state.registeredCapital
|
|
|
})(
|
|
@@ -407,8 +777,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="营业执照编号"
|
|
|
- >
|
|
|
+ label="营业执照编号" >
|
|
|
{getFieldDecorator('licenceNumber', {
|
|
|
initialValue: this.state.licenceNumber
|
|
|
})(
|
|
@@ -417,8 +786,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="营业执照所在地"
|
|
|
- >
|
|
|
+ label="营业执照所在地" >
|
|
|
{getFieldDecorator('licenceAddress', {
|
|
|
initialValue: this.state.licenceAddress
|
|
|
})(
|
|
@@ -428,8 +796,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<FormItem
|
|
|
labelCol={{ span: 6 }}
|
|
|
wrapperCol={{ span: 18 }}
|
|
|
- label="营业执照图片"
|
|
|
- >
|
|
|
+ label="营业执照图片" >
|
|
|
<div className="idcard-img clearfix">
|
|
|
{this.state.licenceScanningUrl ? <div>
|
|
|
<div className="idcard-imgbox">
|
|
@@ -463,16 +830,14 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
} else if (info.file.status === 'error') {
|
|
|
message.error(`${info.file.name} 文件上传失败。`);
|
|
|
}
|
|
|
- }}
|
|
|
- >
|
|
|
+ }} >
|
|
|
<Button><Icon type="upload" /> 上传营业执照 </Button>
|
|
|
</Upload>
|
|
|
</div>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="组织机构代码"
|
|
|
- >
|
|
|
+ label="组织机构代码" >
|
|
|
{getFieldDecorator('orgCode', {
|
|
|
initialValue: this.state.orgCode
|
|
|
})(
|
|
@@ -482,8 +847,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<FormItem
|
|
|
labelCol={{ span: 6 }}
|
|
|
wrapperCol={{ span: 18 }}
|
|
|
- label="组织机构代码证图片"
|
|
|
- >
|
|
|
+ label="组织机构代码证图片" >
|
|
|
<div className="idcard-img clearfix">
|
|
|
{this.state.orgCodeUrl ? <div>
|
|
|
<div className="idcard-imgbox">
|
|
@@ -514,8 +878,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
} else if (info.file.status === 'error') {
|
|
|
message.error(`${info.file.name} 文件上传失败。`);
|
|
|
}
|
|
|
- }}
|
|
|
- >
|
|
|
+ }} >
|
|
|
<Button><Icon type="upload" /> 上传组织机构代码证 </Button>
|
|
|
</Upload>
|
|
|
</div>
|
|
@@ -523,8 +886,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
<FormItem
|
|
|
labelCol={{ span: 6 }}
|
|
|
wrapperCol={{ span: 18 }}
|
|
|
- label="上年度纳税报表"
|
|
|
- >
|
|
|
+ label="上年度纳税报表" >
|
|
|
<div className="idcard-img clearfix">
|
|
|
{this.state.lastYearTaxReportUrl ? <div>
|
|
|
<div className="idcard-imgbox">
|
|
@@ -555,16 +917,14 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
} else if (info.file.status === 'error') {
|
|
|
message.error(`${info.file.name} 文件上传失败。`);
|
|
|
}
|
|
|
- }}
|
|
|
- >
|
|
|
+ }} >
|
|
|
<Button><Icon type="upload" /> 上传上年度纳税表 </Button>
|
|
|
</Upload>
|
|
|
</div>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="开户银行"
|
|
|
- >
|
|
|
+ label="开户银行" >
|
|
|
{getFieldDecorator('banks', {
|
|
|
initialValue: this.state.banks
|
|
|
})(
|
|
@@ -573,8 +933,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="开户银行支行"
|
|
|
- >
|
|
|
+ label="开户银行支行" >
|
|
|
{getFieldDecorator('bankBranch', {
|
|
|
initialValue: this.state.bankBranch
|
|
|
})(
|
|
@@ -583,8 +942,7 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="银行卡号"
|
|
|
- >
|
|
|
+ label="银行卡号" >
|
|
|
{getFieldDecorator('bankCardNumber', {
|
|
|
initialValue: this.state.bankCardNumber
|
|
|
})(
|
|
@@ -593,87 +951,50 @@ const OrgCertify = Form.create()(React.createClass({
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label="开户行所在地"
|
|
|
- >
|
|
|
+ label="开户行所在地" >
|
|
|
{getFieldDecorator('locationAddress', {
|
|
|
initialValue: this.state.locationAddress
|
|
|
})(
|
|
|
<Cascader options={areaSelect()} 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>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="用户等级" >
|
|
|
+ {getFieldDecorator('level', {
|
|
|
+ initialValue: this.state.level
|
|
|
+ })(
|
|
|
+ <Select placeholder="选择要修改的用户等级" style={{ width: 200 }} >
|
|
|
+ <Select.Option value="0" >Lv.0</Select.Option>
|
|
|
+ <Select.Option value="1" >Lv.1</Select.Option>
|
|
|
+ <Select.Option value="2" >Lv.2</Select.Option>
|
|
|
+ <Select.Option value="3" >Lv.3</Select.Option>
|
|
|
+ <Select.Option value="4" >Lv.4</Select.Option>
|
|
|
+ <Select.Option value="5" >Lv.5</Select.Option>
|
|
|
+ </Select>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="认证状态" >
|
|
|
+ {getFieldDecorator('auditStatus')(
|
|
|
+ <span>{getAuditState(this.state.auditStatus)}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="业务员" >
|
|
|
+ {getFieldDecorator('aid')(
|
|
|
+ <span>{this.props.data.adminName}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="客户经理" >
|
|
|
+ {getFieldDecorator('mid')(
|
|
|
+ <span>{this.props.data.managerName}</span>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
</Tabs.TabPane>
|
|
|
</Tabs>
|
|
|
<FormItem wrapperCol={{ span: 12, offset: 4 }}>
|
|
@@ -726,11 +1047,18 @@ const OrgDesc = React.createClass({
|
|
|
width='600px'
|
|
|
footer=''
|
|
|
className="admin-desc-content">
|
|
|
- <OrgCertify
|
|
|
- visible={this.state.visible}
|
|
|
+ {window.showAuditStatus ? <OrgShow
|
|
|
uid={this.props.data.id}
|
|
|
+ data={this.props.data}
|
|
|
closeDesc={this.handleCancel}
|
|
|
+ visible={this.state.visible}
|
|
|
handleOk={this.handleOk} />
|
|
|
+ : <OrgCertify
|
|
|
+ uid={this.props.data.id}
|
|
|
+ data={this.props.data}
|
|
|
+ closeDesc={this.handleCancel}
|
|
|
+ visible={this.state.visible}
|
|
|
+ handleOk={this.handleOk} />}
|
|
|
</Modal>
|
|
|
</Spin>
|
|
|
</div>
|