moreClassify.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // pages/moreClassify/moreClassify.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. classifyList:[]//分类列表
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad(options) {
  14. // 删除更多分类元素
  15. let classifyList = JSON.parse(options.data)
  16. classifyList.splice(7,1)
  17. this.setData({
  18. classifyList:options.data?classifyList:[]
  19. })
  20. },
  21. goOrder(e) {
  22. let index = e.currentTarget.dataset.index
  23. app.globalData.toViewIndex = index
  24. wx.switchTab({
  25. url: '/pages/orderBy/orderBy',
  26. success: function () {
  27. var page = getCurrentPages().pop();
  28. page.onPullDownRefresh();
  29. }
  30. })
  31. },
  32. /**
  33. * 生命周期函数--监听页面初次渲染完成
  34. */
  35. onReady() {
  36. },
  37. /**
  38. * 生命周期函数--监听页面显示
  39. */
  40. onShow() {
  41. },
  42. /**
  43. * 生命周期函数--监听页面隐藏
  44. */
  45. onHide() {
  46. },
  47. /**
  48. * 生命周期函数--监听页面卸载
  49. */
  50. onUnload() {
  51. },
  52. /**
  53. * 页面相关事件处理函数--监听用户下拉动作
  54. */
  55. onPullDownRefresh() {
  56. },
  57. /**
  58. * 页面上拉触底事件的处理函数
  59. */
  60. onReachBottom() {
  61. },
  62. /**
  63. * 用户点击右上角分享
  64. */
  65. onShareAppMessage() {
  66. }
  67. })