123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <view>
- <!-- 状态栏高度 -->
- <view :style="{ height: `${statusBarHeight}px`, backgroundColor: '#FF6702' }"></view>
- <!-- 导航栏 -->
- <view :style="{ height: `${navigationBarHeight}rpx`,lineHeight: `${navigationBarHeight}rpx`}" class="order-nav">
- <!-- <view class="back-button" @tap="handBack()"></view> -->
- 我的
- </view>
- <view></view>
- <!-- 底部导航 -->
- <view class="page-footer">
- <view class="foot-item" :class="item.pagePath == activeRouter?'active':''" v-for="(item,index) in footerList" :key="index"
- @click="goRouter(item)">
- <block v-if="item.pagePath == activeRouter">
- <image :src="item.selectedIconPath"></image>
- <view class="txt">{{item.text}}</view>
- </block>
- <block v-else>
- <image :src="item.iconPath"></image>
- <view class="txt">{{item.text}}</view>
- </block>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- registerVerify,
- } from '@/api/api.js';
- import {
- Debounce
- } from '@/utils/validate.js'
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- let app = getApp();
- export default {
- data() {
- return {
- statusBarHeight: app.globalData.statusBarHeight,
- navigationBarHeight: 112
- }
- },
- methods: {
- },
- onLoad(options) {},
- mounted() {
- },
- }
- </script>
- <style scoped lang="scss">
- .order-nav {
- font-weight: 500;
- font-size: 35rpx;
- color: #FFFFFF;
- position: relative;
- background-color: #FF6702;
- display: flex;
- align-items: center;
- justify-content: center;
- .back-button {
- position: absolute;
- left: 20rpx;
- }
- }
- .page-footer {
- position: fixed;
- bottom: 0;
- z-index: 9;
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 100%;
- height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- box-sizing: border-box;
- border-top: solid 1rpx #F3F3F3;
- background-color: #fff;
- // box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
- padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
- padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
- .foot-item {
- display: flex;
- width: max-content;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- position: relative;
- padding: 0 20rpx;
- margin-top: 18rpx;
- &.active {
- color: $bg-color-primary
- }
- }
- .foot-item image {
- height: 50rpx;
- width: 50rpx;
- text-align: center;
- margin: 0 auto;
- }
- .foot-item .txt {
- font-size: 27rpx;
- margin-top: 8rpx;
- }
- }
- </style>
|