uniapp:实现tabs(scroll-view)点击左右滑动

<!-- 内容区域 -->
		<view class="nav-box">
			<view class="nav-tab">
				<scroll-view
					class="navtab-scroll"
					enhanced
					:show-scrollbar="false"
					:scroll-left="scrollLeft"
					:scroll-with-animation="true"
					scroll-x>
					<view
						class="navTab-box"
						:style="{ width: totalWidth + 'px' }">
						<view
							class="tabTopItem"
							v-for="(item, index) in 10"
							:key="item.id"
							@click="checkedItem(index)">
							<view
								:class="[
									index == tabChecked
										? 'checkedStyle checkedImg'
										: 'navTab-item',
									'navTab-item',
								]">
								<view class="tab-title">清洁服务</view>
							</view>
						</view>
					</view>
				</scroll-view>
			</view>
		</view>


	data() {
		return {
			searchValue: "",
			tabChecked: 0,
			itemWidth: 0, //每个item的宽度
			totalWidth: 10000, //设置一个默认总宽度
			scrollLeft: 0, //滑动距离
			tabTopList: [],
		};
	},
	onLoad() {
		/*
					计算总宽度和每个item的宽度
					item宽度 = 自身宽度 + 8px右边距
					总宽度 = item个数 * 每个item的宽度
				*/
		this.$nextTick(() => {
			let dom = uni.createSelectorQuery().select(".tabTopItem");
			dom.boundingClientRect((data) => {
				let num = this.tabTopList.length;
				this.itemWidth = data.width + 8;
				this.totalWidth = num * this.itemWidth;
			}).exec();
		});
	},
	methods: {
		checkedItem(index) {
			console.log(index);
			this.tabChecked = index;
			this.scrollLeft = this.itemWidth * (index - 1);
		},
	},

.nav-box {
	margin-top: 20rpx;
	background: #ffffff;
	.nav-tab {
		width: 100vw;
		height: 133rpx;
		box-sizing: border-box;
		background-color: pink;
		padding: 0 55rpx;
		padding-top: 36rpx;
		.navTab-box {
			display: flex;
			.navTab-item {
				height: 133rpx;
				width: 165rpx;
				line-height: 45rpx;
				text-align: center;
				font-weight: 400;
				font-size: 26rpx;
				color: #162641;
				font-style: normal;
				position: relative;
			}
			.checkedStyle {
				font-weight: 600;
				font-size: 32rpx;
				color: #162641;
			}
			.checkedImg ::after {
				position: absolute;
				content: "";
				width: 52rpx;
				height: 16rpx;
				left: 50%;
				top: 60rpx;
				z-index: 999;
				transform: translateX(-50%);
				background-image: url("https://img.yunxi360.com/xiaochengxu/%E8%B7%AF%E5%BE%84%208%402x.png");
				background-size: 100% 100%;
			}
		}
	}
}
可以参考以下代码: ```html <template> <view> <scroll-view class="scroll-view" scroll-x="true"> <view class="tab-item" :class="{active: activeIndex === index}" v-for="(item, index) in tabs" :key="index" @tap="handleTabClick(index)">{{item}}</view> </scroll-view> <view class="list-wrap"> <view class="list" v-show="activeIndex === 0"> <view v-for="(item, index) in list1" :key="index">{{item}}</view> </view> <view class="list" v-show="activeIndex === 1"> <view v-for="(item, index) in list2" :key="index">{{item}}</view> </view> <view class="list" v-show="activeIndex === 2"> <view v-for="(item, index) in list3" :key="index">{{item}}</view> </view> </view> </view> </template> <script> export default { data() { return { tabs: ['列表1', '列表2', '列表3'], activeIndex: 0, list1: ['列表1-1', '列表1-2', '列表1-3'], list2: ['列表2-1', '列表2-2', '列表2-3'], list3: ['列表3-1', '列表3-2', '列表3-3'] } }, methods: { handleTabClick(index) { this.activeIndex = index } } } </script> <style> .scroll-view { display: flex; white-space: nowrap; } .tab-item { padding: 20rpx 30rpx; font-size: 32rpx; color: #999; } .tab-item.active { color: #333; border-bottom: 4rpx solid #333; } .list-wrap { height: calc(100vh - 200rpx); overflow: auto; } .list { padding: 20rpx; font-size: 28rpx; line-height: 1.5; color: #333; } </style> ``` 其中,我们使用了一个 `scroll-view` 实现了多个横向滚动的标签,并用 `v-for` 渲染了多个列表,通过 `v-show` 根据 `activeIndex` 的值来显示或隐藏对应的列表。最后,我们使用了 `@tap` 监听标签的点击事件,并将 `activeIndex` 的值更新为点击的标签的索引,从而实现了多列表切换。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值