works.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <view class="page">
  3. <cu-custom :isBack="true" title="课堂作品"></cu-custom>
  4. <scroll-view scroll-y="true" :style="[{ height: 'calc(100vh - ' + topHeader + 'px)' }]">
  5. <view class="content">
  6. <view class="course-img">
  7. <swiper class="swiper" :indicator-dots="swiper.indicatorDots" :autoplay="swiper.autoplay" :interval="swiper.interval" :duration="swiper.duration">
  8. <swiper-item v-for="(item, index) in detail.course_data.image" :key="index">
  9. <view class="swiper-item">
  10. <image :src="item" mode="widthFix"></image>
  11. </view>
  12. </swiper-item>
  13. </swiper>
  14. </view>
  15. <view>
  16. <view class="title margin-top-sm">课堂作品</view>
  17. <view class="list" v-if="detail.student_comment_data">
  18. <view class="cu-card case" v-for="(item, index) in detail.student_comment_data.data" :key="index">
  19. <view class="cu-item shadow">
  20. <view class="image">
  21. <view v-for="(img, i) in item.images" :key="i">
  22. <image :src="img" v-if="checkTypes(img, 'imgs')" mode="aspectFit" style="width: 100%;"></image>
  23. <video :src="img" v-if="checkTypes(img, 'video')" style="width: 100%;"></video>
  24. </view>
  25. <view class="margin-bottom-xs">老师点评:{{ detail.teach_review_data.data[0].msg }}</view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. </template>
  35. <script>
  36. import { checkTypes } from '@/common/utils/index'
  37. export default {
  38. data() {
  39. return {
  40. topHeader: this.globalCustomBarHeight,
  41. detail: {},
  42. swiper: {
  43. indicatorDots: true,
  44. autoplay: true,
  45. interval: 2000,
  46. duration: 500
  47. }
  48. }
  49. },
  50. onLoad() {
  51. this.init()
  52. },
  53. methods: {
  54. checkTypes,
  55. init() {
  56. this.detail = JSON.parse(uni.getStorageSync('daily_class'))
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss" scoped>
  62. .page {
  63. height: 100vh;
  64. }
  65. </style>