| 123456789101112131415161718192021 |
- <template>
- <main class="safety-platform-container__main">
- this is record page
- </main>
- <footer class="safety-platform-container__footer" v-if="status === CONFIRM_STATUS_TYPE.WAIT_CONFIRM">
- <el-button type="primary">审批</el-button>
- </footer>
- </template>
- <script lang="ts" setup>
- import { CONFIRM_STATUS_TYPE } from '../constants';
- defineProps<{
- id: number;
- status: number;
- }>();
- </script>
- <style lang="scss" scoped>
- @use '@/styles/page-details-layout.scss' as *;
- </style>
|