mys.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. userName: ''
  10. }
  11. })
  12. //点击切换
  13. that.myChoice = ({ currentTarget }) => {
  14. that.data.myData.myInd = currentTarget.dataset.index;
  15. that.setData({
  16. myData: that.data.myData
  17. })
  18. //获取个人信息
  19. if(currentTarget.dataset.index == 0) {
  20. that.getUserInfo();
  21. }
  22. //获取收藏列表
  23. if(currentTarget.dataset.index == 1) {
  24. that.getFavoritesList();
  25. }
  26. //获取播放记录
  27. if(currentTarget.dataset.index == 2) {
  28. that.getPlayLogList();
  29. }
  30. }
  31. //滑动切换
  32. that.mySlide = ({detail}) => {
  33. that.data.myData.myInd = detail.current;
  34. // console.log(detail.current);
  35. that.setData({
  36. myData: that.data.myData
  37. })
  38. //获取个人信息
  39. if(detail.current == 0) {
  40. that.getUserInfo();
  41. }
  42. //获取收藏列表
  43. if(detail.current == 1) {
  44. that.getFavoritesList();
  45. }
  46. //获取播放记录
  47. if(detail.current == 2) {
  48. that.getPlayLogList();
  49. }
  50. }
  51. //点击跳转页面
  52. that.setName = () => {
  53. wx.navigateTo({
  54. url: '/pages/setName/setName'
  55. })
  56. }
  57. //获取收藏列表
  58. that.getFavoritesList = () => {
  59. httpRequestApi.getFavoritesList({
  60. pageNo: 1,
  61. pageSize: 10
  62. }).success((res)=>{
  63. console.log('收藏列表', res);
  64. that.data.myData.favoritesList = res.data.data.list;
  65. that.setData({
  66. myData: that.data.myData
  67. })
  68. })
  69. }
  70. //获取播放记录
  71. that.getPlayLogList = () => {
  72. httpRequestApi.getPlayLogList({
  73. pageNo: 1,
  74. pageSize: 10
  75. }).success((res)=>{
  76. console.log('播放记录', res);
  77. that.data.myData.playLogList = res.data.data.list;
  78. that.setData({
  79. myData: that.data.myData
  80. })
  81. })
  82. }
  83. //跳转到相册
  84. that.album = ({ currentTarget }) => {
  85. //const id = currentTarget.dataset.id;
  86. wx.navigateTo({
  87. url: '/pages/album/album'
  88. })
  89. }
  90. //跳转到详情页
  91. that.detail = ({ currentTarget }) => {
  92. const id = currentTarget.dataset.id;
  93. wx.navigateTo({
  94. url: '/pages/details/details?id=' + id
  95. })
  96. }
  97. //获取个人信息
  98. that.getUserInfo = () => {
  99. httpRequestApi.getUserInfo().success(res => {
  100. console.log('七彩童年的用户信息', res);
  101. //wx.setStorage('photoBox', res.data.data.photoBox)
  102. wx.setStorageSync('photoBox', res.data.data.photoBox)
  103. that.data.myData.userName = res.data.data.nickName;
  104. that.setData({
  105. myData: that.data.myData
  106. })
  107. });
  108. }
  109. //初始化调用个人信息
  110. that.getUserInfo();
  111. }