123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- <template>
- <view class="tabs">
- <u-sticky :enable="isFixed" :bg-color="stickyBgColor" :offset-top="top" :h5-nav-height="0">
- <view :id="id" :style="{
- background: bgColor,
- 'border-radius': borderRadius,
- width: width,
- margin: '0 auto'
- }">
- <scroll-view :style="{height: height + 'rpx'}" scroll-x class="scroll-view" :scroll-left="scrollLeft"
- scroll-with-animation>
- <view class="scroll-box" :class="{'tabs-scorll-flex': !isScroll}">
- <view class="tab-item line1" :id="'tab-item-' + index" v-for="(item, index) in list"
- :key="index" @tap="clickTab(index)" :style="[tabItemStyle(index)]">
- <u-badge :count="item[count] || item['dot'] || 0" :offset="offset" size="mini"></u-badge>
- {{ item[name] || item['name']}}
- </view>
- <view v-if="showBar" class="tab-bar" :style="[tabBarStyle]"></view>
- </view>
- </scroll-view>
- </view>
- </u-sticky>
- <view class="tab-content">
- <view>
- <slot></slot>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getRect
- } from '@/utils/tools'
- export default {
- name: "tabs",
- props: {
-
- isScroll: {
- type: Boolean,
- default: true
- },
-
- current: {
- type: [Number, String],
- default: 0
- },
-
- height: {
- type: [String, Number],
- default: 80
- },
-
- fontSize: {
- type: [String, Number],
- default: 28
- },
-
- duration: {
- type: [String, Number],
- default: 0.3
- },
-
- activeColor: {
- type: String,
- default: '#FF2C3C'
- },
-
- inactiveColor: {
- type: String,
- default: '#333'
- },
-
- barWidth: {
- type: [String, Number],
- default: 40
- },
-
- barHeight: {
- type: [String, Number],
- default: 4
- },
-
- gutter: {
- type: [String, Number],
- default: 30
- },
-
- bgColor: {
- type: String,
- default: '#ffffff'
- },
-
- name: {
- type: String,
- default: 'name'
- },
-
- count: {
- type: String,
- default: 'count'
- },
-
- offset: {
- type: Array,
- default: () => {
- return [5, 20]
- }
- },
-
- bold: {
- type: Boolean,
- default: true
- },
-
- activeItemStyle: {
- type: Object,
- default () {
- return {}
- }
- },
-
- showBar: {
- type: Boolean,
- default: true
- },
-
- barStyle: {
- type: Object,
- default () {
- return {}
- }
- },
-
- itemWidth: {
- type: [Number, String],
- default: 'auto'
- },
- isFixed: {
- type: Boolean,
- default: false
- },
- top: {
- type: [Number, String],
- default: 0
- },
- width: {
- type: [Number, String],
- default: '100%'
- },
- stickyBgColor: {
- type: String,
- default: '#ffffff'
- },
- borderRadius: {
- type: [Number, String],
- default: 0
- },
-
- async: {
- type: Boolean,
- default: false
- }
- },
- provide() {
- return {
- tabs: this
- }
- },
- data() {
- return {
- list: [],
- scrollLeft: 0,
- tabQueryInfo: [],
- componentWidth: 0,
- scrollBarLeft: 0,
- parentLeft: 0,
- id: 'cu-tab',
- currentIndex: this.current,
- barFirstTimeMove: true,
- isAsync: false
- };
- },
- watch: {
-
-
- list(n, o) {
-
- if (!this.barFirstTimeMove && n.length !== o.length) {
- this.currentIndex = 0;
- }
-
- this.$nextTick(() => {
- this.init();
- });
- },
- current: {
- immediate: true,
- handler(nVal, oVal) {
-
- this.$nextTick(() => {
- this.currentIndex = nVal;
- this.scrollByIndex();
- });
- }
- },
- async: {
- immediate: true,
- handler(nVal, oVal) {
- this.isAsync = nVal;
- }
- },
-
- },
- computed: {
-
- tabBarStyle() {
- let style = {
- width: this.barWidth + 'rpx',
- transform: `translate(${this.scrollBarLeft}px, -100%)`,
-
- 'transition-duration': `${this.barFirstTimeMove ? 0 : this.duration }s`,
- 'background-color': this.activeColor,
- height: this.barHeight + 'rpx',
- opacity: this.barFirstTimeMove ? 0 : 1,
-
- 'border-radius': `${this.barHeight / 2}px`
- };
- Object.assign(style, this.barStyle);
- return style;
- },
-
- tabItemStyle() {
- return (index) => {
- let style = {
- height: this.height + 'rpx',
- 'line-height': this.height + 'rpx',
- 'font-size': this.fontSize + 'rpx',
- padding: this.isScroll ? `0 ${this.gutter}rpx` : '',
- flex: this.isScroll ? 'auto' : '1',
- width: `${this.itemWidth}rpx`
- };
-
- if (index == this.currentIndex && this.bold) style.fontWeight = 'bold';
- if (index == this.currentIndex) {
- style.color = this.activeColor;
-
- style = Object.assign(style, this.activeItemStyle);
- } else {
- style.color = this.inactiveColor;
- }
- return style;
- }
- }
- },
- methods: {
- updateTabs() {
- this.list = this.childrens.map((item) => {
- const {
- name,
- dot,
- active,
- inited,
- updateRender
- } = item
- return {
- name,
- dot,
- active,
- inited,
- updateRender
- }
- })
- this.$nextTick(function() {
- this.init()
- })
- },
-
- async init() {
-
- let tabRect = await getRect('#' + this.id, false, this);
-
- this.parentLeft = tabRect.left;
-
- this.componentWidth = tabRect.width;
- this.getTabRect();
- },
-
- clickTab(index) {
-
- this.$emit('change', index);
-
- if(this.isAsync) return;
- if (index == this.currentIndex) return;
- this.$nextTick(() => {
- this.currentIndex = index;
- this.scrollByIndex();
- });
- },
-
- getTabRect() {
-
- let query = uni.createSelectorQuery().in(this);
-
- for (let i = 0; i < this.list.length; i++) {
-
- query.select(`#tab-item-${i}`).fields({
- size: true,
- rect: true
- });
- }
-
- query.exec(
- function(res) {
- this.tabQueryInfo = res;
-
- this.scrollByIndex();
- }.bind(this)
- );
- },
-
- scrollByIndex() {
-
- let tabInfo = this.tabQueryInfo[this.currentIndex];
- if (!tabInfo) return;
-
- let tabWidth = tabInfo.width;
-
- let offsetLeft = tabInfo.left - this.parentLeft;
-
- let scrollLeft = offsetLeft - (this.componentWidth - tabWidth) / 2;
- this.scrollLeft = scrollLeft < 0 ? 0 : scrollLeft;
-
- let left = tabInfo.left + tabInfo.width / 2 - this.parentLeft;
-
- this.scrollBarLeft = left - uni.upx2px(this.barWidth) / 2;
-
-
- if (this.barFirstTimeMove == true) {
- setTimeout(() => {
- this.barFirstTimeMove = false;
- }, 100)
- }
-
- this.childrens.forEach((item, ind) => {
- let active = ind === this.currentIndex;
- if (active !== item.active || !item.inited) {
- item.updateRender(active, this);
- }
- });
- }
- },
- created() {
- this.childrens = []
- },
- mounted() {
- this.updateTabs();
- }
- };
- </script>
- <style lang="scss" scoped>
-
- ::-webkit-scrollbar,
- ::-webkit-scrollbar,
- ::-webkit-scrollbar {
- display: none;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- }
-
- .scroll-box {
- height: 100%;
- position: relative;
-
- white-space: nowrap;
-
- }
- .tab-fixed {
- position: sticky;
- top: 0;
- width: 100%;
- }
-
-
- scroll-view ::v-deep ::-webkit-scrollbar {
- display: none;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- }
-
- .scroll-view {
- width: 100%;
- white-space: nowrap;
- position: relative;
- }
- .tab-item {
- position: relative;
-
- display: inline-block;
-
- text-align: center;
- transition-property: background-color, color;
- }
- .tab-bar {
- position: absolute;
- bottom: 6rpx;
- }
- .tabs-scorll-flex {
- display: flex;
- justify-content: space-between;
- }
- </style>
|