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
<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>
</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: "ApplicationStatusForm",
})
export default class ApplicationStatusForm extends Vue {}
</script>
<style scoped></style>