You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
845 B
Vue
38 lines
845 B
Vue
<template>
|
|
<view class="page-container">
|
|
<NavBar :title="pageTitle" />
|
|
<PermissionMenuPage
|
|
class="flex-fill"
|
|
page-path="pages/report"
|
|
title="报表中心"
|
|
subtitle="数据驱动决策 · 智能分析"
|
|
:safe-bottom="true"
|
|
/>
|
|
<TabBar />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { computed } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import NavBar from '@/components/common/NavBar.vue'
|
|
import TabBar from '@/components/common/TabBar.vue'
|
|
import PermissionMenuPage from '@/components/common/PermissionMenuPage.vue'
|
|
|
|
const { t } = useI18n()
|
|
const pageTitle = computed(() => t('tab.report'))
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background-color: #f5f6f7;
|
|
}
|
|
|
|
.flex-fill {
|
|
flex: 1;
|
|
overflow: visible;
|
|
}
|
|
</style> |