ExposureTable.vue 991 字节
<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">
      <exposure-table-information></exposure-table-information>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import ExposureTableInformation from "@/components/customer-information/operating-risk-information/exposure-table/ExposureTableInformation.vue";
/**
 * @Description 曝光台
 * @Author JiangTao
 * @Date 2021-11-10 下午 03:14
 */
@Component({
  name: "ExposureTable",
  components: { TitleBar, ExposureTableInformation },
})
export default class ExposureTable extends Vue {
  title = "曝光台"; // 页面标题

  indexList = ["曝光台信息"];
  onClick() {
    console.log(111111);
  }
  mounted() {}
}
</script>

<style scoped></style>