detail.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. <template>
  2. <view class="content">
  3. <view class="hflex acenter jbetween top">
  4. <image src="/static/image/index1/logo.png" class="logo"></image>
  5. <view class="vflex">
  6. <view class="top_title">線上課程,直播,活動,求職,補習,一應俱全</view>
  7. <view class="top_title2">「Day Day U」APP開啟更多功能</view>
  8. </view>
  9. <view class="top_btn hflex acenter jcenter">下載</view>
  10. </view>
  11. <view class="video">
  12. <view class="top_label hflex acenter jcenter">會員免費試看此課程,立即下載APP註冊</view>
  13. <video :src="pageData.video"></video>
  14. </view>
  15. <view class="box">
  16. <view class="box_title">{{pageData.title}}<span class="title_text">線上課程</span></view>
  17. <view class="hflex acenter">
  18. <image class="avatar" :src="pageData.headimg"></image>
  19. <view class="user_name">{{pageData.name}}</view>
  20. </view>
  21. <!-- <view class="info">{{pageData.intro}}</view> -->
  22. <view class="hflex acenter ">
  23. <view class="text_style1">{{evaluate.evaluate_avg}}評分</view>
  24. <u-rate count="5" v-model="evaluate.evaluate_avg" active-color="#f7b500"></u-rate>
  25. <!-- <image src="/static/image/index1/watch.png" style="margin: 0 1rpx 0 2rpx;width: 32rpx;height: 32rpx;"></image>
  26. <view class="text_style1">{{pageData.target_num}}觀看</view> -->
  27. </view>
  28. <view class=" hflex aend">
  29. <view class="text_blue">HK $ </view>
  30. <view class="price">{{pageData.price}}</view>
  31. <view class="text_style1 line">HK ${{pageData.original_price}}</view>
  32. <view class="text_style1" style="font-size: 28rpx;padding-left: 20rpx;"> {{pageData.discount}}折扣</view>
  33. </view>
  34. <view class="hflex acenter jcenter buy_btn">立即購買</view>
  35. <view class="list">
  36. <view class="title" style="padding: 32rpx 0;">你將學會</view>
  37. <view class="vflex">
  38. <block v-for="(item,index) in pageData.synopsis" :key="index">
  39. <view class="hflex acenter" style="padding: 0 0 24rpx;">
  40. <image src="/static/image/index1/checked.png" class="checked"></image>
  41. <view class="checked_text">{{item}}</view>
  42. </view>
  43. </block>
  44. </view>
  45. </view>
  46. <view class="title" style="padding: 48rpx 0 32rpx;">此課程包括</view>
  47. <view class="hflex acenter fwrap" style="padding: 0 24rpx;">
  48. <block v-for="(item,index) in pageData.include" :key="index">
  49. <view class="text_style2">{{item}}</view>
  50. </block>
  51. </view>
  52. <view class="course_content">
  53. <view class="course_top hflex acenter jbetween">
  54. <view class="course_title">課程內容</view>
  55. <view class="title_right">{{pageData.section_num}}章節·{{pageData.classroom_num}}單元·總長{{pageData.duration}}分鐘</view>
  56. </view>
  57. <view class="course_list">
  58. <block v-for="(item,index) in pageData.section_info.slice(0,3)" :key="index">
  59. <view class="list_item">
  60. <view class="hflex acenter jbetween">
  61. <view class="item_left">{{item.section_name}}</view>
  62. <view class="hflex acenter" @click="open(index)">
  63. <!-- <view class="item_right">長度·{{item.length}}分鐘</view> -->
  64. <u-icon name="arrow-down" color="#000" size="18" v-if="item.open"></u-icon>
  65. <u-icon name="arrow-right" color="#000" size="18" v-else></u-icon>
  66. </view>
  67. </view>
  68. <view class="children" v-show="item.open">
  69. <block v-for="(item2,index2) in item.element_info" :key="index2">
  70. <view class="hflex acenter jbetween" style="padding: 15rpx 0pt 0pt;">
  71. <view class="hflex acenter">
  72. <image src="/static/image/index1/task.png" class="stop" v-if="item2.job_name !== ''"></image>
  73. <image src="/static/image/index1/stop.png" class="stop"></image>
  74. <view class="label">單元{{index2 + 1}}-{{item2.element_name}}</view>
  75. <view class="label" v-if="item2.job_name !== ''">作業1-{{item2.job_name}}</view>
  76. </view>
  77. <view class="item_right">{{item2.time}}分鐘</view>
  78. </view>
  79. </block>
  80. </view>
  81. </view>
  82. </block>
  83. <view class="hflex acenter jcenter" style="padding-top: 32rpx;">
  84. <view class="hflex acenter jcenter list_btn">還有{{pageData.section_num - 3}}章節</view>
  85. </view>
  86. </view>
  87. </view>
  88. <view class="title" style="padding: 48rpx 0 32rpx;">課程要求和說明</view>
  89. <view class="vflex">
  90. <u-parse :content="pageData.detail"></u-parse>
  91. <!-- <view class="hflex acenter jcenter">
  92. <view class="show_btn hflex acenter jcenter">顯示更多</view>
  93. </view> -->
  94. </view>
  95. <view class="course_content">
  96. <view class="course_top hflex acenter jbetween">
  97. <view class="hflex acenter">
  98. <u-icon name="star-fill" color="#f7b500" size="21"></u-icon>
  99. <view class="score_text">{{evaluate.evaluate_avg}}</view>
  100. <view class="score_text" style="font-size: 24rpx;">課程評分</view>
  101. </view>
  102. </view>
  103. <view class="course_list">
  104. <block v-for="(item,index) in evaluate.evaluate_list.slice(0,3)" :key="index">
  105. <view class="list_item hflex acenter">
  106. <image :src="item.headimg" class="item_avatar"></image>
  107. <view class="img_right">
  108. <view class="hflex acenter">
  109. <view class="item_name2">{{item.name}}</view>
  110. <u-rate count="5" v-model="item.content" active-color="#f7b500"></u-rate>
  111. </view>
  112. <view class="text_content">{{item.content}}</view>
  113. </view>
  114. </view>
  115. </block>
  116. <view class="hflex acenter jcenter" style="padding-top: 32rpx;">
  117. <view class="hflex acenter jcenter list_btn">{{evaluate.evaluate_list.length == 0? '暫無評分' : '顯示更多'}}</view>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. <view class="bottom vflex acenter jcenter">
  123. <image :src="bottom.img1" class="bottom_img"></image>
  124. </view>
  125. <view class="footer hflex acenter jcenter">
  126. <image :src="bottom.img2" class="bottom_left"></image>
  127. <image :src="bottom.img3" class="bottom_right"></image>
  128. </view>
  129. </view>
  130. </template>
  131. <script>
  132. import $api from '@/static/js/api.js'
  133. var that = ''
  134. export default {
  135. data() {
  136. return {
  137. pageData: {
  138. },
  139. bottom: {
  140. img1: '/static/image/index1/bottom_img1.png',
  141. img2: '/static/image/index1/bottom_img2.png',
  142. img3: '/static/image/index1/bottom_img3.png',
  143. },
  144. evaluate:'',
  145. id: ''
  146. }
  147. },
  148. onLoad(options) {
  149. that = this
  150. that.id = options.id
  151. that.getData()
  152. that.getEvaluate()
  153. },
  154. methods: {
  155. getData() {
  156. $api.req({
  157. url: '/api/Online_course/course_detail',
  158. data: {
  159. id: that.id
  160. }
  161. }, function(res) {
  162. if(res.code == 1) {
  163. that.pageData = res.data
  164. }
  165. })
  166. },
  167. getEvaluate() {
  168. $api.req({
  169. url: '/api/Online_course/evaluate_list',
  170. data: {
  171. page: 1,
  172. page_size: 3,
  173. course_id: that.id
  174. }
  175. }, function(res) {
  176. if(res.code == 1) {
  177. that.evaluate = res.data
  178. }
  179. })
  180. },
  181. open(index) {
  182. if(that.pageData.section_info[index].open) {
  183. that.pageData.section_info[index].open = false
  184. } else {
  185. that.$set(that.pageData.section_info[index],'open',true)
  186. }
  187. }
  188. },
  189. }
  190. </script>
  191. <style lang="scss" scoped>
  192. .content {
  193. .top {
  194. width: 100%;
  195. height: 120rpx;
  196. background: #FFFFFF;
  197. box-shadow: 0px 6rpx 12rpx 0px rgba(0,0,0,0.16);
  198. box-sizing: border-box;
  199. padding: 20rpx;
  200. .logo {
  201. width: 112rpx;
  202. height: 77rpx;
  203. }
  204. .top_title {
  205. font-size: 26rpx;
  206. font-weight: 500;
  207. color: #333333;
  208. line-height: 30rpx;
  209. }
  210. .top_title2 {
  211. font-size: 26rpx;
  212. font-weight: 400;
  213. color: #999999;
  214. line-height: 30rpx;
  215. padding-top: 4rpx;
  216. }
  217. .top_btn {
  218. width: 114rpx;
  219. height: 46rpx;
  220. background: #231E7F;
  221. border-radius: 36rpx;
  222. font-size: 28rpx;
  223. font-weight: 400;
  224. color: #FFFFFF;
  225. }
  226. }
  227. .video {
  228. width: 100%;
  229. height: 478rpx;
  230. .top_label {
  231. width: 100%;
  232. height: 56rpx;
  233. background: #231E7F;
  234. font-size: 26rpx;
  235. font-weight: 400;
  236. color: #FFFFFF;
  237. line-height: 37rpx;
  238. letter-spacing: 1rpx;
  239. }
  240. uni-video {
  241. width: 100%;
  242. height: 422rpx;
  243. }
  244. }
  245. .box {
  246. box-sizing: border-box;
  247. padding: 0 48rpx;
  248. width: 100%;
  249. .box_title {
  250. font-size: 32rpx;
  251. font-weight: 600;
  252. color: #333333;
  253. padding: 36rpx 0 32rpx;
  254. line-height: 45rpx;
  255. }
  256. .title_text {
  257. // width: 120rpx;
  258. height: 36rpx;
  259. padding: 0 20rpx;
  260. background: #55C3B9;
  261. border-radius: 24rpx 0px 24rpx 0px;
  262. font-size: 20rpx;
  263. font-weight: 500;
  264. color: #FFFFFF;
  265. line-height: 36rpx;
  266. text-align: center;
  267. float: right;
  268. margin-top: 10rpx;
  269. }
  270. .avatar {
  271. width: 78rpx;
  272. height: 78rpx;
  273. margin: 0 12rpx 0 0;
  274. border-radius: 50%;
  275. }
  276. .user_name {
  277. font-size: 34rpx;
  278. font-weight: 600;
  279. color: #333333;
  280. line-height: 48rpx;
  281. }
  282. .info {
  283. font-size: 28rpx;
  284. font-weight: 400;
  285. color: #666666;
  286. line-height: 40rpx;
  287. padding: 20rpx 0 16rpx;
  288. }
  289. .text_style1 {
  290. font-size: 24rpx;
  291. font-weight: 400;
  292. color: #999999;
  293. line-height: 33rpx;
  294. }
  295. .line {
  296. font-size: 28rpx;
  297. padding-left: 20rpx;
  298. text-decoration: line-through;
  299. }
  300. .text_blue {
  301. font-size: 36rpx;
  302. font-weight: 600;
  303. color: #5581FB;
  304. line-height: 50rpx;
  305. }
  306. .price {
  307. font-size: 56rpx;
  308. color: #5581FB;
  309. font-weight: 600;
  310. }
  311. .buy_btn {
  312. width: 246rpx;
  313. height: 68rpx;
  314. background: #5581FB;
  315. border-radius: 40rpx;
  316. margin: 25rpx auto 72rpx;
  317. font-size: 28rpx;
  318. font-weight: 400;
  319. color: #FFFFFF;
  320. line-height: 28rpx;
  321. letter-spacing: 1rpx;
  322. }
  323. .title {
  324. font-size: 32rpx;
  325. font-weight: 600;
  326. color: #FFFFFF;
  327. line-height: 36rpx;
  328. text-align: center;
  329. background: linear-gradient(180deg, #4AC1FD 0%, #B259FA 100%);
  330. -webkit-background-clip: text;
  331. -webkit-text-fill-color: transparent;
  332. }
  333. .list {
  334. width: 644rpx;
  335. border-radius: 16rpx;
  336. border: 2rpx solid #5581FB;
  337. box-sizing: border-box;
  338. padding: 0 24rpx;
  339. .checked {
  340. padding-right: 8rpx;
  341. width: 29rpx;
  342. height: 24rpx;
  343. }
  344. .checked_text {
  345. font-size: 28rpx;
  346. font-weight: 400;
  347. color: #666666;
  348. line-height: 28rpx;
  349. }
  350. }
  351. .text_style2 {
  352. width: 45%;
  353. padding-left: 22rpx;
  354. font-size: 28rpx;
  355. font-weight: 400;
  356. color: #666666;
  357. line-height: 28rpx;
  358. padding-bottom: 26rpx;
  359. position: relative;
  360. }
  361. .text_style2::before {
  362. content: "";
  363. position: absolute;
  364. left: 0;
  365. top: 8rpx;
  366. width: 12rpx;
  367. height: 12rpx;
  368. border: 2rpx solid #9E6DFB;
  369. border-radius: 50%;
  370. }
  371. .show_btn {
  372. width: 181rpx;
  373. height: 48rpx;
  374. border-radius: 8rpx;
  375. border: 2rpx solid #5581FB;
  376. font-size: 28rpx;
  377. font-weight: 400;
  378. color: #5581FB;
  379. line-height: 40rpx;
  380. margin: 0 0 48rpx;
  381. }
  382. .course_content {
  383. position: relative;
  384. .course_top {
  385. width: 100%;
  386. height: 120rpx;
  387. background: #5581FB;
  388. border-radius: 16px;
  389. box-sizing: border-box;
  390. padding: 20rpx 48rpx;
  391. // position: absolute;
  392. // left: 0;
  393. // bottom: 466rpx;
  394. .course_title {
  395. font-size: 32rpx;
  396. font-weight: 600;
  397. color: #FFFFFF;
  398. line-height: 36rpx;
  399. }
  400. .title_right {
  401. font-size: 20rpx;
  402. font-weight: 400;
  403. color: #FFFFFF;
  404. line-height: 28rpx;
  405. }
  406. .score_text {
  407. font-size: 36rpx;
  408. font-weight: 600;
  409. color: #FFFFFF;
  410. line-height: 50rpx;
  411. }
  412. }
  413. .course_list {
  414. width: 100%;
  415. background: #F5F8FF;
  416. border-radius: 16rpx;
  417. box-sizing: border-box;
  418. padding: 44rpx;
  419. .list_item {
  420. width: 100%;
  421. box-sizing: border-box;
  422. padding: 31rpx 0;
  423. border-bottom: 1rpx solid #9476FB;
  424. .item_left {
  425. font-size: 28rpx;
  426. font-weight: 600;
  427. color: #341D70;
  428. line-height: 40rpx;
  429. }
  430. .item_right {
  431. font-size: 20rpx;
  432. font-weight: 400;
  433. color: #666666;
  434. line-height: 28rpx;
  435. }
  436. .label {
  437. font-size: 26rpx;
  438. font-weight: 400;
  439. color: #333333;
  440. line-height: 37rpx;
  441. }
  442. .stop {
  443. width: 24rpx;
  444. height: 24rpx;
  445. margin-right: 12rpx;
  446. }
  447. .item_avatar {
  448. width: 80rpx;
  449. height: 80rpx;
  450. border-radius: 50%;
  451. }
  452. .img_right {
  453. margin: 0 0 0 20rpx;
  454. .item_name2 {
  455. font-size: 28rpx;
  456. font-weight: 600;
  457. color: #333333;
  458. line-height: 40rpx;
  459. padding-right: 60rpx;
  460. }
  461. .item_content {
  462. font-size: 26rpx;
  463. font-weight: 400;
  464. color: #666666;
  465. line-height: 37rpx;
  466. }
  467. }
  468. }
  469. .list_item:nth-last-child(1) {
  470. border: none;
  471. }
  472. }
  473. .list_btn {
  474. width: 222rpx;
  475. height: 48rpx;
  476. background: #5581FB;
  477. border-radius: 8rpx;
  478. font-size: 28rpx;
  479. font-weight: 400;
  480. color: #FFFFFF;
  481. line-height: 40rpx;
  482. }
  483. }
  484. }
  485. .bottom {
  486. width: 100%;
  487. padding: 40rpx 0 0;
  488. .bottom_img {
  489. width: 316rpx;
  490. height: 368rpx;
  491. margin-bottom: 48rpx;
  492. }
  493. }
  494. .footer {
  495. width: 100%;
  496. height: 262rpx;
  497. background: url('/static/image/index1/footer_bg.png') no-repeat;
  498. background-size: 100%;
  499. .bottom_left {
  500. width: 216rpx;
  501. height: 64rpx;
  502. margin-right: 56rpx;
  503. }
  504. .bottom_right {
  505. width: 216rpx;
  506. height: 64rpx;
  507. }
  508. }
  509. }
  510. </style>