CaseProcess.vue 969 字节
<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">
      <case-flow-information></case-flow-information>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import CaseFlowInformation from "@/components/customer-information/operating-risk-information/case-process/CaseFlowInformation.vue";
/**
 * @Description 案件流程
 * @Author JiangTao
 * @Date 2021-11-10 下午 03:14
 */
@Component({
  name: "CaseProcess",
  components: { TitleBar, CaseFlowInformation },
})
export default class CaseProcess extends Vue {
  title = "案件流程"; // 页面标题

  indexList = ["案件流程信息"];
  onClick() {
    console.log(111111);
  }
  mounted() {}
}
</script>

<style scoped></style>