video.vue 7.3 KB

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