classDetail.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <template>
  2. <view class="content">
  3. <u-card :title="classInfo.name" :show-foot="false" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  4. <view slot="body">
  5. <view class="class-info-text">
  6. <u-icon name="clock"></u-icon>
  7. {{classInfo.classStartDate}}&nbsp;&nbsp;{{classInfo.classStartHours}}&nbsp;&nbsp;{{classInfo.residue}}课时
  8. </view>
  9. <view class="class-info-text">
  10. <u-icon name="map"></u-icon>
  11. {{classInfo.address}}
  12. </view>
  13. </view>
  14. </u-card>
  15. <u-card title="授课教练" :show-foot="false" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  16. <view class="techaer-info-box" slot="body">
  17. <u-image :src="classInfo.coachUrl" mode="aspectFill" width="80px" height="80px" border-radius="10px" style=""></u-image>
  18. <view class="techaer-info">
  19. <view class="class-info-title">{{classInfo.coachName}}</view>
  20. <view class="class-info-text">{{classInfo.coachName}}</view>
  21. </view>
  22. </view>
  23. </u-card>
  24. <u-card title="班级简介" title-size="32" :show-foot="true" margin="0px 0px 10px 0px" :head-style="cardStyle">
  25. <view slot="body">
  26. <u-read-more :toggle="true" show-height="100" color="#333333" :shadow-style="shadowStyle">
  27. <view class="class-info-text">{{classInfo.desc}}</view>
  28. </u-read-more>
  29. </view>
  30. </u-card>
  31. <u-card title="班级近况" :show-foot="false" title-size="32" margin="0px" :head-style="cardStyle">
  32. <view class="class-show-box" slot="body">
  33. <view v-for="(item, index) in classInfo.showList" :key="index" class="class-show-card">
  34. <u-image :src="item.url" mode="aspectFill" height="30vw" border-radius="10px" v-if="item.type == 0"></u-image>
  35. <view class="video-col" v-if="item.type == 1">
  36. <video :src="item.url" object-fit="cover" controls :id="'video' + index"></video>
  37. </view>
  38. <view class="class-show-name">{{item.name}}</view>
  39. </view>
  40. </view>
  41. </u-card>
  42. <u-top-tips ref="uTips" </u-top-tips> </view> </template> <script>
  43. import {
  44. mapGetters
  45. } from 'vuex'
  46. const NET = require('@/utils/request')
  47. const API = require('@/config/api')
  48. export default {
  49. computed: {
  50. ...mapGetters([
  51. 'customStyle',
  52. ])
  53. },
  54. data() {
  55. return {
  56. classId: '',
  57. classInfo: {
  58. name: '',
  59. classStartDate: '',
  60. classStartHours: '',
  61. residue: '',
  62. address: '',
  63. coachName: '',
  64. coachDesc: '',
  65. coachUrl: '',
  66. desc: '',
  67. showList: [],
  68. },
  69. handleStyleLeft: {
  70. borderRadius: '40px 0 0 40px',
  71. borderRight: '1px solid #ffffff'
  72. },
  73. handleStyleRight: {
  74. borderRadius: '0 40px 40px 0',
  75. borderLeft: '1px solid #ffffff'
  76. },
  77. cardStyle: {
  78. fontWeight: 'bold'
  79. },
  80. shadowStyle: {
  81. backgroundImage: 'linear-gradient(to bottom, transparent 80rpx, #ffffff 80rpx, #ffffff 100rpx)',
  82. paddingTop: "100rpx",
  83. marginTop: "-100rpx"
  84. },
  85. }
  86. },
  87. onLoad(options) {
  88. this.classId = options.id
  89. this.initialize()
  90. },
  91. onShow() {},
  92. onPullDownRefresh() {
  93. this.initialize()
  94. setTimeout(() => {
  95. uni.stopPullDownRefresh();
  96. }, 500)
  97. },
  98. methods: {
  99. // 获取初始化数据
  100. initialize() {
  101. NET.request(API.getClassDetail, {
  102. id: this.classId
  103. }, 'POST').then(res => {
  104. this.classInfo = res.data
  105. }).catch(error => {
  106. this.$refs.uTips.show({
  107. title: error.message,
  108. type: 'warning',
  109. })
  110. })
  111. },
  112. },
  113. }
  114. </script>
  115. <style>
  116. page {
  117. width: 100%;
  118. height: 100%;
  119. background-color: #f7f7f7;
  120. position: relative;
  121. }
  122. </style>
  123. <style lang="scss" scoped>
  124. @import "@/static/css/themes.scss";
  125. .content {
  126. width: 100%;
  127. float: left;
  128. .class-info-text {
  129. color: #999999;
  130. line-height: 18px;
  131. u-icon {
  132. margin-right: 2px;
  133. }
  134. }
  135. .student-box {
  136. max-height: 200px;
  137. padding: 0 15px;
  138. margin: 25px 0 0 0;
  139. box-sizing: border-box;
  140. overflow: auto;
  141. /deep/.u-card__head {
  142. padding-bottom: 0px !important;
  143. }
  144. }
  145. .techaer-info-box {
  146. display: flex;
  147. .techaer-info {
  148. flex: 1;
  149. margin-left: 10px;
  150. .class-info-title {
  151. font-size: 14px;
  152. font-weight: bold;
  153. margin-bottom: 5px;
  154. }
  155. }
  156. }
  157. .class-show-box {
  158. width: 100%;
  159. float: left;
  160. .class-show-card {
  161. width: calc(50% - 16px);
  162. margin: 0 8px 16px 8px;
  163. float: left;
  164. .class-show-name {
  165. width: 100%;
  166. text-align: center;
  167. line-height: 20px;
  168. font-size: 14px;
  169. margin-top: 5px;
  170. }
  171. }
  172. .video-col {
  173. width: 100%;
  174. height: 30vw;
  175. border-radius: 10px;
  176. video {
  177. width: 100%;
  178. height: 30vw;
  179. }
  180. }
  181. }
  182. .handle-fix-box {
  183. u-button {
  184. width: 50%;
  185. display: inline-block;
  186. }
  187. }
  188. }
  189. </style>