fix(加班申请): 去掉撤销相关的状态和动作。
feat(工作报告): 开发工作报告功能
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
import SharedWorkReportDetailDialog from '../../shared/components/detail-dialog.vue';
|
||||
import type { WorkReportRow } from '../../shared/types';
|
||||
|
||||
defineOptions({ name: 'MonthlyReportDetailPage' });
|
||||
|
||||
const visible = defineModel<boolean>('visible', { default: false });
|
||||
|
||||
defineProps<{
|
||||
rowData?: WorkReportRow | null;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<SharedWorkReportDetailDialog v-model:visible="visible" report-type="monthly" :row-data="rowData" />
|
||||
</template>
|
||||
Reference in New Issue
Block a user