1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template>
<div class="content">
<div class="customer-management-information-content">
<table class="customer-management-information-form">
<tr>
<td>关系类型</td>
<td>客户类型</td>
<td>业务品种</td>
<td>合同金额(元)</td>
<td>借据金额(元)</td>
<td>贷款状态</td>
<td>风险分类</td>
<td>所处阶段</td>
</tr>
<tr>
<td></td>
<td></td>
<td>无数据</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
* @Description 客户及高管在我行授信情况(个贷)
* @Author JiangTao
* @Date 2021-11-10 下午 04:22
*/
@Component({
name: "PersonalLoan",
})
export default class PersonalLoan extends Vue {}
</script>
<style scoped></style>