<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">
<judgment-document-information></judgment-document-information>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import JudgmentDocumentInformation from "@/components/customer-information/operating-risk-information/judgment/JudgmentDocumentInformation.vue";
/**
* @Description 裁判文书
* @Author JiangTao
* @Date 2021-11-10 下午 03:13
*/
@Component({
name: "Judgment",
components: { JudgmentDocumentInformation, TitleBar },
})
export default class Judgment extends Vue {
title = "裁判文书";
onClick() {
console.log(111111);
}
mounted() {
}
}
</script>
<style scoped></style>
-
由 jiangzaicheng 提交于b6851288