| | |
| | | /> |
| | | </ContentWrap> |
| | | </el-drawer> |
| | | <!-- 快照弹窗 --> |
| | | <SuggestSnapshot ref="suggestSnapshotRef" @success="getList" /> |
| | | </template> |
| | | <script lang="ts" setup> |
| | | import type {DrawerProps} from 'element-plus' |
| | | import { getSuggestOperationRecordPage } from '@/api/model/sche/suggest/suggestOperationRecord'; |
| | | import SuggestSnapshot from './suggestSnapshot.vue' |
| | | import {ref} from "vue"; |
| | | |
| | | defineOptions({name: 'SuggestOperationRecord'}) |
| | |
| | | getList() |
| | | } |
| | | |
| | | /** 快照 */ |
| | | const suggestSnapshotRef = ref() |
| | | const openSnapshot = (id?: string) => { |
| | | suggestSnapshotRef.value.open(id) |
| | | } |
| | | |
| | | /** 打开弹窗 */ |
| | | const open = async (modelId?: string, scheduleTime?: string) => { |
| | | drawer.value = true |