123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view class="weui-tabbar" :class="extClass">
- <!-- 选中的时候往weui-tabbar__item加class:weui-bar__item_on -->
- <view @click="tabChange(index)" v-for="(item, index) in list" :key="index" class="weui-tabbar__item"
- :class="{'weui-bar__item_on':index === current}">
- <view style="position: relative;display:inline-block;">
- <image :src="current === index ? item.selectedIconPath : item.iconPath" class="weui-tabbar__icon">
- </image>
- </view>
- <view class="weui-tabbar__label">{{ item.text }}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- // list: {
- // type: Array,
- // default: function() {
- // return []
- // }
- // }
- },
- data() {
- return {
- extClass: '',
- current: 0,
- list:[]
- };
- },
- created() {
- // "tabBar":{
- // "color":"#AAABAD",
- // "selectedColor":"#9797FF",
- // "backgroundColor":"#FFFFFF",
- // "borderStyle":"#eee",
- // "height":"75px",
- // "spacing":"6px",
- // "list":[
- // {
- // "pagePath":"pages/personal-page/personal/personal",
- // "text":"首页",
- // "iconPath":"./static/common/navigationBar/nHome.png",
- // "selectedIconPath":"static/common/navigationBar/nHomeB.png"
- // },
- // {
- // "pagePath":"pages/personal-page/plan/plan",
- // "text":"计划",
- // "iconPath":"static/common/navigationBar/nPlan.png",
- // "selectedIconPath":"static/common/navigationBar/nPlanB.png"
- // },{
- // "pagePath":"pages/game-page/game/game",
- // "text":"游戏",
- // "iconPath":"static/common/navigationBar/nGame.png",
- // "selectedIconPath":"static/common/navigationBar/nGameB.png"
- // },
- // {
- // "pagePath":"pages/game-page/game/game",
- // "text":"视频",
- // "iconPath":"static/common/navigationBar/nVideo.png",
- // "selectedIconPath":"static/common/navigationBar/nVideoB.png"
- // },
- // {
- // "pagePath":"pages/my-page/homepage/homepage",
- // "text":"我的",
- // "iconPath":"static/common/navigationBar/nMy.png",
- // "selectedIconPath":"static/common/navigationBar/nMyB.png"
- // }
- // ]
- // }
- this.list = [{
- "pagePath": "../../personal-page/personal/personal",
- "text": "首页",
- "iconPath": "/static/common/navigationBar/nHome.png",
- "selectedIconPath": "/static/common/navigationBar/nHomeB.png"
- },
- {
- "pagePath": "../../personal-page/plan/plan",
- "text": "计划",
- "iconPath": "/static/common/navigationBar/nPlan.png",
- "selectedIconPath": "/static/common/navigationBar/nPlanB.png"
- }, {
- "pagePath": "../../game-page/game/game",
- "text": "游戏",
- "iconPath": "/static/common/navigationBar/nGame.png",
- "selectedIconPath": "/static/common/navigationBar/nGameB.png"
- },
- {
- "pagePath": "../../game-page/game/game",
- "text": "视频",
- "iconPath": "/static/common/navigationBar/nVideo.png",
- "selectedIconPath": "/static/common/navigationBar/nVideoB.png"
- },
- {
- "pagePath": "../../my-page/homepage/homepage",
- "text": "我的",
- "iconPath": "/static/common/navigationBar/nMy.png",
- "selectedIconPath": "/static/common/navigationBar/nMyB.png"
- }
- ];
- const value = uni.getStorageSync('tabbarCurrentIndex');
- if (value) {
- this.current = value;
- }
- },
- methods: {
- tabChange(index) {
- if (index === this.current) {
- return;
- }
- this.current = index;
- this.$emit('tabChange', index)
- uni.setStorageSync('tabbarCurrentIndex', this.current);
- uni.reLaunch({
- url: this.list[this.current].pagePath,
- success: res => {},
- fail: () => {},
- complete: () => {}
- });
- console.log('tabChange');
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .weui-tabbar {
- display: flex;
- position: relative;
- z-index: 500;
- height: 75px;
- background-color: #ffffff;
- justify-content: center;
- align-items: center;
- }
- .weui-tabbar:before {
- content: ' ';
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- height: 1px;
- border-top: 1rpx solid rgba(0, 0, 0, 0.1);
- color: rgba(0, 0, 0, 0.1);
- }
- .weui-tabbar__item {
- display: block;
- flex: 1;
- padding: 8px 0 4px;
- padding-bottom: calc(8px + constant(safe-area-inset-bottom));
- padding-bottom: calc(8px + env(safe-area-inset-bottom));
- font-size: 0;
- color: rgba(0, 0, 0, 0.5);
- text-align: center;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- .weui-tabbar__item:first-child {
- padding-left: constant(safe-area-inset-left);
- padding-left: env(safe-area-inset-left);
- }
- .weui-tabbar__item:last-child {
- padding-right: constant(safe-area-inset-right);
- padding-right: env(safe-area-inset-right);
- }
- .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,
- .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,
- .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
- color: #9797FF;
- }
- .weui-tabbar__icon {
- display: inline-block;
- width: 28px;
- height: 28px;
- margin-bottom: 2px;
- }
- i.weui-tabbar__icon,
- .weui-tabbar__icon>i {
- font-size: 24px;
- color: rgba(0, 0, 0, 0.5);
- }
- .weui-tabbar__icon image {
- width: 100%;
- height: 100%;
- }
- .weui-tabbar__label {
- color: #bfbfbf;
- font-size: 10px;
- line-height: 1.4;
- }
- </style>
|