sh-comment.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="comment-box">
  3. <view class="head u-flex u-row-between">
  4. <view class="u-flex">
  5. <image class="avatar" :src="comment.user ? comment.user.avatar : $IMG_URL + '/imgs/base_avatar.png'" mode="aspectFill"></image>
  6. <view class="user-name u-ellipsis-1">{{ comment.user ? comment.user.nickname : '***' }}</view>
  7. <u-rate :value="comment.level" disabled></u-rate>
  8. </view>
  9. <text class="time">{{ $u.timeFormat(comment.createtime, 'yyyy-mm-dd hh:MM') }}</text>
  10. </view>
  11. <view class="detail">{{ comment.content }}</view>
  12. <view class="img-box u-flex u-row-center u-col-center">
  13. <view class="nav u-flex u-flex-wrap">
  14. <image
  15. v-for="(img, index) in comment.images"
  16. :key="index"
  17. @tap.stop="tools.previewImage(comment.images, index)"
  18. class="comment-img"
  19. :src="img"
  20. mode="aspectFill"
  21. ></image>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. /**
  28. * 评论信息卡片
  29. * @property {Object} comment - 评论信息
  30. */
  31. export default {
  32. components: {},
  33. data() {
  34. return {};
  35. },
  36. props: {
  37. comment: {}
  38. },
  39. computed: {},
  40. methods: {}
  41. };
  42. </script>
  43. <style lang="scss">
  44. .comment-box {
  45. padding: 30rpx 20rpx;
  46. border-bottom: 1rpx solid #eee;
  47. background: #fff;
  48. .head {
  49. margin-bottom: 20rpx;
  50. .avatar {
  51. width: 52rpx;
  52. height: 52rpx;
  53. border-radius: 50%;
  54. background: #ccc;
  55. }
  56. .user-name {
  57. font-size: 26rpx;
  58. color: #999;
  59. width: 140rpx;
  60. margin: 0 20rpx;
  61. }
  62. .time {
  63. font-size: 24rpx;
  64. color: #c4c4c4;
  65. }
  66. }
  67. .detail {
  68. font-size: 26rpx;
  69. font-weight: 500;
  70. color: rgba(102, 102, 102, 1);
  71. line-height: 42rpx;
  72. }
  73. .img-box {
  74. margin-top: 30rpx;
  75. position: relative;
  76. .nav {
  77. width: 670rpx;
  78. }
  79. .comment-img {
  80. width: 160rpx;
  81. height: 160rpx;
  82. background: #ccc;
  83. margin-right: 10rpx;
  84. margin-bottom: 10rpx;
  85. border-radius: 6rpx;
  86. &:nth-child(4n) {
  87. margin-right: 0;
  88. }
  89. }
  90. }
  91. }
  92. </style>