| | |
| | | <template> |
| | | <PageLayout class="dashboard-page-wrapper"> |
| | | <PageLayoutWithBg class="dashboard-page-wrapper"> |
| | | <template #navigationBar> |
| | | <TransparentNavigationBar :title="'数据看板'" :is-absolute="false"> |
| | | </TransparentNavigationBar> |
| | |
| | | <img :src="OssAssets.common.DataPageBg" class="dashboard-page-bg" /> |
| | | </template> |
| | | <InnerPage /> |
| | | </PageLayout> |
| | | </PageLayoutWithBg> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { PageLayout } from '@/components'; |
| | | import InnerPage from './InnerPage.vue'; |
| | | import { OssAssets } from '@/constants'; |
| | | |