UnifiedCustomerCreditView.vue 1.6 KB
<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>