|
@@ -1,148 +1,88 @@
|
|
|
-// pages/user/mycollection/mycollection.js
|
|
|
+import httpRequestApi from '../../../utils/APIClient';
|
|
|
Page({
|
|
|
|
|
|
/**
|
|
|
* 页面的初始数据
|
|
|
*/
|
|
|
data: {
|
|
|
- collection_data: [
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- },
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- },
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- },
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- },
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- },
|
|
|
- {
|
|
|
- title: "古诗词诵读(一)江南",
|
|
|
- grade: "一年级(上学期)",
|
|
|
- avatarUrl: '../../../static/image/timg.jpg',
|
|
|
- previewUrl: "../../../static/image/timg.jpg",
|
|
|
- plays: "17230",
|
|
|
- likes: "71230",
|
|
|
- classId: "1",
|
|
|
- avatar: '../../static/image/timg.jpg',
|
|
|
- nickName: '木小雅',
|
|
|
- time: '10-18 09:56'
|
|
|
- }
|
|
|
- ]
|
|
|
+ collection_data: []
|
|
|
+ },
|
|
|
+
|
|
|
+ toClass: function(e) {
|
|
|
+ let targetCode = e.currentTarget.dataset.targetcode;
|
|
|
+ let title = e.currentTarget.dataset.title;
|
|
|
+ wx.navigateTo({
|
|
|
+ url: `../../main/class/class?id=${targetCode}&title=${title}`
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
- onLoad: function (option) {
|
|
|
+ onLoad: function(option) {
|
|
|
console.log(option.title);
|
|
|
if (option.title) {
|
|
|
wx.setNavigationBarTitle({
|
|
|
- title: option.title//页面标题为路由参数
|
|
|
+ title: option.title //页面标题为路由参数
|
|
|
});
|
|
|
this.setData({
|
|
|
title: option.title
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ httpRequestApi.myFavorites().success(res => {
|
|
|
+ this.setData({
|
|
|
+ collection_data: res.data.data.list
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
*/
|
|
|
- onReady: function () {
|
|
|
+ onReady: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面显示
|
|
|
*/
|
|
|
- onShow: function () {
|
|
|
+ onShow: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面隐藏
|
|
|
*/
|
|
|
- onHide: function () {
|
|
|
+ onHide: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面卸载
|
|
|
*/
|
|
|
- onUnload: function () {
|
|
|
+ onUnload: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
|
*/
|
|
|
- onPullDownRefresh: function () {
|
|
|
+ onPullDownRefresh: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 页面上拉触底事件的处理函数
|
|
|
*/
|
|
|
- onReachBottom: function () {
|
|
|
+ onReachBottom: function() {
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 用户点击右上角分享
|
|
|
*/
|
|
|
- onShareAppMessage: function () {
|
|
|
+ onShareAppMessage: function() {
|
|
|
|
|
|
}
|
|
|
})
|