|
@@ -6,7 +6,7 @@ Page({ |
|
@@ -6,7 +6,7 @@ Page({ |
6
|
* 页面的初始数据
|
6
|
* 页面的初始数据
|
7
|
*/
|
7
|
*/
|
8
|
data: {
|
8
|
data: {
|
9
|
- default_card:[],
|
9
|
+ default_card: [],
|
10
|
imgsUrl: [],
|
10
|
imgsUrl: [],
|
11
|
swipercurrent: 0,
|
11
|
swipercurrent: 0,
|
12
|
current_student: 0,
|
12
|
current_student: 0,
|
|
@@ -30,7 +30,10 @@ Page({ |
|
@@ -30,7 +30,10 @@ Page({ |
30
|
}
|
30
|
}
|
31
|
app.post(url, params, header).then((res) => {
|
31
|
app.post(url, params, header).then((res) => {
|
32
|
// console.log(res);
|
32
|
// console.log(res);
|
33
|
- this.setData({imgsUrl: res.list, service: res.service})
|
33
|
+ this.setData({
|
|
|
34
|
+ imgsUrl: res.list,
|
|
|
35
|
+ service: res.service
|
|
|
36
|
+ })
|
34
|
})
|
37
|
})
|
35
|
},
|
38
|
},
|
36
|
|
39
|
|
|
@@ -43,7 +46,9 @@ Page({ |
|
@@ -43,7 +46,9 @@ Page({ |
43
|
}
|
46
|
}
|
44
|
app.post(url, {}, {}).then((res) => {
|
47
|
app.post(url, {}, {}).then((res) => {
|
45
|
// console.log('畅玩卡说明',res);
|
48
|
// console.log('畅玩卡说明',res);
|
46
|
- this.setData({service: res})
|
49
|
+ this.setData({
|
|
|
50
|
+ service: res
|
|
|
51
|
+ })
|
47
|
})
|
52
|
})
|
48
|
},
|
53
|
},
|
49
|
|
54
|
|
|
@@ -71,7 +76,7 @@ Page({ |
|
@@ -71,7 +76,7 @@ Page({ |
71
|
/**
|
76
|
/**
|
72
|
* 生命周期函数--监听页面加载
|
77
|
* 生命周期函数--监听页面加载
|
73
|
*/
|
78
|
*/
|
74
|
- onLoad: function (options) {
|
79
|
+ onLoad: function(options) {
|
75
|
this.myCardList();
|
80
|
this.myCardList();
|
76
|
this.card();
|
81
|
this.card();
|
77
|
},
|
82
|
},
|
|
@@ -79,49 +84,49 @@ Page({ |
|
@@ -79,49 +84,49 @@ Page({ |
79
|
/**
|
84
|
/**
|
80
|
* 生命周期函数--监听页面初次渲染完成
|
85
|
* 生命周期函数--监听页面初次渲染完成
|
81
|
*/
|
86
|
*/
|
82
|
- onReady: function () {
|
87
|
+ onReady: function() {
|
83
|
|
88
|
|
84
|
},
|
89
|
},
|
85
|
|
90
|
|
86
|
/**
|
91
|
/**
|
87
|
* 生命周期函数--监听页面显示
|
92
|
* 生命周期函数--监听页面显示
|
88
|
*/
|
93
|
*/
|
89
|
- onShow: function () {
|
94
|
+ onShow: function() {
|
90
|
|
95
|
|
91
|
},
|
96
|
},
|
92
|
|
97
|
|
93
|
/**
|
98
|
/**
|
94
|
* 生命周期函数--监听页面隐藏
|
99
|
* 生命周期函数--监听页面隐藏
|
95
|
*/
|
100
|
*/
|
96
|
- onHide: function () {
|
101
|
+ onHide: function() {
|
97
|
|
102
|
|
98
|
},
|
103
|
},
|
99
|
|
104
|
|
100
|
/**
|
105
|
/**
|
101
|
* 生命周期函数--监听页面卸载
|
106
|
* 生命周期函数--监听页面卸载
|
102
|
*/
|
107
|
*/
|
103
|
- onUnload: function () {
|
108
|
+ onUnload: function() {
|
104
|
|
109
|
|
105
|
},
|
110
|
},
|
106
|
|
111
|
|
107
|
/**
|
112
|
/**
|
108
|
* 页面相关事件处理函数--监听用户下拉动作
|
113
|
* 页面相关事件处理函数--监听用户下拉动作
|
109
|
*/
|
114
|
*/
|
110
|
- onPullDownRefresh: function () {
|
115
|
+ onPullDownRefresh: function() {
|
111
|
|
116
|
|
112
|
},
|
117
|
},
|
113
|
|
118
|
|
114
|
/**
|
119
|
/**
|
115
|
* 页面上拉触底事件的处理函数
|
120
|
* 页面上拉触底事件的处理函数
|
116
|
*/
|
121
|
*/
|
117
|
- onReachBottom: function () {
|
122
|
+ onReachBottom: function() {
|
118
|
|
123
|
|
119
|
},
|
124
|
},
|
120
|
|
125
|
|
121
|
/**
|
126
|
/**
|
122
|
* 用户点击右上角分享
|
127
|
* 用户点击右上角分享
|
123
|
*/
|
128
|
*/
|
124
|
- onShareAppMessage: function () {
|
129
|
+ onShareAppMessage: function() {
|
125
|
|
130
|
|
126
|
}
|
131
|
}
|
127
|
}) |
132
|
}) |