|
@@ -185,6 +185,8 @@
|
|
|
<el-table-column label="余额" align="center" prop="balance" />
|
|
<el-table-column label="余额" align="center" prop="balance" />
|
|
|
<el-table-column label="累计金额" align="center" prop="totalMoney" />
|
|
<el-table-column label="累计金额" align="center" prop="totalMoney" />
|
|
|
<el-table-column label="登录帐号" align="center" prop="account" width="150px" />
|
|
<el-table-column label="登录帐号" align="center" prop="account" width="150px" />
|
|
|
|
|
+ <el-table-column label="证照重新上传倒计时" align="center" prop="daysDiff" width="150px">
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="150px"/>
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="150px"/>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="300px">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="300px">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -1162,6 +1164,12 @@ export default {
|
|
|
// 清除刚上传的图片
|
|
// 清除刚上传的图片
|
|
|
this.form.businessLicense = '';
|
|
this.form.businessLicense = '';
|
|
|
this.$forceUpdate();
|
|
this.$forceUpdate();
|
|
|
|
|
+ }else {
|
|
|
|
|
+ // 检查成功,回填数据
|
|
|
|
|
+ this.form.legalPersonName = response.data.person; // 法人姓名
|
|
|
|
|
+ this.form.unifiedSocialCreditCode = response.data.regNum; // 统一社会信用代码
|
|
|
|
|
+ this.form.businessScope = response.data.businessStr; // 营业范围
|
|
|
|
|
+ this.form.businessCode = response.data.regNum; // 营业执照编号
|
|
|
}
|
|
}
|
|
|
} else {
|
|
} else {
|
|
|
this.$message.error('营业执照校验接口调用失败');
|
|
this.$message.error('营业执照校验接口调用失败');
|