小程序模板网

微信小程序 仿美团分类菜单 swiper分类菜单

发布时间:2017-12-12 17:53 所属栏目:小程序开发教程

分类菜单微信小程序开发之选项卡(窗口顶部TabBar)页面切换很类似

 
 
 

有同学要仿美团分类菜单.写了一个. 
跟 微信小程序开发之选项卡(窗口顶部TabBar)页面切换很类似

仿美团分类菜单

代码: 
js就这么一点

 

		
  1. //index.js
  2. //获取应用实例
  3. var app = getApp()
  4. Page({
  5. data: {
  6. currentTab: 0,
  7. grids: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
  8. swiperList:[0, 1, 2, 3, 4]
  9. },
  10. onLoad: function () {
  11. },
  12. click: function (e) {
  13. console.log(e.currentTarget.dataset.id)
  14. console.log(e.currentTarget.dataset.index)
  15. wx.showToast({
  16. title: '第' + e.currentTarget.dataset.id + '栏' + '第' + e.currentTarget.dataset.index + '个',
  17. icon: 'success',
  18. duration: 1500
  19. })
  20. },
  21. /**
  22. * 滑动切换tab
  23. */
  24. bindChange: function (e) {
  25. console.log(e.detail.current)
  26. this.setData({ currentTab: e.detail.current });
  27. },
  28. })


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/18144.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询