| | |
| | | <!-- |
| | | OA / 报销管理 / 差旅报销 |
| | | 路由:/pages/oa/ReimburseManage/travel-reimburse/index |
| | | OA / 报销管理 / 差旅报销(审批实例列表) |
| | | --> |
| | | <template> |
| | | <OaListPage v-if="config" |
| | | :page-key="pageKey" |
| | | :page-config="config" /> |
| | | <ApprovalInstanceListPage :module-key="APPROVAL_MODULE_KEYS.TRAVEL_REIMBURSE" /> |
| | | </template> |
| | | |
| | | <script setup> |
| | | /** OA - 报销管理 - 差旅报销 */ |
| | | import OaListPage from "../../_components/OaListPage.vue"; |
| | | import { useOaPage } from "../../_utils/useOaPage.js"; |
| | | |
| | | const pageKey = "ReimburseManage/travel-reimburse"; |
| | | const { config } = useOaPage(pageKey); |
| | | import ApprovalInstanceListPage from "../../_components/ApprovalInstanceListPage.vue"; |
| | | import { APPROVAL_MODULE_KEYS } from "../../_utils/approvalModuleRegistry.js"; |
| | | </script> |