BUG 30522

This commit is contained in:
aixianling
2022-07-06 17:20:58 +08:00
parent d87c947ca1
commit dd4b58312e

View File

@@ -51,7 +51,7 @@
</template>
<template v-if="currentMenu==1">
<ai-card title="申请表单">
<template v-if="!!detail.objId" #right>
<template v-if="!!detailObj.objId" #right>
<ai-dialog-btn text="信息报告" :dialog-title="cpConfig.dialogTitle">
<component :is="cpConfig.component" v-bind="cpConfig.params"/>
</ai-dialog-btn>
@@ -373,7 +373,7 @@ export default {
},
titleType: v => v.form.pass ? '审批同意' : '审批拒绝',
cpConfig() {
const {objId, objType} = this.detail
const {objId, objType} = this.detailObj
let configs = {
0: {dialogTitle: "个人信息报告", params: {...this.$props, personId: objId}, component: PersonCreditReport},
1: {dialogTitle: "企业信息报告", params: {...this.$props, enterpriseId: objId}, component: EnterpriseDialog},