|
@@ -1,9 +1,8 @@
|
|
|
<template>
|
|
|
<view class="page">
|
|
|
<u-tabbar :value="tabbarValue" @change="name => tabbarValue = name" :fixed="true" :placeholder="true"
|
|
|
- :safeAreaInsetBottom="true" :border="false" style="z-index: 99999 !important;">
|
|
|
- <u-tabbar-item style="z-index: 99999 !important;" :text="item.text" v-for="(item,index) in list"
|
|
|
- :key="index" @click="changeTabbar">
|
|
|
+ :safeAreaInsetBottom="true" :border="false">
|
|
|
+ <u-tabbar-item :text="item.text" v-for="(item,index) in list" :key="index" @click="changeTabbar">
|
|
|
<image class="u-page__item__slot-icon" slot="active-icon" :src="item.activeImg"></image>
|
|
|
<image class="u-page__item__slot-icon" slot="inactive-icon" :src="item.inactiveImg"></image>
|
|
|
</u-tabbar-item>
|
|
@@ -69,16 +68,6 @@
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss">
|
|
|
- .page {
|
|
|
- position: relative;
|
|
|
- z-index: 99999;
|
|
|
- }
|
|
|
|
|
|
- .u-tabbar__content {
|
|
|
- z-index: 99999 !important;
|
|
|
- }
|
|
|
|
|
|
- .u-tabbar__content__item-wrapper {
|
|
|
- z-index: 99999 !important;
|
|
|
- }
|
|
|
</style>
|