- <template>
- <ApprovalIndex ref="pendingApproval" :current-task-type="taskType"></ApprovalIndex>
- </template>
- <script setup>
- import ApprovalIndex from '../components/approvalIndex.vue'
- import { ref } from 'vue'
- /**
- * pendingApproval 待审批
- * myApplication 我的申请
- * myReceived 我收到的
- * pendingClaim 认领任务
- * approved 已审批
- */
- const taskType = ref('pendingApproval')
- </script>
|