rk
2026-04-23 3696830fbaf2fd97d98020087abf20917e491bdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
    <view class="shop-mine-page">
        <view class="nav-bar" :style="{ paddingTop: statusbarHeight + 'px' }">
            <view class="nav-content">
                <text class="nav-title">我的</text>
            </view>
        </view>
        <view class="page-content">
            <text>门店我的页面</text>
        </view>
        <custom-tabbar></custom-tabbar>
    </view>
</template>
 
<script>
    import { mapState } from 'vuex'
    import CustomTabbar from '@/components/custom-tabbar/custom-tabbar.vue'
 
    export default {
        components: {
            CustomTabbar
        },
        computed: {
            ...mapState(['statusbarHeight'])
        }
    }
</script>
 
<style lang="scss" scoped>
    .shop-mine-page {
        min-height: 100vh;
        background: #f8f8f8;
    }
 
    .nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 100;
    }
 
    .nav-content {
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .nav-title {
        font-size: 34rpx;
        font-weight: 600;
        color: #333333;
    }
 
    .page-content {
        padding-top: calc(44px + 44px);
        min-height: 100vh;
    }
</style>