yyb
2026-05-21 39bd144188542db1e77cb56d9baf83e4cded7aee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
  OA / 报销管理 / 费用报销
  路由:/pages/oa/ReimburseManage/cost-reimburse/index
-->
<template>
  <OaListPage v-if="config"
              :page-key="pageKey"
              :page-config="config" />
</template>
 
<script setup>
  /** OA - 报销管理 - 费用报销 */
  import OaListPage from "../../_components/OaListPage.vue";
  import { useOaPage } from "../../_utils/useOaPage.js";
 
  const pageKey = "ReimburseManage/cost-reimburse";
  const { config } = useOaPage(pageKey);
</script>