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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<template>
<div class="customer-management-information-content h-scroller">
<table class="customer-management-information-form">
<tr>
<td style="width: 90px">关联关系</td>
<td style="width: 90px">关系细类</td>
<td style="width: 90px">客户名称</td>
<td style="width: 90px">业务品种</td>
<td style="width: 80px">币种</td>
<td style="width: 120px">借据金额(元)</td>
<td style="width: 120px">借据余额(元)</td>
<td style="width: 80px">笔数</td>
<td style="width: 90px">风险分类</td>
<td style="width: 90px">放款日期</td>
<td style="width: 90px">到期日期</td>
<td style="width: 90px">贷款形式</td>
<td style="width: 80px">担保</td>
<td style="width: 90px">是否展期</td>
</tr>
<tr>
<td></td>
<td></td>
<td>无数据</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
* @Description 客户及高管在他行授信情况(征信)
* @Author JiangTao
* @Date 2021-11-10 下午 04:23
*/
@Component({
name: "Credit",
})
export default class Credit extends Vue {}
</script>
<style scoped>
.customer-management-information-form {
width: 1290px;
}
.customer-management-information-content::-webkit-scrollbar {
width: 5px;
height: 12px;
}
</style>