|
@@ -38,7 +38,7 @@
|
|
|
<el-form-item label="接包数量" prop="taskCount" v-if="this.type == 0">
|
|
|
<span>{{authentication.taskCount}}</span>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="审核通过时间" prop="checkTime">
|
|
|
+ <el-form-item label="认证时间" prop="checkTime">
|
|
|
<span>{{dateFormat(new Date(authentication.checkTime),'yyyy-MM-dd HH:mm:ss')}}</span>
|
|
|
</el-form-item>
|
|
|
|
|
@@ -57,7 +57,7 @@
|
|
|
getAllReportTypes,
|
|
|
defaultValue,
|
|
|
storageGet,
|
|
|
- getCurrentAgencyAuthInfo,
|
|
|
+ getAgencyAuthInfoCommon,
|
|
|
getAllAgencyResourceTypes,
|
|
|
getAllServiceTypes,
|
|
|
} from '@/js/index'
|
|
@@ -76,7 +76,7 @@
|
|
|
authentication: {
|
|
|
mobile: '',
|
|
|
evaluationAgencyName: '',
|
|
|
- bankAccount: '',
|
|
|
+ // bankAccount: '',
|
|
|
address: '',
|
|
|
evaluationAgencyAbilityList: [],
|
|
|
evaluationAgencyResourceList: [],
|
|
@@ -108,7 +108,7 @@
|
|
|
//加载数据
|
|
|
getAuthInfo() {
|
|
|
this.showLoading()
|
|
|
- getCurrentAgencyAuthInfo(this.userId, this.getAuthInfoSuccess, this.getAuthInfoFail)
|
|
|
+ getAgencyAuthInfoCommon(this.userId, this.getAuthInfoSuccess, this.getAuthInfoFail)
|
|
|
},
|
|
|
getAuthInfoSuccess(res) {
|
|
|
this.hideLoading()
|
|
@@ -116,11 +116,11 @@
|
|
|
this.authentication.evaluationAgencyName = res.data.evaluationAgencyName == null ? '暂未填写' : res.data.evaluationAgencyName
|
|
|
this.authentication.evaluationAgencyAbilityList = res.data.evaluationAgencyAbilityList == null ? [] : res.data.evaluationAgencyAbilityList
|
|
|
this.authentication.evaluationAgencyResourceList = res.data.evaluationAgencyResourceList == null ? [] : res.data.evaluationAgencyResourceList
|
|
|
- this.authentication.bankAccount = res.data.bankAccount == null ? '暂未填写' : res.data.bankAccount
|
|
|
+ // this.authentication.bankAccount = res.data.bankAccount == null ? '暂未填写' : res.data.bankAccount
|
|
|
this.authentication.address = res.data.address == null ? '暂未填写' : res.data.address
|
|
|
this.authentication.authStatus = res.data.authStatus
|
|
|
this.authentication.legalPersonName = res.data.legalPersonName == null ? '暂未填写' : res.data.legalPersonName
|
|
|
- this.authentication.explain = res.data.explain
|
|
|
+ // this.authentication.explain = res.data.explain
|
|
|
this.authentication.taskCount = res.data.taskCount
|
|
|
this.authentication.checkTime = res.data.checkTime
|
|
|
},
|