|
@@ -50,7 +50,26 @@
|
|
|
<div>
|
|
|
<div class="main_box" v-loading="loading">
|
|
|
<div style="display:flex;flex-wrap:wrap" v-if="!typeCheck">
|
|
|
- <div class="box_course" v-for="(item, index) in zoneClass" :key="index">
|
|
|
+ <div class="box_course" v-for="(item, index) in zoneClass" :key="index" @click="
|
|
|
+ goTo(
|
|
|
+ '/courseDetailS?courseId=' +
|
|
|
+ item.courseId +
|
|
|
+ '&userid=' +
|
|
|
+ userid +
|
|
|
+ '&oid=' +
|
|
|
+ oid +
|
|
|
+ '&org=' +
|
|
|
+ org +
|
|
|
+ '&cid=' +
|
|
|
+ classId +
|
|
|
+ '&tType=' +
|
|
|
+ tType +
|
|
|
+ '&role=' +
|
|
|
+ role +
|
|
|
+ '&screenType=' +
|
|
|
+ screenType
|
|
|
+ )
|
|
|
+ ">
|
|
|
<div class="wheel">
|
|
|
<img :src="
|
|
|
item.cover
|
|
@@ -107,7 +126,26 @@
|
|
|
<div class="FirstTypeBox" v-for="(type, tindex) in CourseType2" :key="tindex">
|
|
|
<div class="title">{{ type.name }}</div>
|
|
|
<div style="display: flex;flex-flow: wrap;margin-top: 20px;">
|
|
|
- <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index">
|
|
|
+ <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index" @click="
|
|
|
+ goTo(
|
|
|
+ '/courseDetailS?courseId=' +
|
|
|
+ item.courseId +
|
|
|
+ '&userid=' +
|
|
|
+ userid +
|
|
|
+ '&oid=' +
|
|
|
+ oid +
|
|
|
+ '&org=' +
|
|
|
+ org +
|
|
|
+ '&cid=' +
|
|
|
+ classId +
|
|
|
+ '&tType=' +
|
|
|
+ tType +
|
|
|
+ '&role=' +
|
|
|
+ role +
|
|
|
+ '&screenType=' +
|
|
|
+ screenType
|
|
|
+ )
|
|
|
+ ">
|
|
|
<div class="wheel">
|
|
|
<img :src="
|
|
|
item.cover
|
|
@@ -876,18 +914,19 @@ export default {
|
|
|
/* margin: 0px 1% 20px; */
|
|
|
margin: 0 15px 20px 0;
|
|
|
width: 300px;
|
|
|
- height: 260px;
|
|
|
+ /* height: 260px; */
|
|
|
/*border: 1px solid #cecece; */
|
|
|
border-radius: 10px;
|
|
|
overflow: hidden;
|
|
|
box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%),
|
|
|
0px 2px 1px -1px rgb(0 0 0 / 12%);
|
|
|
justify-content: space-between;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
.middle_white {
|
|
|
font-size: 14px;
|
|
|
- margin: 5px 10px;
|
|
|
+ margin: 5px 10px 10px;
|
|
|
}
|
|
|
|
|
|
.people {
|
|
@@ -907,6 +946,7 @@ export default {
|
|
|
line-height: 40px;
|
|
|
font-size: 13px;
|
|
|
cursor: pointer;
|
|
|
+ display: none;
|
|
|
}
|
|
|
|
|
|
.now_study:hover {
|