2022-03-16 09:04:00 +08:00

22 lines
453 B
Vue

<template>
<div class="electron-report">
<PageTitle :title="$L('添加/编辑报告')"/>
<ReportEdit :id="$A.runNum(this.$route.params.id)"/>
</div>
</template>
<style lang="scss" scoped>
.electron-report {
height: 100%;
display: flex;
flex-direction: column;
overflow: auto;
}
</style>
<script>
import ReportEdit from "../manage/components/ReportEdit"
export default {
components: {ReportEdit},
}
</script>