中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

怎么在菜單選擇小程序的頁面

小新
136
2020-12-10 09:17:03
欄目: 云計算

怎么在菜單選擇小程序的頁面

在菜單選擇小程序頁面的案例:

在對應的wxml文件,添加以下代碼:

<view class='topTabSwiper'>

<view class='tab {{currentData == 0 ? "tabBorer" : ""}}' data-current = "0" bindtap='checkCurrent'>推薦</view>

<view class='tab {{currentData == 1 ? "tabBorer" : ""}}' data-current = "1" bindtap='checkCurrent'>熱點</view>

<view class='tab {{currentData == 2 ? "tabBorer" : ""}}' data-current = "2" bindtap='checkCurrent'>關注</view>

</view>

<swiper current="{{currentData}}" class='swiper' style="height:600px;" duration="300" bindchange="bindchange">

<swiper-item><view class='swiper_con'>這是個推薦頁面</view>

</swiper-item>

<swiper-item><view class='swiper_con'>這是個熱點頁面</view>

<button type='primary' bindtap='ReDian'>熱點進入</button>

</swiper-item>

<swiper-item><view class='swiper_con'>這是個關注頁面</view></swiper-item>

</swiper>

在對應的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;}

0
闸北区| 东方市| 澄城县| 盱眙县| 连州市| 塔城市| 景德镇市| 延安市| 荆州市| 南漳县| 鸡西市| 和硕县| 丹凤县| 遂昌县| 定州市| 南雄市| 巍山| 丰顺县| 霍城县| 鱼台县| 文化| 当涂县| 八宿县| 临西县| 内乡县| 乐山市| 洛南县| 尼木县| 余庆县| 红桥区| 西城区| 连山| 伊吾县| 漾濞| 浪卡子县| 全椒县| 陵川县| 大同市| 远安县| 山东省| 青田县|