25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

93 satır
1.8 KiB

  1. // Pages/community/index/index.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. currentTab : 0,
  8. list : [{
  9. iconPath: "/asset/img/icon-share1.png",
  10. selectedIconPath: "/asset/img/icon-share0.png",
  11. text: "社区",
  12. },{
  13. iconPath: "/asset/img/icon-history.png",
  14. selectedIconPath: "/asset/img/icon-history0.png",
  15. text: "浏览历史",
  16. },{
  17. iconPath: "/asset/img/icon-fav.png",
  18. selectedIconPath: "/asset/img/icon-fav0.png",
  19. text: "收藏",
  20. },{
  21. iconPath: "/asset/img/icon-id1.png",
  22. selectedIconPath: "/asset/img/icon-id0.png",
  23. text: "个人主页",
  24. }]
  25. },
  26. switchTab: function (e) {
  27. let that = this;
  28. if (this.data.currentTab === e.target.dataset.current) {
  29. return false;
  30. } else {
  31. that.setData({
  32. currentTab: e.target.dataset.current,
  33. });
  34. }
  35. },
  36. /**
  37. * 生命周期函数--监听页面加载
  38. */
  39. onLoad: function (options) {
  40. },
  41. /**
  42. * 生命周期函数--监听页面初次渲染完成
  43. */
  44. onReady: function () {
  45. },
  46. /**
  47. * 生命周期函数--监听页面显示
  48. */
  49. onShow: function () {
  50. },
  51. /**
  52. * 生命周期函数--监听页面隐藏
  53. */
  54. onHide: function () {
  55. },
  56. /**
  57. * 生命周期函数--监听页面卸载
  58. */
  59. onUnload: function () {
  60. },
  61. /**
  62. * 页面相关事件处理函数--监听用户下拉动作
  63. */
  64. onPullDownRefresh: function () {
  65. },
  66. /**
  67. * 页面上拉触底事件的处理函数
  68. */
  69. onReachBottom: function () {
  70. },
  71. /**
  72. * 用户点击右上角分享
  73. */
  74. onShareAppMessage: function () {
  75. }
  76. })