video.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <template>
  2. <view class="page">
  3. <view class="video">
  4. <image :src="info.image" style="width: 750rpx;height: 456rpx;" mode=""></image>
  5. <image v-if="current==1" src="/static/images/play.png" mode="" class="ding"></image>
  6. <image v-if="current==0" src="/static/images/free.png" mode="" class="free"></image>
  7. </view>
  8. <view class="">
  9. <u-tabs active-color='#06A971' :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  10. <view class="" style="border-top: 2rpx solid rgba(151, 151, 151, 0.1);" v-if="current==0">
  11. <view class="">
  12. <view class="" style="padding: 0 28rpx;">
  13. <view class="titles">{{info.title}}</view>
  14. <view class="teacher">
  15. <text>课程讲师:</text>
  16. <text>{{info.lecturer}}</text>
  17. </view>
  18. <view class="money">
  19. <text>¥</text>
  20. <text>{{info.price}}</text>
  21. </view>
  22. </view>
  23. <view class="back"></view>
  24. <view class="introduce">
  25. <view class="titles" style="margin-top: 0;">
  26. 课程介绍
  27. </view>
  28. <view class="text-info" v-html="video_desc">
  29. <!-- {{video_desc}} -->
  30. </view>
  31. </view>
  32. <view class="" style="height:160rpx;"></view>
  33. </view>
  34. </view>
  35. <!-- <view class="" style="height: 166rpx;"></view> -->
  36. <view class="catalogue" v-if="current==1 && file.length > 0">
  37. <view v-for="(item,index) in file" :key="index" class="section u-flex u-row-between"
  38. @click="onplay(item.url)">
  39. <view class="">
  40. <text class="tong">{{item.title}}</text>
  41. </view>
  42. <view v-if="info.is_pay==1" class="look">
  43. 观看
  44. </view>
  45. <view v-if="item.is_try==0" class="look">
  46. 试看
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="bottom" style="display: flex;justify-content: space-between;">
  52. <view class="button1 u-flex u-row-center" v-if="current==0">
  53. <view class="">免费试看</view>
  54. <image src="/static/images/slice.png" style="width: 32rpx; height: 32rpx;margin-left: 12rpx;" mode="">
  55. </image>
  56. </view>
  57. <view class="button2" v-if="current==0">
  58. 立即订阅
  59. </view>
  60. <view class="button" v-if="current==1">
  61. 立即学习
  62. </view>
  63. </view>
  64. <u-popup v-model="show1" mode="center">
  65. <video :src='url' class="video" id="demoVideo" :controls="true" :enable-progress-gesture="false">
  66. </video>
  67. </u-popup>
  68. </view>
  69. </template>
  70. <script>
  71. export default {
  72. data() {
  73. return {
  74. show1: false,
  75. list: [{
  76. name: '课程介绍',
  77. }, {
  78. name: '目录',
  79. }],
  80. current: 0,
  81. show: false,
  82. id: '',
  83. video_desc: '',
  84. info: {
  85. image: '',
  86. lecturer: '',
  87. price: '',
  88. title: '',
  89. is_pay: '',
  90. },
  91. file: [],
  92. url: ''
  93. };
  94. },
  95. onLoad(options) {
  96. this.id = options.id
  97. this.getVideoInfo()
  98. },
  99. methods: {
  100. //获取视频信息
  101. getVideoInfo() {
  102. this.$u.post('api/video/getVideoInfo', {
  103. id: this.id
  104. }).then(res => {
  105. console.log('info', res);
  106. this.info = res.data
  107. const a = new RegExp('style=""', 'gi')
  108. var content = res.data.video_desc.replace(a, `styles`)
  109. const regex = new RegExp('<img', 'gi')
  110. this.video_desc = content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  111. this.file = res.data.file
  112. })
  113. },
  114. change(index) {
  115. this.current = index;
  116. },
  117. toupdown() {
  118. uni.navigateTo({
  119. url: '/pages/index/updown'
  120. })
  121. },
  122. onplay(url) {
  123. this.show1 = true
  124. this.url = url
  125. }
  126. }
  127. }
  128. </script>
  129. <style lang="scss" scoped>
  130. .text-info {
  131. font-size: 28rpx;
  132. font-family: PingFangSC, PingFang SC;
  133. font-weight: 400;
  134. color: #222222;
  135. margin-top: 24rpx;
  136. }
  137. .button1 {
  138. width: 336rpx;
  139. height: 88rpx;
  140. background: #EEEEEE;
  141. border-radius: 12rpx;
  142. font-size: 32rpx;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 500;
  145. color: #444444;
  146. text-align: center;
  147. line-height: 88rpx;
  148. }
  149. .button2 {
  150. width: 336rpx;
  151. height: 88rpx;
  152. background: #06A971;
  153. border-radius: 12rpx;
  154. font-size: 32rpx;
  155. font-family: PingFangSC, PingFang SC;
  156. font-weight: 500;
  157. color: #FFFFFF;
  158. text-align: center;
  159. line-height: 88rpx;
  160. }
  161. .introduce {
  162. padding: 32rpx 28rpx;
  163. }
  164. .back {
  165. height: 20rpx;
  166. background: #F5F5F5;
  167. }
  168. .money {
  169. font-size: 28rpx;
  170. font-family: SFPro, SFPro;
  171. font-weight: 500;
  172. color: #CC3300;
  173. margin-top: 28rpx;
  174. margin-bottom: 40rpx;
  175. }
  176. .teacher {
  177. font-size: 24rpx;
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. color: #777777;
  181. margin-top: 24rpx;
  182. }
  183. .titles {
  184. font-size: 32rpx;
  185. font-family: PingFangSC, PingFang SC;
  186. font-weight: 500;
  187. color: #222222;
  188. margin-top: 30rpx;
  189. }
  190. .tong {
  191. font-size: 26rpx;
  192. font-family: PingFangSC, PingFang SC;
  193. font-weight: 400;
  194. color: #333333;
  195. }
  196. .look {
  197. width: 64rpx;
  198. height: 36rpx;
  199. background: #06A971;
  200. border-radius: 6rpx;
  201. font-size: 20rpx;
  202. font-family: PingFangSC, PingFang SC;
  203. font-weight: 400;
  204. color: #FFFFFF;
  205. text-align: center;
  206. line-height: 36rpx;
  207. }
  208. .bottom {
  209. width: 750rpx;
  210. height: 166rpx;
  211. background: #FFFFFF;
  212. position: fixed;
  213. padding: 16rpx 28rpx 62rpx;
  214. bottom: 0;
  215. left: 0;
  216. }
  217. .catalogue {
  218. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  219. padding: 10rpx 28rpx;
  220. }
  221. .section {
  222. width: 702rpx;
  223. height: 84rpx;
  224. background: #F4F4F4;
  225. border-radius: 8rpx;
  226. padding: 24rpx 20rpx 24rpx 24rpx;
  227. margin-top: 20rpx;
  228. }
  229. .button {
  230. width: 694rpx;
  231. height: 88rpx;
  232. background: #06A971;
  233. border-radius: 12rpx;
  234. font-size: 32rpx;
  235. font-family: PingFangSC, PingFang SC;
  236. font-weight: 500;
  237. color: #FFFFFF;
  238. text-align: center;
  239. line-height: 88rpx;
  240. }
  241. .page {
  242. height: 100vh;
  243. }
  244. .video {
  245. width: 750rpx;
  246. height: 456rpx;
  247. position: relative;
  248. }
  249. .ding {
  250. position: absolute;
  251. left: 50%;
  252. top: 50%;
  253. width: 90rpx;
  254. height: 90rpx;
  255. margin-left: -45rpx;
  256. margin-top: -45rpx;
  257. }
  258. .free {
  259. position: absolute;
  260. left: 50%;
  261. top: 50%;
  262. width: 290rpx;
  263. height: 88rpx;
  264. margin-left: -145rpx;
  265. margin-top: -44rpx;
  266. }
  267. </style>