1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <!--
| OA / 企业新闻
| 路由:/pages/oa/EnterpriseNews/news-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 = "EnterpriseNews/news-manage";
| const { config } = useOaPage(pageKey);
| </script>
|
|