video.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <template>
  2. <view class="page">
  3. <view class="video">
  4. <image src="../../static/logo.png" 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">25考研数学定制VIP领学3班·S班</view>
  14. <view class="teacher">
  15. <text>课程讲师:</text>
  16. <text>武忠祥 刘金峰 姜晓千</text>
  17. </view>
  18. <view class="money">
  19. <text>¥</text>
  20. <text>48.5</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>
  29. </view>
  30. </view>
  31. <view class="catalogue" v-if="current==1">
  32. <view class="section u-flex u-row-between">
  33. <view class="">
  34. <text class="tong">章节1</text>
  35. <text class="tong" style="margin-left: 20rpx;">高等数学通用</text>
  36. </view>
  37. <view class="look">
  38. 观看
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="bottom" style="display: flex;justify-content: space-between;">
  44. <view class="button1 u-flex u-row-center" v-if="current==0">
  45. <view class="">免费试看</view>
  46. <image src="/static/images/slice.png" style="width: 32rpx; height: 32rpx;margin-left: 12rpx;" mode=""></image>
  47. </view>
  48. <view class="button2" v-if="current==0">
  49. 立即订阅
  50. </view>
  51. <view class="button" v-if="current==1">
  52. 立即学习
  53. </view>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {
  61. list: [{
  62. name: '课程介绍',
  63. }, {
  64. name: '目录',
  65. }],
  66. current: 0,
  67. show: false
  68. };
  69. },
  70. methods: {
  71. change(index) {
  72. this.current = index;
  73. },
  74. toupdown() {
  75. uni.navigateTo({
  76. url: '/pages/index/updown'
  77. })
  78. }
  79. }
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. .button1 {
  84. width: 336rpx;
  85. height: 88rpx;
  86. background: #EEEEEE;
  87. border-radius: 12rpx;
  88. font-size: 32rpx;
  89. font-family: PingFangSC, PingFang SC;
  90. font-weight: 500;
  91. color: #444444;
  92. text-align: center;
  93. line-height: 88rpx;
  94. }
  95. .button2 {
  96. width: 336rpx;
  97. height: 88rpx;
  98. background: #06A971;
  99. border-radius: 12rpx;
  100. font-size: 32rpx;
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 500;
  103. color: #FFFFFF;
  104. text-align: center;
  105. line-height: 88rpx;
  106. }
  107. .introduce {
  108. padding: 32rpx 28rpx;
  109. }
  110. .back {
  111. height: 20rpx;
  112. background: #F5F5F5;
  113. }
  114. .money {
  115. font-size: 28rpx;
  116. font-family: SFPro, SFPro;
  117. font-weight: 500;
  118. color: #CC3300;
  119. margin-top: 28rpx;
  120. margin-bottom: 40rpx;
  121. }
  122. .teacher {
  123. font-size: 24rpx;
  124. font-family: PingFangSC, PingFang SC;
  125. font-weight: 400;
  126. color: #777777;
  127. margin-top: 24rpx;
  128. }
  129. .titles {
  130. font-size: 32rpx;
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 500;
  133. color: #222222;
  134. margin-top: 30rpx;
  135. }
  136. .tong {
  137. font-size: 26rpx;
  138. font-family: PingFangSC, PingFang SC;
  139. font-weight: 400;
  140. color: #333333;
  141. }
  142. .look {
  143. width: 64rpx;
  144. height: 36rpx;
  145. background: #06A971;
  146. border-radius: 6rpx;
  147. font-size: 20rpx;
  148. font-family: PingFangSC, PingFang SC;
  149. font-weight: 400;
  150. color: #FFFFFF;
  151. text-align: center;
  152. line-height: 36rpx;
  153. }
  154. .bottom {
  155. width: 750rpx;
  156. height: 166rpx;
  157. background: #FFFFFF;
  158. position: fixed;
  159. padding: 16rpx 28rpx 62rpx;
  160. bottom: 0;
  161. left: 0;
  162. }
  163. .catalogue {
  164. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  165. padding: 10rpx 28rpx;
  166. }
  167. .section {
  168. width: 702rpx;
  169. height: 84rpx;
  170. background: #F4F4F4;
  171. border-radius: 8rpx;
  172. padding: 24rpx 20rpx 24rpx 24rpx;
  173. margin-top: 20rpx;
  174. }
  175. .button {
  176. width: 694rpx;
  177. height: 88rpx;
  178. background: #06A971;
  179. border-radius: 12rpx;
  180. font-size: 32rpx;
  181. font-family: PingFangSC, PingFang SC;
  182. font-weight: 500;
  183. color: #FFFFFF;
  184. text-align: center;
  185. line-height: 88rpx;
  186. }
  187. .page {
  188. height: 100vh;
  189. }
  190. .video {
  191. width: 750rpx;
  192. height: 456rpx;
  193. position: relative;
  194. }
  195. .ding {
  196. position: absolute;
  197. left: 50%;
  198. top: 50%;
  199. width: 90rpx;
  200. height: 90rpx;
  201. margin-left: -45rpx;
  202. margin-top: -45rpx;
  203. }
  204. .free {
  205. position: absolute;
  206. left: 50%;
  207. top: 50%;
  208. width: 290rpx;
  209. height: 88rpx;
  210. margin-left: -145rpx;
  211. margin-top: -44rpx;
  212. }
  213. </style>