| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <uni-navbar-lite :showLeft=false title="工分"></uni-navbar-lite>
- <view class="page-container">
- <!-- 背景图 -->
- <image class="bg-image" src="/static/images/profile/1.png" mode="widthFix"></image>
- <view style="flex-grow: 1;">
- <view style="justify-content: center;align-items: center;">
- <text class="view-title">工分模块开发中......</text>
- </view>
- </view>
- <!-- 底部 TabBar -->
- <custom-tabbar :current="2" />
- </view>
- </template>
- <script setup lang="uts">
- import { ref, onMounted } from 'vue'
- import { getUserInfo } from '../../utils/storage'
- // @ts-ignore
- import manifest from '@/manifest.json'
- // 初始化
- onMounted(() => {
-
- })
- </script>
- <style lang="scss">
- .page-container {
- position: relative;
- flex: 1;
- background: #f5f8fb;
- padding-top: env(safe-area-inset-top);
- }
- .bg-image {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 0;
- }
-
- .view-title{
- padding-top: 10px;
- color:#fff;
- }
- </style>
|