|
@@ -139,7 +139,7 @@
|
|
|
<img v-if="enterpriseForm.idCardPositivePhoto" :src="enterpriseForm.idCardPositivePhoto" class="avatar">
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon card-uploader-icon"></i>
|
|
|
</el-upload>
|
|
|
- <div style="text-align: center">身份证正面照<span style="color:red">(必填)</span></div>
|
|
|
+ <div style="text-align: center">身份证正面照<span style="color:red">(选填)</span></div>
|
|
|
</div>
|
|
|
<div style="width: 280px;margin-top: 50px">
|
|
|
<el-upload
|
|
@@ -156,7 +156,7 @@
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
- <div style="text-align: center">身份证反面照<span style="color:red">(必填)</span></div>
|
|
|
+ <div style="text-align: center">身份证反面照<span style="color:red">(选填)</span></div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="15">
|
|
@@ -242,7 +242,7 @@
|
|
|
{required: true, message: '请输入法人姓名', trigger: 'blur'},
|
|
|
],
|
|
|
idCardNum: [
|
|
|
- {required: true, message: '请输入身份证号码', trigger: 'blur'},
|
|
|
+ {required: false, message: '请输入身份证号码', trigger: 'blur'},
|
|
|
],
|
|
|
address: [
|
|
|
{required: true, message: '请输入家庭或单位地址', trigger: 'blur'},
|
|
@@ -283,14 +283,14 @@
|
|
|
return false
|
|
|
}
|
|
|
})
|
|
|
- if (!this.enterpriseForm.idCardPositivePhoto) {
|
|
|
- notify('error', '身份证正面照片上传不规范');
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (!this.enterpriseForm.idCardBackPhoto) {
|
|
|
- notify('error', '身份证反面照片上传不规范');
|
|
|
- return false;
|
|
|
- }
|
|
|
+ //if (!this.enterpriseForm.idCardPositivePhoto) {
|
|
|
+ //notify('error', '身份证正面照片上传不规范');
|
|
|
+ //return false;
|
|
|
+ //}
|
|
|
+ //if (!this.enterpriseForm.idCardBackPhoto) {
|
|
|
+ //notify('error', '身份证反面照片上传不规范');
|
|
|
+ //return false;
|
|
|
+ //}
|
|
|
let firstSubmit = this.$route.query.type;
|
|
|
let data = {...this.enterpriseForm, ...this.enterpriseForm1};
|
|
|
this.showLoading();
|