mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 12:02:51 +00:00
27 lines
502 B
Vue
27 lines
502 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},
|
|
name: "reportEdit"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|