video.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="video-list">
  3. <u-navbar 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">{{defaultcity.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. <gf-tabbar></gf-tabbar>
  25. </view>
  26. </template>
  27. <script>
  28. import { mapState } from "vuex"
  29. export default {
  30. data() {
  31. return {
  32. page:1,
  33. list:[]
  34. }
  35. },
  36. onLoad() {
  37. },
  38. onShow() {
  39. uni.setNavigationBarTitle({
  40. title: this.config.store_title
  41. })
  42. this.page = 1
  43. this.list = []
  44. this.getlist()
  45. },
  46. onReachBottom() {
  47. if (this.list.length % 20 == 0) {
  48. this.page++
  49. this.getlist()
  50. }
  51. },
  52. computed: {
  53. ...mapState(['config', 'defaultcity'])
  54. },
  55. methods: {
  56. toinfo(item){
  57. uni.navigateTo({
  58. url:"./info?mp4=" + encodeURIComponent(item.video)
  59. })
  60. },
  61. getlist(){
  62. this.$u.post('/api/Index/video_list',{
  63. page:this.page,
  64. page_num:20,
  65. city_id:this.defaultcity.city_id
  66. }).then(res => {
  67. this.list = this.list.concat(res.data)
  68. })
  69. }
  70. }
  71. }
  72. </script>
  73. <style lang="scss">
  74. .video-list {
  75. .nav-left {
  76. padding: 0 20rpx;
  77. .text {
  78. font-size: 32rpx;
  79. font-family: PingFangSC-Medium, PingFang SC;
  80. font-weight: 500;
  81. color: #FFFFFF;
  82. margin-left: 5rpx;
  83. }
  84. }
  85. .video1 {
  86. padding: 24rpx;
  87. .video-item {
  88. width: 340rpx;
  89. margin-bottom: 18rpx;
  90. .video-name {
  91. font-size: 20rpx;
  92. font-family: PingFangSC-Regular, PingFang SC;
  93. font-weight: 400;
  94. color: #333333;
  95. margin: 14rpx 0;
  96. // height: 56rpx;
  97. }
  98. .time {
  99. font-size: 20rpx;
  100. font-family: PingFangSC-Regular, PingFang SC;
  101. font-weight: 400;
  102. color: #333333;
  103. }
  104. .image-box {
  105. width: 340rpx;
  106. height: 272rpx;
  107. position: relative;
  108. .play {
  109. width: 64rpx;
  110. height: 64rpx;
  111. position: absolute;
  112. top: 50%;
  113. left: 50%;
  114. transform: translate(-50%, -50%);
  115. }
  116. .image {
  117. width: 340rpx;
  118. height: 272rpx;
  119. background-color: rgba(0,0,0,0.1);
  120. border-radius: 10rpx;
  121. }
  122. .text {
  123. position: absolute;
  124. z-index: 10;
  125. right: 10rpx;
  126. bottom: 10rpx;
  127. font-size: 20rpx;
  128. font-family: PingFangSC-Regular, PingFang SC;
  129. font-weight: 400;
  130. color: #FFFFFF;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. </style>