<template> <div class="d-page d-flex flex-column"> <title-bar :title="title" @clickLef="onClick"> <van-icon slot="left" name="cross" size="24" /> </title-bar> <div class="h-scroller flex-1-dhc"> <judicial-frozen-deduction-information></judicial-frozen-deduction-information> </div> </div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; import TitleBar from "@/components/general/TitleBar.vue"; import JudicialFrozenDeductionInformation from "@/components/customer-information/operating-risk-information/judicial-deduction/JudicialFrozenDeductionInformation.vue"; /** * @Description 司法查冻扣 * @Author JiangTao * @Date 2021-11-10 下午 03:14 */ @Component({ name: "JudicialDeduction", components: { TitleBar, JudicialFrozenDeductionInformation }, }) export default class JudicialDeduction extends Vue { title = "司法查冻扣"; // 页面标题 indexList = ["司法查冻扣信息"]; onClick() { console.log(111111); } mounted() {} } </script> <style scoped></style>