mirror of
https://github.com/youzan/vant.git
synced 2026-05-06 01:00:26 +08:00
3d19ddb573
* [bugfix] CouponList always show empty info * [bugfix] add click feedback of buttons in components * [Doc] add custom theme document * [new feature] Notice bar support more props * [bugfix] PullRefresh test cases * [bugfix] unused NoticeBar style * [bugfix] Swipe width calc error * [Doc] english document of all action components * [Doc] change document site path to /zanui/vant * [Doc] fix * [bugfix] uploader style error * [bugfix] tabs document demo * [new feature] Cell support vue-router target route * [bugfix] add cell test cases * update yarn.lock * [bugfix] Tabbar cann't display info when use icon slot * [Doc] update document title * [bugfix] Dialog should reset button text when showed * [new feature] CouponList add showCloseButton prop * [new feature] Swipe add 'initialSwipe' prop * [bugfix] NoticeBar text disappeared when page back * [new feature] ImagePreview support startPosition * fix: improve imagePreview test cases * [bugfix] Steps style error when has more than 4 items * [new feature] normalize size of all icons * [new feature] Stepper add plus & minus event * fix: yarn.lock * [bugfix] addressEdit icon render failed
228 lines
5.7 KiB
Vue
228 lines
5.7 KiB
Vue
<template>
|
|
<div class="van-tabs" :class="[`van-tabs--${type}`]">
|
|
<div class="van-tabs__nav-wrap" v-if="type === 'line' && tabs.length > swipeThreshold">
|
|
<div class="van-tabs__swipe" ref="swipe">
|
|
<div class="van-tabs__nav van-tabs__nav--line">
|
|
<div class="van-tabs__nav-bar" :style="navBarStyle"></div>
|
|
<div
|
|
v-for="(tab, index) in tabs"
|
|
:key="index"
|
|
class="van-tab van-hairline"
|
|
:class="{ 'van-tab--active': index === curActive }"
|
|
ref="tabkey"
|
|
@click="handleTabClick(index)"
|
|
>
|
|
<span>{{ tab.title }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="van-tabs__nav"
|
|
:class="[`van-tabs__nav--${this.type}`]"
|
|
>
|
|
<div class="van-tabs__nav-bar" :style="navBarStyle" v-if="type === 'line'"></div>
|
|
<div
|
|
v-for="(tab, index) in tabs"
|
|
:key="index"
|
|
class="van-tab van-hairline"
|
|
:class="{ 'van-tab--active': index === curActive }"
|
|
ref="tabkey"
|
|
@click="handleTabClick(index)"
|
|
>
|
|
<span>{{ tab.title }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="van-tabs__content">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import swipe from './swipe';
|
|
import translateUtil from '../utils/transition';
|
|
|
|
export default {
|
|
name: 'van-tabs',
|
|
|
|
props: {
|
|
// 外部传入的激活的tab标签
|
|
active: {
|
|
type: [Number, String],
|
|
default: 0
|
|
},
|
|
// 是默认的line还是card
|
|
type: {
|
|
type: String,
|
|
default: 'line'
|
|
},
|
|
// 切换tab的动画时间
|
|
duration: {
|
|
type: Number,
|
|
default: 0.3
|
|
},
|
|
swipeThreshold: {
|
|
type: Number,
|
|
default: 4
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
tabs: [],
|
|
curActive: +this.active,
|
|
isSwiping: false,
|
|
isInitEvents: false,
|
|
navBarStyle: {}
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
active(val) {
|
|
this.curActive = +val;
|
|
},
|
|
|
|
curActive() {
|
|
this.setNavBarStyle();
|
|
/* istanbul ignore else */
|
|
if (this.tabs.length > this.swipeThreshold) {
|
|
this.doOnValueChange();
|
|
}
|
|
},
|
|
|
|
tabs(val) {
|
|
this.$nextTick(() => {
|
|
this.setNavBarStyle();
|
|
if (val.length > this.swipeThreshold) {
|
|
this.initEvents();
|
|
this.doOnValueChange();
|
|
} else {
|
|
this.isInitEvents = false;
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
swipeWidth() {
|
|
return this.$refs.swipe && this.$refs.swipe.getBoundingClientRect().width;
|
|
},
|
|
maxTranslate() {
|
|
/* istanbul ignore if */
|
|
if (!this.$refs.tabkey) return;
|
|
|
|
const lastTab = this.$refs.tabkey[this.tabs.length - 1];
|
|
const lastTabWidth = lastTab.offsetWidth;
|
|
const lastTabOffsetLeft = lastTab.offsetLeft;
|
|
|
|
return (lastTabOffsetLeft + lastTabWidth) - this.swipeWidth;
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
// 页面载入完成
|
|
this.$nextTick(() => {
|
|
this.setNavBarStyle();
|
|
|
|
if (this.tabs.length > this.swipeThreshold) {
|
|
this.initEvents();
|
|
this.doOnValueChange();
|
|
}
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* `type`为`line`时,tab下方的横线的样式
|
|
*/
|
|
setNavBarStyle() {
|
|
if (this.type !== 'line' || !this.$refs.tabkey) return {};
|
|
|
|
const tabKey = this.curActive;
|
|
const elem = this.$refs.tabkey[tabKey];
|
|
const offsetWidth = `${elem.offsetWidth || 0}px`;
|
|
const offsetLeft = `${elem.offsetLeft || 0}px`;
|
|
|
|
this.navBarStyle = {
|
|
width: offsetWidth,
|
|
transform: `translate3d(${offsetLeft}, 0, 0)`,
|
|
transitionDuration: `${this.duration}s`
|
|
};
|
|
},
|
|
|
|
handleTabClick(index) {
|
|
if (this.tabs[index].disabled) {
|
|
this.$emit('disabled', index);
|
|
return;
|
|
}
|
|
|
|
this.$emit('click', index);
|
|
this.curActive = index;
|
|
},
|
|
|
|
/**
|
|
* 将当前value值转换为需要translate的值
|
|
*/
|
|
value2Translate(value) {
|
|
/* istanbul ignore if */
|
|
if (!this.$refs.tabkey) return 0;
|
|
|
|
const tab = this.$refs.tabkey[value];
|
|
const maxTranslate = this.maxTranslate;
|
|
const tabWidth = tab.offsetWidth;
|
|
const tabOffsetLeft = tab.offsetLeft;
|
|
let translate = tabOffsetLeft + (tabWidth * 2.7) - this.swipeWidth;
|
|
if (translate < 0) {
|
|
translate = 0;
|
|
}
|
|
|
|
return -1 * (translate > maxTranslate ? maxTranslate : translate);
|
|
},
|
|
|
|
initEvents() {
|
|
const el = this.$refs.swipe;
|
|
if (!el || this.isInitEvents) return;
|
|
|
|
this.isInitEvents = true;
|
|
let swipeState = {};
|
|
|
|
swipe(el, {
|
|
start: event => {
|
|
swipeState = {
|
|
start: new Date(),
|
|
startLeft: event.pageX,
|
|
startTranslateLeft: translateUtil.getElementTranslate(el).left
|
|
};
|
|
},
|
|
|
|
drag: event => {
|
|
this.isSwiping = true;
|
|
|
|
swipeState.left = event.pageX;
|
|
const deltaX = swipeState.left - swipeState.startLeft;
|
|
const translate = swipeState.startTranslateLeft + deltaX;
|
|
|
|
/* istanbul ignore else */
|
|
if (translate > 0 || (translate * -1) > this.maxTranslate) return;
|
|
|
|
translateUtil.translateElement(el, translate, null);
|
|
},
|
|
|
|
end: () => {
|
|
this.isSwiping = false;
|
|
}
|
|
});
|
|
},
|
|
|
|
doOnValueChange() {
|
|
const value = +this.curActive;
|
|
const swipe = this.$refs.swipe;
|
|
|
|
translateUtil.translateElement(swipe, this.value2Translate(value), null);
|
|
}
|
|
}
|
|
};
|
|
</script>
|