index.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="wenzhang-info hflex acenter" @click="toinfo">
  3. <image :src="data.image" mode="aspectFill"></image>
  4. <view class="vflex jbetween img-right">
  5. <text class="text_hide2">{{data.title}}</text>
  6. <view class="hflex acenter bottom">
  7. <text>{{data.published_at}}</text>
  8. <text>{{data.collect_count || 0}}喜欢</text>
  9. <text style="padding: 0 8rpx 0 0;">·</text>
  10. <text>{{data.comment_count || 0}}评论</text>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. data: {
  19. typeof: Object,
  20. default: {}
  21. },
  22. type: {
  23. typeof: String,
  24. default: ''
  25. }
  26. },
  27. data() {
  28. return {}
  29. },
  30. methods: {
  31. toinfo() {
  32. uni.navigateTo({
  33. url: '/pageA/info-detail?id=' + this.data.id + '&type=' + this.type
  34. })
  35. }
  36. },
  37. }
  38. </script>
  39. <style lang="scss">
  40. .wenzhang-info {
  41. margin-bottom: 20rpx;
  42. image {
  43. width: 192rpx;
  44. height: 108rpx;
  45. border-radius: 8rpx;
  46. margin-right: 20rpx;
  47. }
  48. .img-right {
  49. width: calc(100% - 212rpx);
  50. height: 108rpx;
  51. text {
  52. font-size: 26rpx;
  53. font-family: PingFangSC, PingFang SC;
  54. font-weight: 500;
  55. color: #333333;
  56. line-height: 36rpx;
  57. }
  58. .bottom {
  59. text {
  60. font-size: 22rpx;
  61. font-family: SFPro, SFPro;
  62. font-weight: 400;
  63. color: #666666;
  64. padding-right: 16rpx;
  65. }
  66. }
  67. }
  68. }
  69. .wenzhang-info::last-child {
  70. margin: 0;
  71. }
  72. </style>