comment.vue 4.0 KB

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