1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <!--
| OA / 公告通知
| 路由:/pages/oa/NoticeAnnouncement/notice-manage/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 = "NoticeAnnouncement/notice-manage";
| const { config } = useOaPage(pageKey);
| </script>
|
|