From abcb308a721e02411d56c40d270f375dfa527a0c Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期四, 21 五月 2026 15:35:17 +0800
Subject: [PATCH] 1
---
src/pages/oa/ReimburseManage/travel-reimburse/index.vue | 15 +++++++++++----
src/pages/oa/ReimburseManage/cost-reimburse/index.vue | 15 +++++++++++----
2 files changed, 22 insertions(+), 8 deletions(-)
diff --git a/src/pages/oa/ReimburseManage/cost-reimburse/index.vue b/src/pages/oa/ReimburseManage/cost-reimburse/index.vue
index 52fb9a1..5343c75 100644
--- a/src/pages/oa/ReimburseManage/cost-reimburse/index.vue
+++ b/src/pages/oa/ReimburseManage/cost-reimburse/index.vue
@@ -1,11 +1,18 @@
<!--
- OA / 鎶ラ攢绠$悊 / 璐圭敤鎶ラ攢锛堝鎵瑰疄渚嬪垪琛級
+ OA / 鎶ラ攢绠$悊 / 璐圭敤鎶ラ攢
+ 璺敱锛�/pages/oa/ReimburseManage/cost-reimburse/index
-->
<template>
- <ApprovalInstanceListPage :module-key="APPROVAL_MODULE_KEYS.COST_REIMBURSE" />
+ <OaListPage v-if="config"
+ :page-key="pageKey"
+ :page-config="config" />
</template>
<script setup>
- import ApprovalInstanceListPage from "../../_components/ApprovalInstanceListPage.vue";
- import { APPROVAL_MODULE_KEYS } from "../../_utils/approvalModuleRegistry.js";
+ /** OA - 鎶ラ攢绠$悊 - 璐圭敤鎶ラ攢 */
+ import OaListPage from "../../_components/OaListPage.vue";
+ import { useOaPage } from "../../_utils/useOaPage.js";
+
+ const pageKey = "ReimburseManage/cost-reimburse";
+ const { config } = useOaPage(pageKey);
</script>
diff --git a/src/pages/oa/ReimburseManage/travel-reimburse/index.vue b/src/pages/oa/ReimburseManage/travel-reimburse/index.vue
index 41126a0..df4dac1 100644
--- a/src/pages/oa/ReimburseManage/travel-reimburse/index.vue
+++ b/src/pages/oa/ReimburseManage/travel-reimburse/index.vue
@@ -1,11 +1,18 @@
<!--
- OA / 鎶ラ攢绠$悊 / 宸梾鎶ラ攢锛堝鎵瑰疄渚嬪垪琛級
+ OA / 鎶ラ攢绠$悊 / 宸梾鎶ラ攢
+ 璺敱锛�/pages/oa/ReimburseManage/travel-reimburse/index
-->
<template>
- <ApprovalInstanceListPage :module-key="APPROVAL_MODULE_KEYS.TRAVEL_REIMBURSE" />
+ <OaListPage v-if="config"
+ :page-key="pageKey"
+ :page-config="config" />
</template>
<script setup>
- import ApprovalInstanceListPage from "../../_components/ApprovalInstanceListPage.vue";
- import { APPROVAL_MODULE_KEYS } from "../../_utils/approvalModuleRegistry.js";
+ /** OA - 鎶ラ攢绠$悊 - 宸梾鎶ラ攢 */
+ import OaListPage from "../../_components/OaListPage.vue";
+ import { useOaPage } from "../../_utils/useOaPage.js";
+
+ const pageKey = "ReimburseManage/travel-reimburse";
+ const { config } = useOaPage(pageKey);
</script>
--
Gitblit v1.9.3