video.vue 7.0 KB

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