course.vue
4.9 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<template>
<view class="content">
<view class="nodatabox" v-if="courselist.length!=0&&time==true">
<view class="noimg">
<image src="../../static/nodata.png" mode=""></image>
</view>
<view class="zanwushu">暂无内容</view>
<view class="gocourse" @click="goindex">快前往首页解锁课程添加内容吧</view>
</view>
<view class="courselist" v-else>
<view class='courseitem' v-for="(item,index) in courselist" :key="index" @click=toCourseIntro(item)>
<view class="itemtopname flexone">
<text class="itemtitle">{{item.title}}</text>
</view>
<view class="textcontent flexone">
<view class="textcontentk textcontentleft flexone">
总课时 <text class='kejie'>{{item.customs_num}}</text> 课
</view>
<view class="textcontentk textcontentleft youtext flexone">
已完成 <text class='kejie'>{{item.customs_user_num}}</text> 课
</view>
<view class="finishimg" v-if="item.state==3">
<image src="../../static/finish.png" mode=""></image>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
courselist: [],
page:1,
pageNum:10,
time:false
}
},
methods: {
sure() {
uni.navigateTo({
url: '../registerone/registerone'
})
},
// 获取用户信息
getuserinfo() {
let that = this;
var url = '/api/index/user_info';
var params = {
}
app.post(url, params, "post").then((res) => {
console.log(res);
}).catch((err) => {
console.log(err)
if (err.msg == '您已被拉黑') {
wx.showToast({
title: err.msg,
icon: "none"
})
setTimeout(function() {
wx.navigateTo({
url: '/pages/start/start'
})
}, 1500)
} else if (err.msg == '用户未登录') {
wx.showToast({
title: '请重新登录',
icon: 'none'
})
wx.setStorageSync("token", "")
setTimeout(function(){
uni.navigateTo({
url:'/pages/start/start'
})
},1500)
}
})
},
// 获取课程列表
getcourselist(){
let that=this;
let url = "/api/course/course_list";
let param = {
page: that.page,
pageNum: 10
};
app.post(url, param, 'get').then(r => {
console.log('课程列表',r)
that.courselist=that.courselist.concat(r)
}).catch(err => {
console.log(err)
})
},
// 课程介绍
toCourseIntro(item){
// var item=JSON.stringify(item)
// console.log(item)
// wx.setStorageSync("item",JSON.stringify(item))
// wx.setStorageSync("item", item)
let token=uni.getStorageSync("token")
if(token==''){
uni.showToast({
title:'请先登录',
icon:'none'
})
setTimeout(function(){
uni.navigateTo({
url:"/pages/start/start"
})
},1500)
}else{
uni.navigateTo({
url:"/pages/course/courseIntro?id="+item.id
})
}
},
// 前往首页
goindex(){
uni.switchTab({
url:'/pages/index/index'
})
},
},
onLaunch: function() {
console.log('App Launch,app启动')
},
onShow: function() {
this.page=1;
this.courselist=[];
console.log('App Show,app展现在前台')
this.getcourselist();
this.getuserinfo();
setTimeout(function(){
this.time=true
},1000)
},
onHide: function() {
console.log('App Hide,app不再展现在前台')
},
onLoad() {
},
onReachBottom() {
var newpage = this.page;
newpage++;
this.page = newpage
this.getcourselist()
},
}
</script>
<style>
image {
width: 100%;
height: 100%;
}
page {
background: #FCFBFE;
}
.youtext{
margin-left:56rpx;
}
.content {
padding: 32rpx;
box-sizing: border-box;
}
.itemtopname {
color: #3D444D;
font-size: 28rpx;
}
.textcontent {
margin-top: 40rpx;
}
.textcontentk {
color: #8C9198;
font-size: 24rpx;
}
.kejie {
color: #EE8B27;
font-size: 32rpx;
margin: 0 8rpx;
}
.itemname {
color: #3D444D;
font-size: 28rpx;
}
.itemtext {
margin-left: 20rpx;
}
.courseitem {
width: 686rpx;
background: rgba(255, 255, 255, 1);
box-shadow: 0rpx 0rpx 6rpx rgba(0, 0, 0, 0.04);
opacity: 1;
border-radius: 8rpx;
padding: 44rpx 30rpx;
box-sizing: border-box;
margin: 0 auto 24rpx;
background: #fff;
position: relative;
}
.finishimg{
width:171rpx;
height:171rpx;
font-size: 0;
position: absolute;
right:0;
top:0;
}
.zanwushu {
color: #8C9198;
font-size: 28rpx;
margin-top: 86rpx;
text-align: center;
}
.gocourse {
color: #06121E;
font-size: 32rpx;
margin-top: 32rpx;
text-align: center;
}
.noimg {
width: 528rpx;
height: 441rpx;
font-size: 0;
margin: 168rpx auto 0;
}
</style>