123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import httpRequestApi from '../../utils/APIRequest';
- export function myInit(that) {
- that.setData({
- myData: {
- nav: ['我的娃', '收藏', '历史'],
- myInd: 0,
- favoritesList: [],
- playLogList: []
- }
- })
- //点击切换
- that.myChoice = ({ currentTarget }) => {
- that.data.myData.myInd = currentTarget.dataset.index;
- that.setData({
- myData: that.data.myData
- })
- //获取收藏列表
- if(currentTarget.dataset.index == 1) {
- that.getFavoritesList();
- }
- //获取播放记录
- if(currentTarget.dataset.index == 2) {
- that.getPlayLogList();
- }
- }
- //滑动切换
- that.mySlide = ({detail}) => {
- that.data.myData.myInd = detail.current;
- // console.log(detail.current);
- that.setData({
- myData: that.data.myData
- })
- //获取收藏列表
- if(detail.current == 1) {
- that.getFavoritesList();
- }
- //获取播放记录
- if(detail.current == 2) {
- that.getPlayLogList();
- }
- }
- //点击跳转页面
- that.setName = () => {
- wx.navigateTo({
- url: '/pages/setName/setName'
- })
- }
- //获取收藏列表
- that.getFavoritesList = () => {
- httpRequestApi.getFavoritesList({
- pageNo: 1,
- pageSize: 10
- }).success((res)=>{
- console.log('收藏列表', res);
- that.data.myData.favoritesList = res.data.data.list;
- that.setData({
- myData: that.data.myData
- })
- })
- }
- //获取播放记录
- that.getPlayLogList = () => {
- httpRequestApi.getPlayLogList({
- pageNo: 1,
- pageSize: 10
- }).success((res)=>{
- console.log('播放记录', res);
- that.data.myData.playLogList = res.data.data.list;
- that.setData({
- myData: that.data.myData
- })
- })
- }
- //跳转到相册
- that.album = ({ currentTarget }) => {
- //const id = currentTarget.dataset.id;
- wx.navigateTo({
- url: '/pages/album/album'
- })
- }
- }
|