| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="tab-page">
- <div class="page-body">
- <h1>守护地图</h1>
- <p class="desc">地图功能开发中</p>
- </div>
- <BaseFooter :init-tab="2" />
- </div>
- </template>
- <script setup lang="ts">
- import BaseFooter from '@/components/BaseFooter.vue'
- </script>
- <style scoped lang="less">
- .tab-page {
- width: 100%;
- height: 100%;
- min-height: calc(var(--vh, 1vh) * 100);
- background: var(--main-bg);
- position: relative;
- overflow: hidden;
- }
- .page-body {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: calc(var(--vh, 1vh) * 100 - 80rem);
- padding: 20rem;
- box-sizing: border-box;
- h1 {
- margin: 0 0 12rem;
- font-size: 20rem;
- color: #fff;
- font-weight: 500;
- }
- .desc {
- margin: 0;
- font-size: 14rem;
- color: rgba(255, 255, 255, 0.5);
- }
- }
- </style>
|