| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 | 
							- <template>
 
- 	<scroll-view 
 
- 	:scroll-with-animation="scorllAnimation" 
 
- 	:scroll-x="true" 
 
- 	:show-scrollbar="false" 
 
- 	:class="['gui-scroll-x', isCenter ? 'gui-nav-center' : '']" 
 
- 	:style="{width:width+'rpx'}" 
 
- 	:scroll-left="scrollLeft">
 
- 		<view 
 
- 		class="gui-scroll-x-item gui-columns gui-relative" 
 
- 		:id="'tab-'+index+(random+'')" 
 
- 		:style="{
 
- 			width:size+'rpx', 
 
- 			height:(lineHeight+lineHeightSamll+25)+'rpx'
 
- 		}" 
 
- 		v-for="(item, index) in itemsIn" 
 
- 		:key="index" 
 
- 		@tap="navchange" 
 
- 		:data-index="index">
 
- 			<text 
 
- 			class="gui-block gui-text-center" 
 
- 			:class="[customClass, currentIndexIn == index ? activeClass : '']" 
 
- 			:style="{
 
- 				lineHeight:lineHeight+'rpx', height:lineHeight+'rpx',
 
- 				fontSize:currentIndexIn == index ? activeFontSize : fontSize, 
 
- 				fontWeight:currentIndexIn == index ? 'bold' : ''
 
- 			}">{{item.title}}</text>
 
- 			<text 
 
- 			class="gui-block gui-text-center gui-third-text" 
 
- 			:class="[customClass, currentIndexIn == index ? activeClass : '']" 
 
- 			:style="{
 
- 				lineHeight:lineHeightSamll+'rpx', 
 
- 				height:lineHeightSamll+'rpx', 
 
- 				fontSize:fontSizeSmall
 
- 			}">{{item.desc}}</text>
 
- 			<view 
 
- 			class="nav2-active-line-in gui-flex gui-row gui-justify-content-center gui-fade-in" 
 
- 			v-if="currentIndexIn == index">
 
- 				<view class="nav2-active-line" 
 
- 				:class="activeBorderClass"></view>
 
- 			</view>
 
- 		</view>
 
- 	</scroll-view>
 
- </template>
 
- <script>
 
- export default {
 
- 	name  : "gui-switch-navigation2",
 
- 	props : {
 
- 		width           : {type : Number,  default : 690},
 
- 		isCenter        : {type : Boolean, default : false},
 
- 		currentIndex    : {type : Number,  default : 0},
 
- 		size            : {type : Number,  default : 138},
 
- 		fontSize        : {type : String,  default : '28rpx'},
 
- 		activeFontSize  : {type : String,  default : '28rpx'},
 
- 		lineHeight      : {type : Number,  default : 52},
 
- 		fontSizeSmall   : {type : String,  default : '22rpx'},
 
- 		lineHeightSamll : {type : Number,  default : 28},
 
- 		items           : {type : Array,   default : function () {return []}},
 
- 		customClass     : {type : Array,   default : function () {return ['gui-primary-text'];}},
 
- 		activeClass     : {type : Array,    default : function () {
 
- 			return ['gui-primary-color', 'gui-dark-text-level-1'];
 
- 			}},
 
- 		scorllAnimation : {type : Boolean, default : true},
 
- 		activeBorderClass : {type : Array, default : function () {return ['gui-primary-border-color'];}}
 
- 	},
 
- 	data() {
 
- 		return {
 
- 			currentIndexIn : 0,
 
- 			itemsIn        : [],
 
- 			random         : 1,
 
- 			scrollLeft     : 0,
 
- 			scrllTimer     : null
 
- 		}
 
- 	},
 
- 	created:function(){
 
- 		this.currentIndexIn = this.currentIndex;
 
- 		this.itemsIn        = this.items;
 
- 		this.random         = this.randomNum();
 
- 	},
 
- 	watch:{
 
- 		currentIndex : function(value){ this.currentIndexIn = value; },
 
- 		items        : function(value){ this.itemsIn = value; },
 
- 		currentIndexIn : function(val){
 
- 			if(this.isCenter){return ;}
 
- 			if(this.scrllTimer != null){clearTimeout(this.scrllTimer);}
 
- 			this.scrllTimer = setTimeout(()=>{this.setLeft();}, 200);
 
- 		}
 
- 	},
 
- 	methods:{
 
- 		navchange : function (e){
 
- 			this.currentIndexIn = e.currentTarget.dataset.index;
 
- 			this.$emit('change', Number(e.currentTarget.dataset.index))
 
- 		},
 
- 		randomNum : function () {
 
- 			return parseInt(Math.random() * 1000);
 
- 		},
 
- 		setLeft   : function () {
 
- 			if(this.isCenter){return ;}
 
- 			var itemWidth =  Number(this.size);
 
- 			var left      = (Number(this.currentIndexIn) + 1) * itemWidth - Number(this.width) / 2 - itemWidth / 2;
 
- 			var maxLeft   = Number(this.itemsIn.length) * itemWidth - this.width;
 
- 			maxLeft       = uni.upx2px(maxLeft);
 
- 			left          = uni.upx2px(left);
 
- 			if(left > maxLeft){left = maxLeft;}
 
- 			if(left < 0){left = 0;}
 
- 			this.scrollLeft = left;
 
- 		}
 
- 	}
 
- }
 
- </script>
 
- <style scoped>
 
- .gui-nav-center{justify-content:center; text-align:center;}
 
- .nav2-active-line-in{height:18rpx; overflow:hidden; margin-top:6rpx;}
 
- .nav2-active-line{width:18rpx; height:18rpx; border-radius:20rpx; 
 
- border-width:6rpx; border-style:solid; margin-top:-15rpx;}
 
- /* #ifdef APP-NVUE */
 
- .nav2-active-line{width:30rpx; height:30rpx;}
 
- /* #endif */
 
- </style>
 
 
  |