mycollection.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import httpRequestApi from '../../../utils/APIClient';
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. collection_data: []
  8. },
  9. toClass: function(e) {
  10. let targetCode = e.currentTarget.dataset.targetcode;
  11. let title = e.currentTarget.dataset.title;
  12. wx.navigateTo({
  13. url: `../../main/class/class?id=${targetCode}&title=${title}`
  14. });
  15. },
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. onLoad: function(option) {
  20. console.log(option.title);
  21. if (option.title) {
  22. wx.setNavigationBarTitle({
  23. title: option.title //页面标题为路由参数
  24. });
  25. this.setData({
  26. title: option.title
  27. });
  28. }
  29. httpRequestApi.myFavorites().success(res => {
  30. this.setData({
  31. collection_data: res.data.data.list
  32. });
  33. });
  34. },
  35. /**
  36. * 生命周期函数--监听页面初次渲染完成
  37. */
  38. onReady: function() {
  39. },
  40. /**
  41. * 生命周期函数--监听页面显示
  42. */
  43. onShow: function() {
  44. },
  45. /**
  46. * 生命周期函数--监听页面隐藏
  47. */
  48. onHide: function() {
  49. },
  50. /**
  51. * 生命周期函数--监听页面卸载
  52. */
  53. onUnload: function() {
  54. },
  55. /**
  56. * 页面相关事件处理函数--监听用户下拉动作
  57. */
  58. onPullDownRefresh: function() {
  59. },
  60. /**
  61. * 页面上拉触底事件的处理函数
  62. */
  63. onReachBottom: function() {
  64. },
  65. /**
  66. * 用户点击右上角分享
  67. */
  68. onShareAppMessage: function() {
  69. }
  70. })