This article shares the specific code for WeChat applet to achieve Tab switching effect for your reference. The specific content is as follows How to useThe code is as follows (example): Define a status status data: { status: 0, }, The code is as follows (example): When clicking on the switch, use the status to switch according to the index subscript to achieve js code: handtab(e) { console.log(e); let index = e.currentTarget.dataset.index console.log(index); this.setData({ currentIndex: index, status: e.currentTarget.dataset.index //When clicking on the switch, use the status to switch according to the index subscript}) }, wxml code: <view> <block wx:for="{{data}}" wx-key="index" class="list_top"> <view data-index="{{index}}" class="list_one {{index==currentIndex?'active':''}}" bindtap="handtab">{{item.name}} </view> </block> <block wx:for="{{shopList}}" wx:key="index"> <view class="shopList_box" bindtap="handDetail" data-id="{{item.goods_id}}" wx:if="{{status==0}}"> //Use wx:if status == 0 in wxml to change the tab switch to show and hide the following part <view class="shopList_left"> <image src="{{item.goods_big_logo}}"></image> </view> <view class="shopList_right"> <text class="right">{{item.goods_name}}</text> <text class="price">¥{{item.goods_price}}</text> </view> </view> </block> <block> //status==1<view wx:if="{{status==1}}">2</view> </block> <block> //status==2<view wx:if="{{status==2}}">3</view> </block> </view> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to implement mysql database backup in golang
>>: How to set static IP in centOS7 NET mode
Table of contents 1. Original value and reference...
1. Remove MySQL a. sudo apt-get autoremove --purg...
1. Add the viewport tag to the HTML header. At th...
Ubuntu Server 16.04 MySQL 8.0 installation and co...
This article example shares the specific code of ...
effect: The GROUP_CONCAT function can concatenate...
TabIndex is to press the Tab key to sequentially o...
Docker officially recommends that we use port map...
Overview An index is a table of correspondence be...
In this chapter, we will start to operate redis i...
The solution is as follows: 1. Force delete conta...
1. Download MySQL from the official website: This...
Floating elements cause their parent elements to ...
Table of contents Why is addEventListener needed?...
Preface: The "Getting Started with MySQL&quo...