You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.1 KiB
74 lines
3.1 KiB
10 months ago
|
<template>
|
||
|
<uni-shadow-root class="vant-tabbar-item-index"><view :class="(utils.bem('tabbar-item', { active }))+' custom-class'" :style="'color: '+(active ? activeColor : inactiveColor)" @click="onClick">
|
||
|
<view class="van-tabbar-item__icon">
|
||
|
<van-icon v-if="icon" :name="icon" custom-class="van-tabbar-item__icon__inner"></van-icon>
|
||
|
<block v-else>
|
||
|
<slot v-if="active" name="icon-active"></slot>
|
||
|
<slot v-else name="icon"></slot>
|
||
|
</block>
|
||
|
<van-info :dot="dot" :info="info" custom-class="van-tabbar-item__info"></van-info>
|
||
|
</view>
|
||
|
<view class="van-tabbar-item__text">
|
||
|
<slot></slot>
|
||
|
</view>
|
||
|
</view></uni-shadow-root>
|
||
|
</template>
|
||
|
<wxs src="../wxs/utils.wxs" module="utils"></wxs>
|
||
|
<script>
|
||
|
import VanIcon from '../icon/index.vue'
|
||
|
import VanInfo from '../info/index.vue'
|
||
|
global['__wxVueOptions'] = {components:{'van-icon': VanIcon,'van-info': VanInfo}}
|
||
|
|
||
|
global['__wxRoute'] = 'vant/tabbar-item/index'
|
||
|
import { VantComponent } from '../common/component';
|
||
|
VantComponent({
|
||
|
props: {
|
||
|
info: null,
|
||
|
name: null,
|
||
|
icon: String,
|
||
|
dot: Boolean
|
||
|
},
|
||
|
relation: {
|
||
|
name: 'tabbar',
|
||
|
type: 'ancestor'
|
||
|
},
|
||
|
data: {
|
||
|
active: false
|
||
|
},
|
||
|
methods: {
|
||
|
onClick() {
|
||
|
if (this.parent) {
|
||
|
this.parent.onChange(this);
|
||
|
}
|
||
|
this.$emit('click');
|
||
|
},
|
||
|
updateFromParent() {
|
||
|
const { parent } = this;
|
||
|
if (!parent) {
|
||
|
return;
|
||
|
}
|
||
|
const index = parent.children.indexOf(this);
|
||
|
const parentData = parent.data;
|
||
|
const { data } = this;
|
||
|
const active = (data.name || index) === parentData.active;
|
||
|
const patch = {};
|
||
|
if (active !== data.active) {
|
||
|
patch.active = active;
|
||
|
}
|
||
|
if (parentData.activeColor !== data.activeColor) {
|
||
|
patch.activeColor = parentData.activeColor;
|
||
|
}
|
||
|
if (parentData.inactiveColor !== data.inactiveColor) {
|
||
|
patch.inactiveColor = parentData.inactiveColor;
|
||
|
}
|
||
|
return Object.keys(patch).length > 0
|
||
|
? this.set(patch)
|
||
|
: Promise.resolve();
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
export default global['__wxComponents']['vant/tabbar-item/index']
|
||
|
</script>
|
||
|
<style platform="mp-weixin">
|
||
|
@import '../common/index.css';.vant-tabbar-item-index{-webkit-flex:1;flex:1}.van-tabbar-item{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;height:100%;color:#646566;color:var(--tabbar-item-text-color,#646566);font-size:12px;font-size:var(--tabbar-item-font-size,12px);line-height:1;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{position:relative;margin-bottom:5px;margin-bottom:var(--tabbar-item-margin-bottom,5px);font-size:18px;font-size:var(--tabbar-item-icon-size,18px)}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:#1989fa;color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
|
||
|
</style>
|