
在菜单选择小程序页面的案例:
在对应的wxml文件,添加以下代码:
推荐
热点
关注
这是个推荐页面
这是个热点页面 <button type='primary' bindtap='ReDian'>热点进入</button>
这是个关注页面
在对应的js文件,添加以下代码:
data: {
currentData: 0,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
//获取当前滑块的index
bindchange: function (e) {
const that = this;
that.setData({
currentData: e.detail.current
})
},
//点击切换,滑块index赋值
checkCurrent: function (e) {
const that = this;
if (that.data.currentData === e.target.dataset.current) {
return false;
} else {
that.setData({
currentData: e.target.dataset.current
})
}
}
在对应的wxss文件,添加以下代码:
.tab{float: left; width: 33.3333%;text-align: center;padding: 10rpx 0; }
.topTabSwiper{border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; zoom: 1;}
.topTabSwiper:after{content: ""; clear: both;display: block;}
.tabBorer{border-bottom: 1px solid #f00; color: #f00;}
.swiper{width: 100%;}
.swiper_con{text-align: center; width: 100%; height: 50%; padding: 80rpx 0;}