index.vue
4.5 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
<template>
<view class="discovery_wrap">
<view class="bannerimg">
<image :src="bannerimg" mode=""></image>
</view>
<!-- 轮播图 -->
<!-- <swiper :indicator-dots="true" :circular="true" :autoplay="true" :interval="3000" indicator-active-color="#fff" indicator-color="rgba(255,255,255,0.5)" :duration="1000">
<swiper-item v-for="(item,index) in swiperList" :key="index">
<view class="swiper-item">
<image :src="item.image" mode=""></image>
</view>
</swiper-item>
</swiper> -->
<!-- 推荐课程 -->
<view class="recommend_course">
<!-- 标题 -->
<view class="recommend_top layout_row">
<image src="../../static/theme.png" mode=""></image>
<view class="">
推荐课程
</view>
</view>
<!-- 推荐的课程 -->
<view class="courses_box">
<view class="courses_list">
<view class="courses_single justify_between" :class="{no_bot:noBot == index+1}" v-for="(item,index) in courseList" :key="index" @click="toCourseIntro(item)">
<!-- 左侧 -->
<view class="course_left justify_column_bet">
<!-- 课程名称 -->
<view class="course_name">{{item.title}}</view>
<!-- 进行状态 -->
<view class="layout_row course_status">
<image src="../../static/index_07.png" mode=""></image>
<view class="status_des" v-if="item.state==1">正在进行</view>
<view class="status_des" v-if="item.state==2">已结束</view>
</view>
</view>
<!-- 右侧 -->
<view class="course_right">
<image :src="item.image" mode=""></image>
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
swiperList:[
],
bannerimg:'',
courseList:[],
noBot:3,
page:1,
pageNum:10,
}
},
methods: {
// 获取课程列表
getcourselist(){
let that=this;
// let url = "/api/course/course_list";
let url='/api/index/index'
let Userid = uni.getStorageSync('userid')
let param = {
// page: that.page,
// pageNum: that.pageNum
};
app.post(url, param, 'get').then(r => {
console.log(r)
that.courseList=r.list
}).catch(err => {
console.log(err)
})
},
// 获取banner图
getbanner(){
let that=this;
let url = "/api/slide/get_slide";
let Userid = uni.getStorageSync('userid')
let param = {
};
app.post(url, param, 'get').then(r => {
console.log(r)
that.bannerimg=r.image
}).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)
uni.navigateTo({
url:"/pages/course/courseIntro"
})
},
},
onLoad() {
this.getcourselist();
this.getbanner()
},
}
</script>
<style lang="scss">
page{
background-color: #FAFBFD;
}
.bannerimg{
width:686rpx;
height:248rpx;
margin:42rpx auto 0;
}
.discovery_wrap{
padding: 0 32upx;
// 轮播图
swiper{
margin: 42upx 0;
.swiper-item{
width: 100%;
height: 300upx;
image{
border-radius: 20upx;
}
}
}
// 推荐课程
.recommend_course{
padding: 32upx 0 124upx;
// 标题
.recommend_top{
color: #595959;
font-size: 36upx;
margin-bottom: 28upx;
image{
width: 32upx;
height: 32upx;
margin-right: 18upx;
}
}
// 推荐的课程
.courses_box{
background-color: #fff;
border-radius: 8upx;
padding: 0 30upx;
// 单个课程
.courses_single{
padding: 40upx 0;
border-bottom: 1px solid #eee;
// 左侧
.course_left{
width: 380upx;
// 课程名称
.course_name{
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: #3D444D;
font-size: 28upx;
}
// 进行状态
.course_status{
color: #8C9198;
font-size: 24upx;
image{
width: 32upx;
height: 32upx;
margin-right: 8upx;
}
}
}
// 右侧
.course_right{
width: 216upx;
height: 124upx;
image{
border-radius: 8upx;
}
}
}
.no_bot{
border-bottom: none;
}
}
}
}
</style>