index.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body">
  4. <div class="student_head">
  5. <!-- <img src="../assets/banner.png" alt="" /> -->
  6. <el-carousel trigger="click" style="width: 100%; height: 300px">
  7. <el-carousel-item v-for="item in bannerList" :key="item.id">
  8. <!-- <h3 class="small">{{ item }}</h3> -->
  9. <img
  10. class="imgS"
  11. :src="item.poster"
  12. alt=""
  13. @click.stop="
  14. goTo('/courseDetail?courseId=' + item.url + '&userid=' + userid + '&oid=' + oid)
  15. "
  16. />
  17. </el-carousel-item>
  18. </el-carousel>
  19. </div>
  20. <div class="body_student">
  21. <div class="student_body">
  22. <div class="top">
  23. <div :class="{ active: 0 == zoneListId }" @click="selectAll()">
  24. 所有课程
  25. </div>
  26. <div
  27. :class="{ active: item.id == zoneListId }"
  28. v-for="(item, index) in zoneList"
  29. :key="index"
  30. @click="checkZone(item.id)"
  31. >
  32. {{ item.name }}
  33. </div>
  34. </div>
  35. <div>
  36. <div class="main_box">
  37. <div
  38. class="box_course"
  39. v-for="(item, index) in zoneClass"
  40. :key="index"
  41. >
  42. <div class="wheel">
  43. <img
  44. :src="
  45. item.cover
  46. ? JSON.parse(item.cover)[0].url
  47. : require('../assets/wheel.png')
  48. "
  49. alt=""
  50. />
  51. </div>
  52. <div class="middle_white">
  53. <div class="textOverflow">{{ item.title }}</div>
  54. <div class="people">
  55. <div class="man">
  56. <img src="../assets/people.png" alt="" />
  57. </div>
  58. <div>
  59. {{
  60. item.pNum != null && item.pNum != "" ? item.pNum : "0"
  61. }}人学习
  62. </div>
  63. </div>
  64. </div>
  65. <div
  66. class="now_study"
  67. @click="
  68. goTo(
  69. '/courseDetail?courseId=' +
  70. item.courseId +
  71. '&userid=' +
  72. userid + '&oid=' + oid
  73. )
  74. "
  75. >
  76. 立即学习
  77. </div>
  78. </div>
  79. <div class="course_empty" v-if="zoneClass.length == 0">
  80. 暂无数据
  81. </div>
  82. </div>
  83. </div>
  84. <div class="student_page" style="margin: 15px 0 0">
  85. <el-pagination
  86. background
  87. layout="prev, pager, next"
  88. :page-size="10"
  89. :total="total"
  90. v-if="page && zoneListId != 0"
  91. @current-change="handleCurrentChange"
  92. >
  93. </el-pagination>
  94. <el-pagination
  95. background
  96. layout="prev, pager, next"
  97. :page-size="10"
  98. :total="total"
  99. v-if="page && zoneListId == 0"
  100. @current-change="handleCurrentChange1"
  101. >
  102. </el-pagination>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. </template>
  109. <script>
  110. export default {
  111. data() {
  112. return {
  113. zoneList: [],
  114. zoneClass: [],
  115. page: 1,
  116. total: 0,
  117. isListAjax: false,
  118. zoneListId: "",
  119. bannerList: [],
  120. userid: this.$route.query.userid,
  121. oid: this.$route.query.oid,
  122. };
  123. },
  124. methods: {
  125. goTo(path) {
  126. this.$router.push(path);
  127. },
  128. getZone() {
  129. this.ajax
  130. .get(this.$store.state.api + "getZone", "")
  131. .then((res) => {
  132. console.log(res.data[0]);
  133. this.zoneList = res.data[0];
  134. // this.zoneListId = this.zoneList[0].id;
  135. // this.getZoneClass(this.zoneList[0].id);
  136. this.selectAll();
  137. })
  138. .catch((err) => {
  139. console.error(err);
  140. });
  141. },
  142. //获取专区下的课程
  143. getZoneClass(zid) {
  144. this.isListAjax = true;
  145. const loading = this.openLoading(document.querySelector(".main_box"));
  146. let params = {
  147. bid: zid,
  148. oid: this.oid,
  149. page: this.page,
  150. };
  151. this.ajax
  152. .get(this.$store.state.api + "getZoneClassStudent", params)
  153. .then((res) => {
  154. loading.close();
  155. this.isListAjax = false;
  156. this.zoneClass = res.data[0];
  157. this.total = res.data[0].length ? res.data[0][0].num : 0;
  158. console.log(this.zoneClass);
  159. })
  160. .catch((err) => {
  161. console.error(err);
  162. });
  163. },
  164. selectAll() {
  165. this.zoneListId = 0;
  166. this.isListAjax = true;
  167. const loading = this.openLoading(document.querySelector(".main_box"));
  168. let params = {
  169. oid: this.oid,
  170. page: this.page,
  171. };
  172. this.ajax
  173. .get(this.$store.state.api + "selectAllCourse", params)
  174. .then((res) => {
  175. loading.close();
  176. this.isListAjax = false;
  177. this.zoneClass = res.data[0];
  178. this.total = res.data[0].length ? res.data[0][0].num : 0;
  179. console.log(this.zoneClass);
  180. })
  181. .catch((err) => {
  182. console.error(err);
  183. });
  184. },
  185. checkZone(id) {
  186. this.page = 1;
  187. this.zoneListId = id;
  188. this.getZoneClass(id);
  189. },
  190. handleCurrentChange(val) {
  191. this.page = val;
  192. this.getZoneClass(this.zoneListId);
  193. },
  194. handleCurrentChange1(val) {
  195. this.page = val;
  196. this.selectAll();
  197. },
  198. //获取banner
  199. getBanner() {
  200. this.ajax
  201. .get(this.$store.state.api + "getBanner", "")
  202. .then((res) => {
  203. this.bannerList = res.data[0];
  204. console.log(this.bannerList);
  205. })
  206. .catch((err) => {
  207. console.error(err);
  208. });
  209. },
  210. },
  211. created() {
  212. this.getZone();
  213. this.getBanner();
  214. document.scrollingElement.scrollTop = 0;
  215. },
  216. };
  217. </script>
  218. <style scoped>
  219. .student_head .imgS {
  220. width: 100%;
  221. height: 100%;
  222. cursor: pointer;
  223. }
  224. .student_body {
  225. width: 100%;
  226. height: 100%;
  227. margin: 0 auto;
  228. background: #fff;
  229. padding: 0 0 20px;
  230. }
  231. .top {
  232. padding: 20px 30px 20px 1%;
  233. box-sizing: border-box;
  234. display: flex;
  235. align-items: center;
  236. }
  237. .top div {
  238. cursor: pointer;
  239. box-sizing: border-box;
  240. height: 35px;
  241. line-height: 35px;
  242. margin: 0 10px 0 0;
  243. padding-bottom: 5px;
  244. width: 80px;
  245. text-align: center;
  246. }
  247. .top .active {
  248. border-bottom: 3px solid #0e71e6;
  249. }
  250. .isactive {
  251. border-bottom: 3px solid #0e71e6;
  252. }
  253. .box_fk {
  254. width: 8px;
  255. height: 21px;
  256. background: #0e71e6;
  257. margin-right: 5px;
  258. }
  259. .wheel {
  260. width: 100%;
  261. height: 140px;
  262. }
  263. .man {
  264. width: 16px;
  265. height: 16px;
  266. }
  267. .wheel > img,
  268. .man > img {
  269. width: 100%;
  270. height: 100%;
  271. object-fit: cover;
  272. }
  273. .box_course {
  274. display: flex;
  275. flex-direction: column;
  276. flex-wrap: nowrap;
  277. margin: 0px 1% 20px;
  278. width: 18%;
  279. /*border: 1px solid #cecece; */
  280. border-radius: 5px;
  281. overflow: hidden;
  282. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%),
  283. 0px 2px 1px -1px rgb(0 0 0 / 12%);
  284. justify-content: space-between;
  285. height: 240px;
  286. }
  287. .middle_white {
  288. font-size: 14px;
  289. margin: 5px 0 5px 10px;
  290. }
  291. .people {
  292. display: flex;
  293. margin-top: 5px;
  294. align-items: center;
  295. }
  296. .people > div:nth-child(2) {
  297. margin-left: 10px;
  298. }
  299. .now_study {
  300. width: 100%;
  301. height: 40px;
  302. color: #fff;
  303. background: #86b8f5;
  304. text-align: center;
  305. line-height: 40px;
  306. font-size: 13px;
  307. cursor: pointer;
  308. }
  309. .now_study:hover {
  310. background: #658eeb;
  311. }
  312. .main_box {
  313. width: 100%;
  314. display: flex;
  315. flex-direction: row;
  316. flex-wrap: wrap;
  317. justify-content: flex-start;
  318. margin: 0 auto;
  319. }
  320. .right_bottom_flex {
  321. width: 219px;
  322. height: 144px;
  323. margin: auto 0;
  324. }
  325. .right_bottom_flex > img {
  326. width: 100%;
  327. height: 100%;
  328. }
  329. .body_student {
  330. margin: 10px auto;
  331. width: 98%;
  332. height: 100%;
  333. }
  334. .student_head {
  335. width: 100%;
  336. height: 30%;
  337. }
  338. .textOverflow {
  339. padding: 0 5px 0 0px;
  340. width: 95%;
  341. overflow: hidden;
  342. white-space: nowrap;
  343. text-overflow: ellipsis;
  344. }
  345. .student_page {
  346. margin-top: 10px;
  347. }
  348. .course_empty {
  349. width: 100%;
  350. height: 800px;
  351. display: flex;
  352. align-items: center;
  353. justify-content: center;
  354. }
  355. </style>