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
<template>
<div class="d-page d-flex flex-column">
<title-bar title="客户统一授信视图" @clickLeft="onClick">
<!-- <van-icon slot="left" name="cross" size="24" />-->
</title-bar>
<div>
<unified-customer-credit-view-table></unified-customer-credit-view-table>
</div>
<!-- <div class="information-container h-scroller flex-1-dhc">-->
<!-- <van-index-bar highlight-color="#F79400" :index-list="indexList">-->
<!-- <van-index-anchor index="统一授信视图及提用表">-->
<!-- <sub-title>统一授信视图及提用表</sub-title>-->
<!-- </van-index-anchor>-->
<!-- <unified-customer-credit-view-table></unified-customer-credit-view-table>-->
<!-- </van-index-bar>-->
<!-- </div>-->
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import UnifiedCustomerCreditViewTable from "@/components/customer-information/business-application-status/unified-customer-credit-view/UnifiedCustomerCreditViewTable.vue";
/**
* @Description 客户统一授信视图
* @Author JiangTao
* @Date 2021-11-10 下午 03:17
*/
@Component({
name: "UnifiedCustomerCreditView",
components: { TitleBar, UnifiedCustomerCreditViewTable },
})
export default class UnifiedCustomerCreditView extends Vue {
pageTitle = ""; // 页面标题
indexList = ["统一授信视图及提用表"];
onClick() {
this.$router.go(-1);
}
mounted() {
this.pageTitle = this.$route.meta?.name;
}
}
</script>
<style scoped></style>