信用报告查询完成
This commit is contained in:
33
project/xiushan/apps/AppCreditReport/companyDetail.vue
Normal file
33
project/xiushan/apps/AppCreditReport/companyDetail.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<section class="companyDetail">
|
||||
<ai-detail>
|
||||
<ai-title slot="title" title="企业信用报告" isShowBottomBorder>
|
||||
<template #rightBtn>
|
||||
<el-button @click="$router.push({})">返回信用报告</el-button>
|
||||
</template>
|
||||
</ai-title>
|
||||
<template #content>
|
||||
<enterprise-dialog slot="content" :enterpriseId="$route.query.id" v-bind="$props"/>
|
||||
</template>
|
||||
</ai-detail>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EnterpriseDialog from "../../components/enterpriseDialog";
|
||||
|
||||
export default {
|
||||
name: "companyDetail",
|
||||
components: {EnterpriseDialog},
|
||||
props: {
|
||||
instance: Function,
|
||||
dict: Object,
|
||||
permissions: Function
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.companyDetail {
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user