<template> <div class="d-page d-flex flex-column"> <title-bar :title="title" @clickLeft="onClick"> <van-icon slot="left" name="cross" size="24" /> </title-bar> <div class=" h-scroller flex-1-dhc"> <preliminary-screening-of-history></preliminary-screening-of-history> </div> </div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; import TitleBar from "@/components/general/TitleBar.vue"; import PreliminaryScreeningOfHistory from "@/components/customer-information/business-application-status/customer-preliminary-screening-history/PreliminaryScreeningOfHistory.vue"; /** * @Description 客户评级及初筛历史 * @Author JiangTao * @Date 2021-11-10 下午 03:16 */ @Component({ name: "CustomerPreliminaryScreeningHistory", components: { TitleBar, PreliminaryScreeningOfHistory }, }) export default class CustomerPreliminaryScreeningHistory extends Vue { title = "初筛历史"; // 页面标题 indexList = ["客户初筛历史"]; onClick() { this.$router.go(-1); } mounted() {} } </script> <style scoped></style>