index.vue
7.4 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
284
285
<template>
<div class="container">
<!-- 顶部搜素 -->
<div class="searchhead">
<div class="searchbox flexone">
<div class="searchimg">
<img src="../../../assets/search.png" alt />
</div>
<input
type="text"
placeholder="搜索你感兴趣的课程文章"
class="searchtext"
/>
</div>
</div>
<!-- 课程列表 -->
<div class="courseitem flex">
<div class="courseimg">
<img src="../../../assets/courseimg.png" alt />
</div>
<div class="courseright">
<div class="coursetitle">关于减肥,除了科学运动</div>
<div class="zhibo flexone">
<img src="../../../assets/zhibo.png" alt class="zhiimg" />
<div class="zhiname">正在直播</div>
</div>
<div class="know flexone">
<span class="morepeople">很多人不能正确理解减肥</span>
<div class="knowmore">
了解详情
<img src="../../../assets/yourow.png" alt class="yourow" />
</div>
</div>
</div>
</div>
<div class="courseitem flex">
<div class="courseimg">
<img src="../../../assets/courseimg.png" alt />
</div>
<div class="courseright">
<div class="coursetitle">关于减肥,除了科学运动</div>
<div class="zhibo flexone">
<img src="../../../assets/ready.png" alt class="zhiimg" />
<div class="zhiname">正在直播</div>
</div>
<div class="know flexone">
<span class="morepeople">很多人不能正确理解减肥</span>
<div class="knowmore">
了解详情
<img src="../../../assets/yourow.png" alt class="yourow" />
</div>
</div>
</div>
</div>
<!-- 课程头部 -->
<div class="coursenav flexone">
<div
class="coursenavleft"
:class="selnav == 0 ? 'selactive' : ''"
:data-id="0"
@click="selectnav"
>
音频课程
</div>
<div
class="coursenavleft"
:class="selnav == 1 ? 'selactive' : ''"
:data-id="1"
@click="selectnav"
>
营养小知识
</div>
</div>
<!-- 课程 -->
<div v-if="selnav == 0">
<div class="nodata" v-if="videolist.length == 0">暂无数据</div>
<van-list
class="courseboxk"
v-model="loading"
:finished="finished"
finished-text="没有更多了"
@load="onLoad"
v-else
>
<div class="courseboxitem" v-for="item in videolist" :key="item">
<div class="coursenameimg">
<img :src="item.image" alt />
</div>
<div class="coursetext">
<div class="coursetitle">{{ item.title }}</div>
<div class="coursename">{{ item.description }}</div>
<div class="courseteacher">{{ item.user.nickname }}</div>
</div>
</div>
</van-list>
</div>
<!-- 营养小知识 -->
<div v-if="selnav == 1">
<div class="nodata" v-if="yinglist.length == 0">暂无数据</div>
<van-list
class="courseboxk"
v-model="loadingying"
:finished="finishedying"
finished-text="没有更多了"
@load="onLoadyinyang"
v-else
>
<div
class="courseboxitem"
v-for="item in yinglist"
:key="item.id"
@click="yingyangdetail(item.id)"
>
<div class="coursenameimg">
<img :src="item.image" alt />
</div>
<div class="coursetext">
<div class="coursename knowlagename" v-html="item.content"></div>
</div>
</div>
</van-list>
</div>
<!-- 底部导航 -->
<tabBar v-bind:active="0" />
</div>
</template>
<script>
import Vue from "vue";
import tabBar from "@/components/views/tabBar.vue";
import { List } from "vant";
Vue.use(List);
export default {
components: {
tabBar
},
data() {
return {
selnav: 0,
loading: false,
finished: false,
videolist: [],
// 营养知识
loadingying: false,
finishedying: false,
yinglist: [],
videopage: 1,
this_page: "",
total_page: ""
};
},
created() {
this.getvideolist();
},
methods: {
// 视频上拉加载
onLoad() {
let that = this;
// 异步更新数据
// setTimeout 仅做示例,真实场景中一般为 ajax 请求
setTimeout(() => {
console.log(3434);
let newvideopage = that.videopage;
newvideopage++;
that.videopage = newvideopage;
console.log(that.videopage);
that.getvideolist();
// 加载状态结束
this.loading = false;
// 数据全部加载完成
if (that.this_page == that.total_page) {
this.finished = true;
}
}, 1000);
},
// 营养知识上拉加载
onLoadyinyang() {
let that = this;
// 异步更新数据
// setTimeout 仅做示例,真实场景中一般为 ajax 请求
setTimeout(() => {
console.log(3434);
let newvideopage = that.videopage;
newvideopage++;
that.videopage = newvideopage;
console.log(that.videopage);
that.getyingyang();
// 加载状态结束
this.loadingying = false;
// 数据全部加载完成
if (that.this_page == that.total_page) {
this.finishedying = true;
}
}, 1000);
},
// 获取视频
getvideolist() {
let that = this;
var url = "/api/index/lesson_list";
let param = {
page: that.videopage
};
that.$axios
.post(url, param, Headers)
.then(res => {
console.log(res, "列表");
that.videolist = that.videolist.concat(res.data.lesson);
that.total_page = res.data.total_page;
that.this_page = res.data.this_page;
})
.catch(err => {
console.log(err);
// setTimeout(function () {
// that.$router.go(-1)
// })
});
},
// 获取营养知识
getyingyang() {
console.log(9999);
let that = this;
var url = "/api/index/knowledge_list";
let param = {
page: that.videopage
};
that.$axios
.post(url, param)
.then(res => {
console.log(res, "列表");
that.yinglist = that.yinglist.concat(res.data.knowledge);
that.total_page = res.data.total_page;
that.this_page = res.data.this_page;
})
.catch(err => {
console.log(err);
// setTimeout(function () {
// that.$router.go(-1)
// })
});
},
// 进入营养详情页面
yingyangdetail(id) {
this.$router.push({
path: "/yingyangdetail",
query: { id: id }
});
},
selectnav(e) {
let that = this;
this.selnav = e.currentTarget.dataset.id;
console.log(this.selnav);
if (this.selnav == 0) {
that.total_page = "";
that.this_page = "";
that.videopage = 1;
that.videolist = [];
this.getvideolist();
} else if (this.selnav == 1) {
that.total_page = "";
that.this_page = "";
this.yinglist = [];
that.videopage = 1;
this.getyingyang();
}
}
}
};
</script>
<style scoped>
@import "../../../style/course.css";
</style>