comment.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <!-- 评论 -->
  3. <view class="back">
  4. <view class="" v-if="commentlist.length >0">
  5. <view class="box" v-for="(item,idx) in commentlist" :key="idx">
  6. <!-- 顶部 -->
  7. <view class="" style="display: flex;justify-content: space-between;">
  8. <view class="u-flex">
  9. <image style="width: 68rpx;height: 68rpx;border-radius:50%;" :src="item.member.avatar" mode="">
  10. </image>
  11. <view class="u-flex-column u-row-between" style="margin-left: 20rpx;height: 68rpx;">
  12. <text
  13. class="name">{{item.member.nickname.slice(0,1)+'***'+item.member.nickname.slice(-1)}}</text>
  14. <!-- <uni-rate allow-half :readonly="true" color="rgba(247, 181, 0, 1)" :size='8'
  15. :value="item.score" :max="5" /> -->
  16. <uni-rate :max="5" :value="item.score" :readonly="true" :size='8' />
  17. </view>
  18. </view>
  19. <text class="day">{{timeSince(item.created_at)}}</text>
  20. </view>
  21. <view v-if="item.sku_item" class="day" style="margin-top: 24rpx;">{{item.sku_item.item}}</view>
  22. <view class="content" style="margin-top: 20rpx;">{{item.content}}</view>
  23. <!-- <view class="" v-for="(child,index) in item.image.split(',')" :key="index" style="margin-top: 22rpx;"> -->
  24. <view class="u-flex u-row-between" style="margin-top: 22rpx;flex-wrap: wrap;">
  25. <view class="" v-if=" item.video">
  26. <video v-for="(child,inde) in item.video.split(',')" :src="child" :key="inde"
  27. style="margin-bottom: 20rpx; width: 326rpx;height: 326rpx;border-radius: 12rpx;"></video>
  28. </view>
  29. <view class="" v-if="item.image ">
  30. <image v-for="(child,index) in item.image.split(',')" :key="index" :src="child"
  31. style="margin-bottom: 20rpx; width: 326rpx;height: 326rpx;border-radius: 12rpx;background: #D8D8D8;"
  32. mode=""></image>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view v-else class="" style="height: 400rpx;text-align: center;line-height: 400rpx;">
  38. {{i18n.nodata}}
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. merchant_goods_id: '',
  47. commentlist: [],
  48. rate: '3'
  49. };
  50. },
  51. onLoad(options) {
  52. this.merchant_goods_id = options.id
  53. this.comment()
  54. },
  55. onshow() {
  56. },
  57. computed: {
  58. i18n() {
  59. return this.$t('index')
  60. }
  61. },
  62. methods: {
  63. //评论接口
  64. comment() {
  65. uni.$u.http.post('/api/goods/goods_comment', {
  66. merchant_goods_id: this.merchant_goods_id,
  67. page: 1,
  68. limit: 10
  69. }).then((res) => {
  70. console.log(res);
  71. this.commentlist = res.data
  72. }).catch(() => {
  73. })
  74. },
  75. timeSince(dateString) {
  76. // 为兼容iOS,转换日期格式
  77. // var dateArr = dateString.split("T")[0].split("-");
  78. // var timeArr = dateString.split("T")[1].split(":");
  79. // var date = new Date(dateArr[0], dateArr[1] - 1, dateArr[2], timeArr[0], timeArr[1], timeArr[2]);
  80. var date = dateString;
  81. const second = 1000;
  82. const minute = 60 * second;
  83. const hour = 60 * minute;
  84. const day = 24 * hour;
  85. const month = 30 * day;
  86. const year = 12 * month;
  87. const now = new Date().getTime();
  88. const inputDate = new Date(date).getTime();
  89. const diffValue = now - inputDate;
  90. if (diffValue < 0) {
  91. console.error('输入的时间不能在当前时间之后!');
  92. return dateString;
  93. }
  94. if (diffValue < minute) {
  95. return Math.round(diffValue / second) + '秒前';
  96. } else if (diffValue < hour) {
  97. return Math.round(diffValue / minute) + '分钟前';
  98. } else if (diffValue < day) {
  99. return Math.round(diffValue / hour) + '小时前';
  100. } else if (diffValue < month) {
  101. return Math.round(diffValue / day) + '天前';
  102. } else if (diffValue < year) {
  103. return Math.round(diffValue / month) + '个月前';
  104. } else {
  105. // 时间间隔超过一年,直接显示具体时间
  106. return dateArr.join('-');
  107. }
  108. },
  109. }
  110. }
  111. </script>
  112. <style lang="scss" scoped>
  113. .back {
  114. // background-color:rgba(216, 216, 216, 1) ;
  115. padding: 20rpx;
  116. box-sizing: border-box;
  117. .box {
  118. background: #FFFFFF;
  119. border-radius: 16rpx;
  120. padding: 24rpx 20rpx;
  121. box-sizing: border-box;
  122. margin-bottom: 20rpx;
  123. }
  124. .day {
  125. font-family: SFPro, SFPro;
  126. font-weight: 400;
  127. font-size: 20rpx;
  128. color: #9E9E9E;
  129. line-height: 24rpx;
  130. text-align: justify;
  131. font-style: normal;
  132. }
  133. .content {
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 400;
  136. font-size: 26rpx;
  137. color: #444444;
  138. line-height: 36rpx;
  139. text-align: justify;
  140. font-style: normal;
  141. }
  142. .name {
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 500;
  145. font-size: 22rpx;
  146. color: #444444;
  147. line-height: 32rpx;
  148. text-align: left;
  149. font-style: normal;
  150. margin-bottom: 34rpx;
  151. }
  152. }
  153. </style>