news-module.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view class="news_module vflex">
  3. <block v-for="(item,index) in pageList" :key="index">
  4. <view class="news_box">
  5. <view class="news_title">
  6. {{item.ad.title}}
  7. </view>
  8. <view v-if="item.ad.images !== ''" class="imgList hflex acenter jbetween">
  9. <image :src="item.ad.images" mode="aspectFill" class="img2"></image>
  10. </view>
  11. <view class="hflex acenter bottom">
  12. <view class="bottom_text3">广告</view>
  13. <view class="bottom_text2" v-if="item.ad.source">{{item.ad.source}}</view>
  14. </view>
  15. </view>
  16. <view class="" >
  17. <block v-for="(item1,index1) in item.xw" :key="index1">
  18. <view class="news_box" @click="toDetail(item1.id)">
  19. <view class="news_title">
  20. {{item1.title}}
  21. </view>
  22. <!-- <view class="hflex acenter user" v-if="item2.user">
  23. <view class="avatar_box">
  24. <image :src="item.user.avatar" mode="aspectFill" class="avatar"></image>
  25. </view>
  26. <view class="user_text">{{item.user.name}}</view>
  27. <view v-if="item.user.is_blueV" class="blue_v">
  28. V
  29. </view>
  30. </view> -->
  31. <view v-if="item1.images.length > 2" class="imgList hflex acenter jbetween">
  32. <block v-for="(item2,index2) in item1.images" :key="index2">
  33. <image :src="item2" mode="aspectFill" class="img" @tap.stop="priveImg(index,index1,index2)"></image>
  34. </block>
  35. </view>
  36. <view v-if="item1.images.length == 1 && !item1.has_img" class="imgList hflex acenter jcenter">
  37. <image :src="item1.images" mode="aspectFill" class="img2"></image>
  38. </view>
  39. <!-- <view v-if="item.video" class="imgList">
  40. <video :src="item.video" controls></video>
  41. </view> -->
  42. <view class="hflex acenter bottom">
  43. <view class="bottom_text">{{item1.category.name}}</view>
  44. <view class="bottom_text2">{{item1.source}}</view>
  45. <view class="bottom_text2" v-if="item1.comments_count > 0">{{item1.comments_count}}评论</view>
  46. </view>
  47. </view>
  48. </block>
  49. </view>
  50. </block>
  51. </view>
  52. </template>
  53. <script>
  54. import $api from '@/static/js/api.js'
  55. export default {
  56. name:"news-module",
  57. props: {
  58. pageList: {
  59. type: Array,
  60. value: []
  61. }
  62. },
  63. data() {
  64. return {
  65. }
  66. },
  67. methods: {
  68. // 打开详情
  69. toDetail(id) {
  70. $api.jump('/page_index/pages/index/newDetail?id=' + id)
  71. },
  72. // 查看图片
  73. priveImg(index,index1,index2) {
  74. var that = this
  75. console.log(index,index2);
  76. uni.previewImage({
  77. urls: that.pageList[index].xw[index1].images,
  78. current: that.pageList[index].xw[index1].images[index2]
  79. });
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss">
  85. .news_module {
  86. width: 100%;
  87. .news_box {
  88. margin-top: 20rpx;
  89. padding-bottom: 20rpx;
  90. border-bottom: 1rpx solid #f3f3f3;
  91. .news_title {
  92. font-size: 36rpx;
  93. color: #333;
  94. line-height: 50rpx;
  95. padding: 20rpx 0;
  96. }
  97. .user {
  98. padding: 14rpx 0 0;
  99. .avatar_box {
  100. margin-right: 8rpx;
  101. .avatar {
  102. width: 32rpx;
  103. height: 32rpx;
  104. border-radius: 50%;
  105. }
  106. }
  107. .user_text {
  108. font-size: 24rpx;
  109. font-weight: 400;
  110. color: #666666;
  111. line-height: 34rpx;
  112. }
  113. .blue_v {
  114. background: #506DFF;
  115. border-radius: 12rpx 4rpx 12rpx 4rpx;
  116. margin-left: 8rpx;
  117. text-align: center;
  118. line-height: 28rpx;
  119. // padding: 6rpx;
  120. width: 28rpx;
  121. height: 28rpx;
  122. color: #fff;
  123. font-size: 14rpx;
  124. }
  125. }
  126. .imgList {
  127. margin: 16rpx 0;
  128. .img {
  129. width: 224rpx;
  130. height: 148rpx;
  131. border-radius: 8rpx 0px 0px 8rpx;
  132. margin: 0 12rpx 20rpx 0;
  133. }
  134. .img2 {
  135. width: 100%;
  136. height: 360rpx;
  137. border-radius: 16px;
  138. }
  139. }
  140. .bottom {
  141. .bottom_text {
  142. font-size: 24rpx;
  143. color: #3261FF;
  144. }
  145. .bottom_text2 {
  146. color: #999999;
  147. font-size: 24rpx;
  148. margin-left: 20rpx;
  149. }
  150. .bottom_text3 {
  151. font-size: 24rpx;
  152. font-weight: 400;
  153. color: #EB0000;
  154. line-height: 34rpx;
  155. }
  156. }
  157. }
  158. }
  159. </style>