playback.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view>
  3. <view class="video_box">
  4. </view>
  5. <view class="calendar-filled">
  6. <view class="icon">
  7. <uni-icons type="calendar-filled" color="#00A0E8" size="26"></uni-icons>
  8. </view>
  9. <view class="time">
  10. 2022-07-16
  11. </view>
  12. <view class="icon">
  13. <uni-icons type="bottom"></uni-icons>
  14. </view>
  15. </view>
  16. <view class="btn_list">
  17. <view class="btn" v-for="(item,index) in 17" :key="index">00:00-00:30</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. };
  26. }
  27. }
  28. </script>
  29. <style lang="scss">
  30. .video_box{
  31. height: 600rpx;
  32. }
  33. .calendar-filled{
  34. margin: 0 auto;
  35. width: 360rpx;
  36. height: 70rpx;
  37. border-radius: 50rpx;
  38. border: 2rpx solid #00A0E8;
  39. box-sizing: border-box;
  40. padding: 0 40rpx;
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. .time{
  45. font-size: 28rpx;
  46. color: #00A0E8;
  47. }
  48. }
  49. .btn_list{
  50. box-sizing: border-box;
  51. padding: 25rpx;
  52. overflow: hidden;
  53. .btn{
  54. margin-right: 50rpx;
  55. width: 200rpx;
  56. height: 65rpx;
  57. font-size: 24rpx;
  58. color: #464646;
  59. }
  60. .btn:nth-child(3n){
  61. margin-right: 0;
  62. }
  63. }
  64. </style>