yyb
2026-05-22 552ec6b7d8ccc56c379da195fc6c9c74312b1070
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
  OA / 人事管理 / 离职申请
  路由:/pages/oa/HrManage/resign-apply/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 = "HrManage/resign-apply";
  const { config } = useOaPage(pageKey);
</script>