personal.js
2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import request from "../../utils/request";
let startY = 0; // 手指起始的坐标
let moveY = 0; // 手指移动的坐标
let moveDistance = 0; // 手指移动的距离
Page({
/**
* 页面的初始数据
*/
data: {
coverTransform: 'translateY(0)',
coveTransition: '',
userInfo: {}, // 用户信息
recentPlayList: [], // 用户播放记录
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
// 读取用户的基本信息
let userInfo = wx.getStorageSync('userInfo');
if(userInfo){ // 用户登录
// 更新userInfo的状态
this.setData({
userInfo: JSON.parse(userInfo)
})
// 获取用户播放记录
this.getUserRecentPlayList(this.data.userInfo.userId)
}
},
// 获取用户播放记录的功能函数
async getUserRecentPlayList(userId){
let recentPlayListData = await request('/user/record', {uid: userId, type: 0});
let index = 0;
let recentPlayList = recentPlayListData.allData.splice(0, 10).map(item => {
item.id = index++;
return item;
})
this.setData({
recentPlayList
})
},
handleTouchStart(event){
this.setData({
coveTransition: ''
})
// 获取手指起始坐标
startY = event.touches[0].clientY;
},
handleTouchMove(event){
moveY = event.touches[0].clientY;
moveDistance = moveY - startY;
if(moveDistance <= 0){
return;
}
if(moveDistance >= 80){
moveDistance = 80;
}
// 动态更新coverTransform的状态值
this.setData({
coverTransform: `translateY(${moveDistance}rpx)`
})
},
handleTouchEnd(){
// 动态更新coverTransform的状态值
this.setData({
coverTransform: `translateY(0rpx)`,
coveTransition: 'transform 1s linear'
})
},
// 跳转至登录login页面的回调
toLogin(){
wx.navigateTo({
url: '/pages/login/login'
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})