回复单和整改单

This commit is contained in:
Teo
2025-07-07 19:56:03 +08:00
parent 3259cc6b23
commit 914cd97282
15 changed files with 511 additions and 130 deletions

View File

@ -116,7 +116,7 @@ import { SafetyInspectionVO } from '@/api/safety/safetyInspection/types';
import { getSafetyInspection } from '@/api/safety/safetyInspection';
import { downLoadOss, listByIds } from '@/api/system/oss';
import { OssVO } from '@/api/system/oss/types';
import dayjs from 'dayjs';
import { dayjs } from 'element-plus';
interface Props {
safetyInspectionId?: string | number;

View File

@ -137,7 +137,8 @@
import { addSafetyLog, delSafetyLog, getSafetyLog, listSafetyLog, updateSafetyLog } from '@/api/safety/safetyLog';
import { SafetyLogForm, SafetyLogQuery, SafetyLogVO } from '@/api/safety/safetyLog/types';
import { useUserStoreHook } from '@/store/modules/user';
import dayjs from 'dayjs';
import { dayjs } from 'element-plus';
import SafetyLogDetailDialog from '@/views/safety/safetyLog/component/SafetyLogDetailDialog.vue';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;

View File

@ -24,7 +24,7 @@
<script setup lang="ts">
import { getTeamMeeting } from '@/api/safety/teamMeeting';
import { TeamMeetingVO } from '@/api/safety/teamMeeting/types';
import dayjs from 'dayjs';
import { dayjs } from 'element-plus';
interface Props {
teamMeetingId?: string | number;

View File

@ -97,12 +97,14 @@
</template>
</el-dialog>
<el-dialog title="站班会详情" v-model="showDetailDrawer" width="800px">
<team-meeting-detail-drawer :team-meeting-id="currentTeamMeetingId" />
<TeamMeetingDetailDrawer :team-meeting-id="currentTeamMeetingId" />
</el-dialog>
</div>
</template>
<script setup name="TeamMeeting" lang="ts">
console.log(111);
import { addTeamMeeting, delTeamMeeting, getTeamMeeting, listTeamMeeting, updateTeamMeeting } from '@/api/safety/teamMeeting';
import { TeamMeetingForm, TeamMeetingQuery, TeamMeetingVO } from '@/api/safety/teamMeeting/types';
import { useUserStoreHook } from '@/store/modules/user';