video.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="video-list">
  3. <u-navbar :title="config.store_title" title-color="#fff" :background="{background:'#1F7EFF'}" :border-bottom="false" :isBack="false">
  4. <view class="u-flex nav-left" slot="left">
  5. <u-icon name="map-fill" size="34" color="#fff"></u-icon>
  6. <text class="text">{{city || '定位中'}}</text>
  7. </view>
  8. </u-navbar>
  9. <view class="video1 u-flex u-row-between u-flex-wrap">
  10. <view class="video-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  11. <view class="image-box">
  12. <image :src="item.logo" class="image" mode="aspectFill"></image>
  13. <image src="../../static/images/video.png" class="play" mode=""></image>
  14. <!-- <text class="text">03.25</text> -->
  15. </view>
  16. <view class="video-name u-line-1">
  17. {{item.title}}
  18. </view>
  19. <view class="time">
  20. {{item.create_at}}
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import { mapState } from "vuex"
  28. export default {
  29. data() {
  30. return {
  31. page:1,
  32. list:[]
  33. }
  34. },
  35. onLoad() {
  36. this.getlist()
  37. },
  38. onShow() {
  39. uni.setNavigationBarTitle({
  40. title: this.config.store_title
  41. })
  42. },
  43. computed: {
  44. ...mapState(['config', 'city'])
  45. },
  46. methods: {
  47. toinfo(item){
  48. uni.navigateTo({
  49. url:"./info?mp4=" + encodeURIComponent(item.video)
  50. })
  51. },
  52. getlist(){
  53. this.$u.post('/api/Index/video_list',{
  54. page:this.page,
  55. page_num:20
  56. }).then(res => {
  57. this.list = this.list.concat(res.data)
  58. })
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. .video-list {
  65. .nav-left {
  66. padding: 0 20rpx;
  67. .text {
  68. font-size: 32rpx;
  69. font-family: PingFangSC-Medium, PingFang SC;
  70. font-weight: 500;
  71. color: #FFFFFF;
  72. margin-left: 5rpx;
  73. }
  74. }
  75. .video1 {
  76. padding: 24rpx;
  77. .video-item {
  78. width: 340rpx;
  79. margin-bottom: 18rpx;
  80. .video-name {
  81. font-size: 20rpx;
  82. font-family: PingFangSC-Regular, PingFang SC;
  83. font-weight: 400;
  84. color: #333333;
  85. margin: 14rpx 0;
  86. // height: 56rpx;
  87. }
  88. .time {
  89. font-size: 20rpx;
  90. font-family: PingFangSC-Regular, PingFang SC;
  91. font-weight: 400;
  92. color: #333333;
  93. }
  94. .image-box {
  95. width: 340rpx;
  96. height: 272rpx;
  97. position: relative;
  98. .play {
  99. width: 64rpx;
  100. height: 64rpx;
  101. position: absolute;
  102. top: 50%;
  103. left: 50%;
  104. transform: translate(-50%, -50%);
  105. }
  106. .image {
  107. width: 340rpx;
  108. height: 272rpx;
  109. background-color: rgba(0,0,0,0.1);
  110. border-radius: 10rpx;
  111. }
  112. .text {
  113. position: absolute;
  114. z-index: 10;
  115. right: 10rpx;
  116. bottom: 10rpx;
  117. font-size: 20rpx;
  118. font-family: PingFangSC-Regular, PingFang SC;
  119. font-weight: 400;
  120. color: #FFFFFF;
  121. }
  122. }
  123. }
  124. }
  125. }
  126. </style>