信用报告查询完成

This commit is contained in:
aixianling
2022-07-05 15:09:53 +08:00
parent 5219ca9a3f
commit a75c2d254f
8 changed files with 418 additions and 326 deletions

View File

@@ -0,0 +1,33 @@
<template>
<section class="personDetail">
<ai-detail>
<ai-title slot="title" title="个人信用报告" isShowBottomBorder>
<template #rightBtn>
<el-button @click="$router.push({})">返回信用报告</el-button>
</template>
</ai-title>
<template #content>
<person-credit-report slot="content" :personId="$route.query.id" v-bind="$props"/>
</template>
</ai-detail>
</section>
</template>
<script>
import PersonCreditReport from "../../components/personCreditReport";
export default {
name: "personDetail",
components: {PersonCreditReport},
props: {
instance: Function,
dict: Object,
permissions: Function
}
}
</script>
<style lang="scss" scoped>
.personDetail {
}
</style>