video.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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="" @click="open" class="ding"></image>
  6. <image v-if="current==0" src="/static/images/free.png" mode="" @click="open" 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,item.is_try)">
  39. <view class="">
  40. <text class="tong">{{item.title}}</text>
  41. </view>
  42. <view v-if="item.is_try==0&&info.is_pay==1" class="look">
  43. 试看
  44. </view>
  45. <view v-else class="look" v-if="info.is_pay==0">
  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" style="margin-right: 11rpx;" v-if="trylist.length>0&&info.is_pay==1">
  53. <view class="" @click="open">免费试看</view>
  54. <image src="/static/images/slice.png" style="width: 32rpx; height: 32rpx;margin-left: 12rpx;" mode="">
  55. </image>
  56. </view>
  57. <view style="flex: 1;" class="button2" v-if="info.is_pay==1" @click="toorderinfo">
  58. 立即订阅
  59. </view>
  60. <view @click="open()" class="button" v-if="info.is_pay==0">
  61. 立即学习
  62. </view>
  63. </view>
  64. <u-popup v-model="show1" mode="center">
  65. <view class="" style="font-size: 0;">
  66. <video :src='url' class="video" id="demoVideo" :controls="true" :enable-progress-gesture="false">
  67. </video>
  68. </view>
  69. </u-popup>
  70. </view>
  71. </template>
  72. <script>
  73. export default {
  74. data() {
  75. return {
  76. show1: false,
  77. list: [{
  78. name: '课程介绍',
  79. }, {
  80. name: '目录',
  81. }],
  82. current: 0,
  83. show: false,
  84. id: '',
  85. video_desc: '',
  86. info: {
  87. image: '',
  88. lecturer: '',
  89. price: '',
  90. title: '',
  91. is_pay: '',
  92. },
  93. file: [],
  94. url: '',
  95. url1: '',
  96. trylist: []
  97. };
  98. },
  99. onLoad(options) {
  100. this.id = options.id
  101. this.getVideoInfo()
  102. },
  103. methods: {
  104. // 订阅
  105. toorderinfo() {
  106. if (uni.getStorageSync("token")) {
  107. this.$u.post('api/order/createOrder', {
  108. goods_id: this.id,
  109. type: 1
  110. }).then(res => {
  111. if (res.code == 1) {
  112. uni.navigateTo({
  113. url: '/pages/index/orderinfo?id=' + res.data.id + "&index=" + 3
  114. })
  115. }
  116. })
  117. } else {
  118. uni.showModal({
  119. title: '提示',
  120. content: '请先登录',
  121. confirmText: '我知道了',
  122. success: function(res) {
  123. if (res.confirm) {
  124. } else if (res.cancel) {
  125. console.log('用户点击取消');
  126. }
  127. }
  128. });
  129. }
  130. },
  131. open() {
  132. if (this.info.is_pay == 0) {
  133. this.show1 = true
  134. this.url = this.file[0].url
  135. } else if (this.trylist.length > 0) {
  136. this.show1 = true
  137. this.url = this.url1
  138. } else{
  139. this.$u.toast("请购买后观看")
  140. }
  141. },
  142. //获取视频信息
  143. getVideoInfo() {
  144. this.$u.post('api/video/getVideoInfo', {
  145. id: this.id
  146. }).then(res => {
  147. console.log('info', res);
  148. this.info = res.data
  149. const a = new RegExp('style=""', 'gi')
  150. var content = res.data.video_desc.replace(a, `styles`)
  151. const regex = new RegExp('<img', 'gi')
  152. this.video_desc = content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  153. this.file = res.data.file
  154. res.data.file.map(item => {
  155. if (item.is_try == 0) {
  156. this.trylist.push(item)
  157. }
  158. })
  159. this.url1 = this.trylist[0].url
  160. })
  161. },
  162. change(index) {
  163. this.current = index;
  164. },
  165. toupdown() {
  166. uni.navigateTo({
  167. url: '/pages/index/updown'
  168. })
  169. },
  170. onplay(url, is_try) {
  171. if (is_try == 0) {
  172. this.show1 = true
  173. this.url = url
  174. } else if (this.info.is_pay == 0) {
  175. this.show1 = true
  176. this.url = url
  177. } else {
  178. this.$u.toast("请购买后观看")
  179. }
  180. }
  181. }
  182. }
  183. </script>
  184. <style lang="scss" scoped>
  185. .text-info {
  186. font-size: 28rpx;
  187. font-family: PingFangSC, PingFang SC;
  188. font-weight: 400;
  189. color: #222222;
  190. margin-top: 24rpx;
  191. }
  192. .button1 {
  193. width: 336rpx;
  194. height: 88rpx;
  195. background: #EEEEEE;
  196. border-radius: 12rpx;
  197. font-size: 32rpx;
  198. font-family: PingFangSC, PingFang SC;
  199. font-weight: 500;
  200. color: #444444;
  201. text-align: center;
  202. line-height: 88rpx;
  203. }
  204. .button2 {
  205. width: 336rpx;
  206. height: 88rpx;
  207. background: #06A971;
  208. border-radius: 12rpx;
  209. font-size: 32rpx;
  210. font-family: PingFangSC, PingFang SC;
  211. font-weight: 500;
  212. color: #FFFFFF;
  213. text-align: center;
  214. line-height: 88rpx;
  215. }
  216. .introduce {
  217. padding: 32rpx 28rpx;
  218. }
  219. .back {
  220. height: 20rpx;
  221. background: #F5F5F5;
  222. }
  223. .money {
  224. font-size: 28rpx;
  225. font-family: SFPro, SFPro;
  226. font-weight: 500;
  227. color: #CC3300;
  228. margin-top: 28rpx;
  229. margin-bottom: 40rpx;
  230. }
  231. .teacher {
  232. font-size: 24rpx;
  233. font-family: PingFangSC, PingFang SC;
  234. font-weight: 400;
  235. color: #777777;
  236. margin-top: 24rpx;
  237. }
  238. .titles {
  239. font-size: 32rpx;
  240. font-family: PingFangSC, PingFang SC;
  241. font-weight: 500;
  242. color: #222222;
  243. margin-top: 30rpx;
  244. }
  245. .tong {
  246. font-size: 26rpx;
  247. font-family: PingFangSC, PingFang SC;
  248. font-weight: 400;
  249. color: #333333;
  250. }
  251. .look {
  252. width: 64rpx;
  253. height: 36rpx;
  254. background: #06A971;
  255. border-radius: 6rpx;
  256. font-size: 20rpx;
  257. font-family: PingFangSC, PingFang SC;
  258. font-weight: 400;
  259. color: #FFFFFF;
  260. text-align: center;
  261. line-height: 36rpx;
  262. }
  263. .bottom {
  264. width: 750rpx;
  265. height: 166rpx;
  266. background: #FFFFFF;
  267. position: fixed;
  268. padding: 16rpx 28rpx 62rpx;
  269. bottom: 0;
  270. left: 0;
  271. }
  272. .catalogue {
  273. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  274. padding: 10rpx 28rpx;
  275. }
  276. .section {
  277. width: 702rpx;
  278. height: 84rpx;
  279. background: #F4F4F4;
  280. border-radius: 8rpx;
  281. padding: 24rpx 20rpx 24rpx 24rpx;
  282. margin-top: 20rpx;
  283. }
  284. .button {
  285. width: 694rpx;
  286. height: 88rpx;
  287. background: #06A971;
  288. border-radius: 12rpx;
  289. font-size: 32rpx;
  290. font-family: PingFangSC, PingFang SC;
  291. font-weight: 500;
  292. color: #FFFFFF;
  293. text-align: center;
  294. line-height: 88rpx;
  295. }
  296. .page {
  297. height: 100vh;
  298. }
  299. .video {
  300. width: 750rpx;
  301. height: 456rpx;
  302. position: relative;
  303. }
  304. .ding {
  305. position: absolute;
  306. left: 50%;
  307. top: 50%;
  308. width: 90rpx;
  309. height: 90rpx;
  310. margin-left: -45rpx;
  311. margin-top: -45rpx;
  312. }
  313. .free {
  314. position: absolute;
  315. left: 50%;
  316. top: 50%;
  317. width: 290rpx;
  318. height: 88rpx;
  319. margin-left: -145rpx;
  320. margin-top: -44rpx;
  321. }
  322. </style>