mys.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import httpRequestApi from '../../utils/APIRequest';
  2. export function myInit(that) {
  3. that.setData({
  4. myData: {
  5. nav: ['我的娃', '收藏', '历史'],
  6. myInd: 0,
  7. favoritesList: [],
  8. playLogList: []
  9. }
  10. })
  11. //点击切换
  12. that.myChoice = ({ currentTarget }) => {
  13. that.data.myData.myInd = currentTarget.dataset.index;
  14. that.setData({
  15. myData: that.data.myData
  16. })
  17. //获取收藏列表
  18. if(currentTarget.dataset.index == 1) {
  19. that.getFavoritesList();
  20. }
  21. //获取播放记录
  22. if(currentTarget.dataset.index == 2) {
  23. that.getPlayLogList();
  24. }
  25. }
  26. //滑动切换
  27. that.mySlide = ({detail}) => {
  28. that.data.myData.myInd = detail.current;
  29. // console.log(detail.current);
  30. that.setData({
  31. myData: that.data.myData
  32. })
  33. //获取收藏列表
  34. if(detail.current == 1) {
  35. that.getFavoritesList();
  36. }
  37. //获取播放记录
  38. if(detail.current == 2) {
  39. that.getPlayLogList();
  40. }
  41. }
  42. //点击跳转页面
  43. that.setName = () => {
  44. wx.navigateTo({
  45. url: '/pages/setName/setName'
  46. })
  47. }
  48. //获取收藏列表
  49. that.getFavoritesList = () => {
  50. httpRequestApi.getFavoritesList({
  51. pageNo: 1,
  52. pageSize: 10
  53. }).success((res)=>{
  54. console.log('收藏列表', res);
  55. that.data.myData.favoritesList = res.data.data.list;
  56. that.setData({
  57. myData: that.data.myData
  58. })
  59. })
  60. }
  61. //获取播放记录
  62. that.getPlayLogList = () => {
  63. httpRequestApi.getPlayLogList({
  64. pageNo: 1,
  65. pageSize: 10
  66. }).success((res)=>{
  67. console.log('播放记录', res);
  68. that.data.myData.playLogList = res.data.data.list;
  69. that.setData({
  70. myData: that.data.myData
  71. })
  72. })
  73. }
  74. //跳转到相册
  75. that.album = ({ currentTarget }) => {
  76. //const id = currentTarget.dataset.id;
  77. wx.navigateTo({
  78. url: '/pages/album/album'
  79. })
  80. }
  81. }