index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="list-info" @click="toinfo">
  3. <view class="info-header hflex acenter jbetween">
  4. <view class="hflex acenter">
  5. <image :src="data.user.avatar" mode="aspectFill" class="headera-avatar"></image>
  6. <view class="avatar-right">
  7. <view class="name hflex acenter">
  8. <text>{{data.user.username}}</text>
  9. <image src="@/static/images/zuozhe1.png" v-if="data.type == 1" mode="aspectFill" class="type-icon"></image>
  10. <image src="@/static/images/zuozhe2.png" v-if="data.type == 2" mode="aspectFill" class="type-icon"></image>
  11. <image src="@/static/images/zuozhe3.png" v-if="data.type == 3" mode="aspectFill" class="type-icon"></image>
  12. </view>
  13. <view class="time">{{data.published_at}}</view>
  14. </view>
  15. </view>
  16. <view class="" style="padding: 20rpx 20rpx;" @click.stop="show_more = true">
  17. <u-icon name="more-dot-fill" color="#777777" size="20"></u-icon>
  18. </view>
  19. </view>
  20. <view class="info-content" v-if="type == 'post'">
  21. <u-swiper :indicator="true" indicatorMode="dot" :list="data.images" height="452rpx" radius="12rpx" v-if="data.images.length > 0">
  22. </u-swiper>
  23. <text v-if="data.content">{{data.content}}</text>
  24. </view>
  25. <view class="info-content" v-if="type != 'post'">
  26. <image :src="data.image" mode="aspectFill" class="content-img" v-if="data.image"></image>
  27. <!-- <video :src="data.image" controls enable-danmu danmu-btn class="content-img" v-if="data.video"></video> -->
  28. <view class="content-title" v-if="data.title">{{data.title}}</view>
  29. <u-parse :content="data.content" class="text_hide3"></u-parse>
  30. </view>
  31. <view class="info-circle hflex acenter" v-if="data.topic_id != 0 && data.topic">
  32. <!-- <image :src="data.circle.img" mode="aspectFill"></image> -->
  33. <text>{{data.topic.title}}</text>
  34. </view>
  35. <view class="info-bottom hflex acenter jbetween" v-if="type != 'post'">
  36. <view class="hflex acenter">
  37. <text>{{data.collect_count || 0}}喜欢 · </text>
  38. <text>{{data.comment_count || 0}}评论</text>
  39. </view>
  40. </view>
  41. <view class="info-bottom hflex acenter jbetween" v-if="type =='post'">
  42. <view class="hflex acenter">
  43. <image src="@/static/images/dianzan.png" mode="aspectFill" v-if="!data.is_like" @click.stop="tolike(data)"></image>
  44. <image src="@/static/images/dianzan2.png" mode="aspectFill" v-else @click.stop="tolike(data)"></image>
  45. <text class="num" @click.stop="tolike(data)">{{data.like_count}}</text>
  46. <image src="@/static/images/pinglun.png" mode="aspectFill"></image>
  47. <text class="num">{{data.comment_count}}</text>
  48. <image src="@/static/images/shoucang.png" mode="aspectFill" v-if="!data.is_collect" @click.stop="tocollect(data)"></image>
  49. <image src="@/static/images/shoucang2.png" mode="aspectFill" v-else @click.stop="tocollect(data)"></image>
  50. <text class="num" @click.stop="tocollect(data)">{{data.collect_count}}</text>
  51. </view>
  52. <image src="@/static/images/fenxiang.png" mode="aspectFill"></image>
  53. </view>
  54. <u-popup :show="show_more" @close="toclose">
  55. <view class="popu">
  56. </view>
  57. </u-popup>
  58. </view>
  59. </template>
  60. <script>
  61. import $api from '@/static/js/api.js'
  62. export default {
  63. props: {
  64. data: {
  65. typeof: Object,
  66. default: {}
  67. },
  68. type: {
  69. typeof: String,
  70. default: ''
  71. }
  72. },
  73. data() {
  74. return {
  75. show_more: false,
  76. }
  77. },
  78. methods: {
  79. tocollect(item) {
  80. var _this = this
  81. $api.req({
  82. url: 'collect',
  83. method: 'POST',
  84. data: {
  85. source_type: _this.type,
  86. source_id: item.id
  87. }
  88. }, function(res) {
  89. if(res.code == 10000) {
  90. uni.$u.toast(res.msg)
  91. if(_this.data.is_collect == 0) {
  92. _this.data.is_collect = item.id
  93. _this.data.collect_count += 1
  94. } else {
  95. _this.data.is_collect = 0
  96. _this.data.collect_count -= 1
  97. }
  98. }
  99. })
  100. },
  101. tolike(item) {
  102. var _this = this
  103. $api.req({
  104. url: 'like',
  105. method: 'POST',
  106. data: {
  107. source_type: _this.type,
  108. source_id: item.id
  109. }
  110. }, function(res) {
  111. if(res.code == 10000) {
  112. uni.$u.toast(res.msg)
  113. if(_this.data.is_like == 0) {
  114. _this.data.is_like = item.id
  115. _this.data.like_count += 1
  116. } else {
  117. _this.data.is_like = 0
  118. _this.data.like_count -= 1
  119. }
  120. }
  121. })
  122. },
  123. toclose() {
  124. show_more = false
  125. },
  126. toinfo() {
  127. uni.navigateTo({
  128. url: '/pageA/info-detail?id=' + this.data.id + '&type=' + this.type
  129. })
  130. // this.$emit('toinfo',this.data)
  131. }
  132. },
  133. }
  134. </script>
  135. <style lang="scss">
  136. .list-info {
  137. padding: 28rpx;
  138. background: #FFFFFF;
  139. margin: 0 0 20rpx;
  140. .info-header {
  141. .headera-avatar {
  142. width: 72rpx;
  143. height: 72rpx;
  144. border-radius: 50%;
  145. }
  146. .avatar-right {
  147. margin: 0 0 0 16rpx;
  148. .name {
  149. font-size: 28rpx;
  150. font-family: PingFangSC, PingFang SC;
  151. font-weight: 500;
  152. color: #333333;
  153. }
  154. .type-icon {
  155. width: 124rpx;
  156. height: 32rpx;
  157. margin: 0 0 0 12rpx;
  158. }
  159. .time {
  160. font-size: 20rpx;
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 400;
  163. color: #999999;
  164. padding: 4rpx 0 0;
  165. }
  166. }
  167. }
  168. .info-content {
  169. box-sizing: border-box;
  170. padding: 20rpx 0;
  171. .content-img {
  172. width: 100%;
  173. margin: 0 0 16rpx;
  174. }
  175. .content-title {
  176. font-size: 32rpx;
  177. font-family: PingFangSC, PingFang SC;
  178. font-weight: 600;
  179. color: #222222;
  180. padding: 0 0 8rpx;
  181. }
  182. text {
  183. font-size: 30rpx;
  184. font-family: PingFangSC, PingFang SC;
  185. font-weight: 400;
  186. color: #333333;
  187. padding: 12rpx 0;
  188. box-sizing: border-box;
  189. }
  190. }
  191. .info-circle {
  192. padding: 24rpx 0 0;
  193. background: rgba(0, 176, 176, .1);
  194. border-radius: 26rpx;
  195. padding: 8rpx 20rpx;
  196. max-width: max-content;
  197. image {
  198. width: 34rpx;
  199. height: 34rpx;
  200. }
  201. text {
  202. padding: 0 0 0 5rpx;
  203. font-size: 24rpx;
  204. font-family: AppleColorEmoji;
  205. color: #00B0B0;
  206. }
  207. }
  208. .info-bottom {
  209. padding: 40rpx 0 0;
  210. image {
  211. width: 36rpx;
  212. height: 36rpx;
  213. }
  214. text {
  215. font-size: 20rpx;
  216. font-family: SFPro, SFPro;
  217. font-weight: 400;
  218. color: #555555;
  219. }
  220. .num {
  221. padding: 0 50rpx 0 12rpx;
  222. }
  223. }
  224. }
  225. </style>