|
@@ -18,11 +18,18 @@ const Content = Form.create()(React.createClass({
|
|
|
if (data.data) {
|
|
|
this.setState({
|
|
|
unitName: data.data.unitName,
|
|
|
- idNumber: data.data.idNumber,
|
|
|
+ licenceNumber: data.data.licenceNumber,
|
|
|
+ licenceScanningUrl: data.data.licenceScanningUrl,
|
|
|
+ orgCode: data.data.orgCode,
|
|
|
+ orgCodeUrl: data.data.orgCodeUrl,
|
|
|
+ lastYearTaxReportUrl: data.data.lastYearTaxReportUrl,
|
|
|
contactMobile: data.data.contactMobile,
|
|
|
- bankName: data.data.bankName,
|
|
|
bankAccount: data.data.bankAccount,
|
|
|
- bankCardNumber: data.data.bankCardNumber
|
|
|
+ banks: data.data.banks,
|
|
|
+ bankBranch: data.data.bankBranch,
|
|
|
+ bankCardNumber: data.data.bankCardNumber,
|
|
|
+ legalPerson: data.data.legalPerson,
|
|
|
+ legalPersonIdCard: data.data.legalPersonIdCard,
|
|
|
});
|
|
|
} else {
|
|
|
message.warning(data.error[0].message);
|
|
@@ -74,14 +81,14 @@ const Content = Form.create()(React.createClass({
|
|
|
const FormItem = Form.Item;
|
|
|
const { getFieldDecorator } = this.props.form;
|
|
|
const formItemLayout = {
|
|
|
- labelCol: { span: 4 },
|
|
|
+ labelCol: { span: 6 },
|
|
|
wrapperCol: { span: 12 },
|
|
|
};
|
|
|
const _me = this;
|
|
|
return (
|
|
|
<Spin spinning={this.state.loading} className="certify-spin">
|
|
|
<Form horizontal onSubmit={this.handleSubmit} className="certify-form">
|
|
|
- <FormItem wrapperCol={{ span: 12, offset: 4 }}>
|
|
|
+ <FormItem wrapperCol={{ span: 12, offset: 6 }}>
|
|
|
<p className="certify-title">请确认提交的企业信息</p>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
@@ -97,18 +104,48 @@ const Content = Form.create()(React.createClass({
|
|
|
<span>{this.state.licenceNumber}</span>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
- labelCol={{ span: 4 }}
|
|
|
+ labelCol={{ span: 6 }}
|
|
|
wrapperCol={{ span: 18 }}
|
|
|
label="营业执照副本扫描件"
|
|
|
>
|
|
|
<div className="idcard-img clearfix">
|
|
|
<div className="idcard-imgbox">
|
|
|
- <img src={globalConfig.context + '/open/writeImage?path=' + this.state.positiveIdUrl } alt=""
|
|
|
- onClick={(e)=>{window.open(e.target.src)}}/>
|
|
|
+ <img src={globalConfig.context + '/open/writeImage?path=' + this.state.positiveIdUrl} alt="点击查看大图"
|
|
|
+ onClick={(e) => { window.open(e.target.src) }} />
|
|
|
</div>
|
|
|
</div>
|
|
|
</FormItem>
|
|
|
- <FormItem wrapperCol={{ span: 12, offset: 4 }}>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="组织机构代码"
|
|
|
+ >
|
|
|
+ <span>{this.state.orgCode}</span>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ labelCol={{ span: 6 }}
|
|
|
+ wrapperCol={{ span: 18 }}
|
|
|
+ label="组织机构代码证"
|
|
|
+ >
|
|
|
+ <div className="idcard-img clearfix">
|
|
|
+ <div className="idcard-imgbox">
|
|
|
+ <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
|
|
|
+ onClick={(e) => { window.open(e.target.src) }} />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ labelCol={{ span: 6 }}
|
|
|
+ wrapperCol={{ span: 18 }}
|
|
|
+ label="上年度纳税报表"
|
|
|
+ >
|
|
|
+ <div className="idcard-img clearfix">
|
|
|
+ <div className="idcard-imgbox">
|
|
|
+ <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
|
|
|
+ onClick={(e) => { window.open(e.target.src) }} />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem wrapperCol={{ span: 12, offset: 6 }}>
|
|
|
<p className="certify-title">请确认银行卡信息</p>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
@@ -141,14 +178,29 @@ const Content = Form.create()(React.createClass({
|
|
|
>
|
|
|
<span>{this.state.contactMobile}</span>
|
|
|
</FormItem>
|
|
|
- <FormItem wrapperCol={{ span: 18, offset: 4 }}>
|
|
|
+ <FormItem wrapperCol={{ span: 12, offset: 6 }}>
|
|
|
+ <p className="certify-title">请确认法人信息</p>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="法人真实姓名"
|
|
|
+ >
|
|
|
+ <span>{this.state.legalPerson}</span>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem
|
|
|
+ {...formItemLayout}
|
|
|
+ label="法人身份证号"
|
|
|
+ >
|
|
|
+ <span>{this.state.legalPersonIdCard}</span>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem wrapperCol={{ span: 18, offset: 6 }}>
|
|
|
<span style={{ 'color': '#ea0862' }}>
|
|
|
<Icon type="exclamation-circle" />
|
|
|
- 提醒:银行卡号、身份证号码,认证成功之前,最多只能申请认证3次,
|
|
|
- 认证成功后,不能再申请认证。
|
|
|
+ 提醒:银行卡号、营业执照号码、组织机构代码证号码,认证成功之前
|
|
|
+ 最多只能申请认证3次;认证成功后,不能再申请认证。
|
|
|
</span>
|
|
|
</FormItem>
|
|
|
- <FormItem wrapperCol={{ span: 12, offset: 4 }}>
|
|
|
+ <FormItem wrapperCol={{ span: 12, offset: 6 }}>
|
|
|
<Button className="set-submit" type="primary" htmlType="submit">下一步</Button>
|
|
|
<Button className="exit" type="ghost" onClick={_me.changeStep}>返回修改</Button>
|
|
|
</FormItem>
|