有同學要仿美團分類菜單.寫了一個.
跟 微信小程序開發之實現選項卡(窗口頂部TabBar)頁面切換很類似

代碼:
js就這么一點
//index.js //獲取應用實例 var app = getApp()Page({ data: { currentTab: 0, grids: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], swiperList:[0, 1, 2, 3, 4] }, onLoad: function () { }, click: function (e) { console.log(e.currentTarget.dataset.id) console.log(e.currentTarget.dataset.index) wx.showToast({ title: '第' + e.currentTarget.dataset.id + '欄' + '第' + e.currentTarget.dataset.index + '個', icon: 'success', duration: 1500 }) }, /** * 滑動切換tab */ bindChange: function (e) { console.log(e.detail.current) this.setData({ currentTab: e.detail.current }); },})以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!
新聞熱點
疑難解答