|
@@ -23,10 +23,10 @@
|
|
<el-input v-if="isModifyMode" v-model="authentication.name"></el-input>
|
|
<el-input v-if="isModifyMode" v-model="authentication.name"></el-input>
|
|
<!--<span v-if="!isModifyMode">{{authentication.name}}</span>-->
|
|
<!--<span v-if="!isModifyMode">{{authentication.name}}</span>-->
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="机构电话" prop="name">
|
|
|
|
- <el-input v-if="isModifyMode" v-model="authentication.mobile"></el-input>
|
|
|
|
- <!--<span v-if="!isModifyMode">{{authentication.name}}</span>-->
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
+ <!--<el-form-item label="机构电话" prop="name">-->
|
|
|
|
+ <!--<el-input v-if="isModifyMode" v-model="authentication.mobile"></el-input>-->
|
|
|
|
+ <!--<!–<span v-if="!isModifyMode">{{authentication.name}}</span>–>-->
|
|
|
|
+ <!--</el-form-item>-->
|
|
<el-form-item label="对公账户" prop="name">
|
|
<el-form-item label="对公账户" prop="name">
|
|
<el-input v-if="isModifyMode" v-model="authentication.bankAccount"></el-input>
|
|
<el-input v-if="isModifyMode" v-model="authentication.bankAccount"></el-input>
|
|
<!--<span v-if="!isModifyMode">{{authentication.bankAccount}}</span>-->
|
|
<!--<span v-if="!isModifyMode">{{authentication.bankAccount}}</span>-->
|
|
@@ -151,10 +151,11 @@ export default {
|
|
evaluationAgencyName: this.authentication.name,
|
|
evaluationAgencyName: this.authentication.name,
|
|
bankAccount: this.authentication.bankAccount,
|
|
bankAccount: this.authentication.bankAccount,
|
|
address: this.authentication.address,
|
|
address: this.authentication.address,
|
|
- abilities: this.authentication.ability,
|
|
|
|
- resources: this.authentication.resource,
|
|
|
|
|
|
+ evaluationAgencyAbilityList: this.authentication.ability,
|
|
|
|
+ evaluationAgencyResourceList: this.authentication.resource,
|
|
agencyPhoto: this.authentication.photoUrl,
|
|
agencyPhoto: this.authentication.photoUrl,
|
|
}
|
|
}
|
|
|
|
+ console.log(newAuthentication)
|
|
Http.post(Apis.USER.SUBMIT_AGENCY_AUTHENTICATION_INFO.replace('{userId}', this.user.userVO.id), newAuthentication).then((res) => {
|
|
Http.post(Apis.USER.SUBMIT_AGENCY_AUTHENTICATION_INFO.replace('{userId}', this.user.userVO.id), newAuthentication).then((res) => {
|
|
console.log(res)
|
|
console.log(res)
|
|
notify('success', '认证信息上传成功')
|
|
notify('success', '认证信息上传成功')
|