Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

77 řádky
1.5 KiB

  1. // Pages/travel/follow/index/index.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. currentTab: 0,
  8. list: [
  9. {
  10. iconPath: "/asset/img/icon-report.png",
  11. selectedIconPath: "/asset/img/icon-report0.png",
  12. text: "行动报备",
  13. },
  14. {
  15. iconPath: "/asset/img/icon-bill.png",
  16. selectedIconPath: "/asset/img/icon-bill0.png",
  17. text: "记账单",
  18. },
  19. {
  20. iconPath: "/asset/img/icon-checked.png",
  21. selectedIconPath: "/asset/img/icon-checked0.png",
  22. text: "计划打卡",
  23. },
  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. onReady: function () {},
  44. /**
  45. * 生命周期函数--监听页面显示
  46. */
  47. onShow: function () {},
  48. /**
  49. * 生命周期函数--监听页面隐藏
  50. */
  51. onHide: function () {},
  52. /**
  53. * 生命周期函数--监听页面卸载
  54. */
  55. onUnload: function () {},
  56. /**
  57. * 页面相关事件处理函数--监听用户下拉动作
  58. */
  59. onPullDownRefresh: function () {},
  60. /**
  61. * 页面上拉触底事件的处理函数
  62. */
  63. onReachBottom: function () {},
  64. /**
  65. * 用户点击右上角分享
  66. */
  67. onShareAppMessage: function () {},
  68. });