evaluate.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <template>
  2. <view class="app-container">
  3. <view class="top-container" v-if="dataList.length">
  4. <view class="top">
  5. <view class="left">
  6. <text>综合评分</text><uni-rate :size="18" :margin="4" :value="5" color="#fff" active-color="#FE781F" :readonly="true" />
  7. </view>
  8. <view class="right">{{countDetail.goodRate}}%好评</view>
  9. </view>
  10. <view class="tabs">
  11. <view class="item" :class="currentTab === '' ? 'current':''" @tap="changeTabs('')">全部</view>
  12. <block v-for="(item, index) in countDetail.tagCountList" :key="index">
  13. <view class="item" :class="currentTab === item.tag ? 'current':''" @tap="changeTabs(item.tag)">{{item.tag}}({{item.total}})</view>
  14. </block>
  15. </view>
  16. </view>
  17. <view class="list-container">
  18. <view class="item" v-for="(item, index) in dataList">
  19. <view class="top">
  20. <view class="user">
  21. <image :src="item.avatar" mode="aspectFill" v-if="item.avatar.indexOf('http') >= 0"></image>
  22. <image :src="imageUrl + item.avatar" mode="aspectFill" v-else></image>
  23. <view class="name ellipsis">{{item.userName}}</view>
  24. </view>
  25. <view class="date">{{item.createTime}}</view>
  26. </view>
  27. <view class="rate">
  28. <view class="it"><text>商品质量</text><uni-rate :size="14" :margin="4" :value="item.commentGoods" color="#fff" active-color="#FE781F" :readonly="true" /></view>
  29. <view class="it"><text>服务质量</text><uni-rate :size="14" :margin="4" :value="item.commentService" color="#fff" active-color="#FE781F" :readonly="true" /></view>
  30. <view class="it"><text>配送质量</text><uni-rate :size="14" :margin="4" :value="item.commentExpress" color="#fff" active-color="#FE781F" :readonly="true" /></view>
  31. </view>
  32. <view class="tags">
  33. <view class="it" v-for="(it, idx) in item.tags">{{it}}</view>
  34. </view>
  35. <!-- <view class="tagss">
  36. <view class="it" v-for="(it, idx) in item.tags">#{{it}}#</view>
  37. </view> -->
  38. <view class="content">{{item.content}}</view>
  39. <view class="images" v-if="item.imgs && item.imgs.length > 0">
  40. <image v-for="(it, idx) in item.imgs" :src="it" @tap="previewEvaluateImage(it, item.imgs)"></image>
  41. </view>
  42. </view>
  43. </view>
  44. <no-data v-if="!dataList.length" :showText="'暂无记录'"></no-data>
  45. <loading-text v-if="dataList.length" :loading="loading" :noMore="noMore" ></loading-text>
  46. </view>
  47. </template>
  48. <script>
  49. import {mapState} from 'vuex';
  50. export default {
  51. data() {
  52. return {
  53. imageUrl: this.$imageUrl,
  54. configInfo: uni.getStorageSync('configInfo'),
  55. goodsId: null,
  56. countDetail: {},
  57. dataList: [],
  58. total: 0,
  59. pageNum: 1,
  60. pageSize: 10,
  61. noMore: false,
  62. loading: false,
  63. currentTab: '',
  64. }
  65. },
  66. computed:{
  67. ...mapState(['userInfo', 'isLogin', 'userId']),
  68. },
  69. onLoad({goodsId}) {
  70. this.goodsId = goodsId;
  71. this.getList();
  72. this.getCount();
  73. },
  74. // 下拉刷新
  75. onPullDownRefresh() {
  76. this.pageNum = 1;
  77. this.getList();
  78. this.getCount();
  79. },
  80. // 上拉加载
  81. onReachBottom() {
  82. this.getList(1);
  83. },
  84. methods: {
  85. // 获取统计
  86. getCount() {
  87. this.$axios({
  88. url: '/order/comment/goods/count',
  89. method: 'get',
  90. params: {
  91. goodsId: this.goodsId,
  92. },
  93. }).then(res => {
  94. this.countDetail = res.data;
  95. })
  96. },
  97. // 获取列表
  98. getList(loadMore) {
  99. if(this.noMore && loadMore)return;
  100. this.noMore = false
  101. if(!loadMore){
  102. this.pageNum = 1;
  103. }else{
  104. this.loading = true;
  105. }
  106. this.$axios({
  107. url: '/order/comment/goods',
  108. method: 'get',
  109. params: {
  110. pageNo: this.pageNum,
  111. pageSize: this.pageSize,
  112. goodsId: this.goodsId,
  113. tag: this.currentTab,
  114. },
  115. isLoading: !loadMore
  116. }).then(res => {
  117. let _list = res.data.records;
  118. let pageTotal = res.data.pages;
  119. if(this.pageNum >= pageTotal){
  120. this.noMore = true;
  121. }
  122. if (_list.length) {
  123. this.pageNum += 1
  124. }
  125. if (loadMore) {
  126. this.dataList = this.dataList.concat(_list);
  127. this.loading = false;
  128. } else {
  129. this.dataList = _list;
  130. }
  131. this.total = res.data.total || 0;
  132. uni.stopPullDownRefresh();
  133. })
  134. },
  135. changeTabs(tag) {
  136. this.currentTab = tag;
  137. this.pageNum = 1;
  138. this.getList();
  139. },
  140. // 预览评价图片
  141. previewEvaluateImage(url, imgs) {
  142. uni.previewImage({
  143. urls: imgs,
  144. current: url
  145. });
  146. },
  147. }
  148. }
  149. </script>
  150. <style lang="scss">
  151. .app-container {
  152. background: #F4F2F2;
  153. box-sizing: border-box;
  154. }
  155. .top-container {
  156. background: #FFFFFF;
  157. padding: 20rpx;
  158. margin-bottom: 20rpx;
  159. .top {
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: center;
  163. .left {
  164. display: flex;
  165. align-items: center;
  166. font-size: 28rpx;
  167. color: #333333;
  168. margin-top: 5rpx;
  169. &>text {
  170. margin-right: 14rpx;
  171. }
  172. }
  173. .right {
  174. font-size: 24rpx;
  175. color: #666666;
  176. }
  177. }
  178. .tabs {
  179. display: flex;
  180. overflow-x: scroll;
  181. .item {
  182. flex-shrink: 0;
  183. height: 52rpx;
  184. line-height: 52rpx;
  185. border-radius: 52rpx;
  186. padding: 0 25rpx;
  187. border: 1px solid #eaeaea;
  188. color: #333333;
  189. font-size: 24rpx;
  190. margin-right: 16rpx;
  191. margin-top: 16rpx;
  192. &.current {
  193. border: 1px solid #FE781F;
  194. background: #FE781F;
  195. color: #FFFFFF;
  196. }
  197. }
  198. }
  199. }
  200. .list-container {
  201. padding: 0 20rpx;
  202. background: #FFFFFF;
  203. .item {
  204. padding: 20rpx 0;
  205. border-bottom: 1px solid #eaeaea;
  206. &:last-child {
  207. border-bottom: none;
  208. }
  209. .top {
  210. display: flex;
  211. justify-content: space-between;
  212. align-items: center;
  213. .user {
  214. display: flex;
  215. align-items: center;
  216. image {
  217. width: 80rpx;
  218. height: 80rpx;
  219. display: block;
  220. border-radius: 50%;
  221. margin-right: 20rpx;
  222. }
  223. .name {
  224. font-size: 28rpx;
  225. color: #333333;
  226. width: 300rpx;
  227. }
  228. }
  229. .date {
  230. font-size: 28rpx;
  231. color: #999999;
  232. }
  233. }
  234. .rate {
  235. margin-top: 14rpx;
  236. .it {
  237. display: flex;
  238. align-items: center;
  239. font-size: 24rpx;
  240. color: #666666;
  241. margin-top: 5rpx;
  242. &>text {
  243. margin-right: 10rpx;
  244. }
  245. }
  246. }
  247. .tags {
  248. display: flex;
  249. flex-wrap: wrap;
  250. .it {
  251. line-height: 44rpx;
  252. padding: 0 15rpx;
  253. border: 1px solid #eaeaea;
  254. border-radius: 44rpx;
  255. font-size: 24rpx;
  256. margin-right: 14rpx;
  257. margin-top: 14rpx;
  258. color: #666666;
  259. }
  260. }
  261. .tagss {
  262. display: flex;
  263. flex-wrap: wrap;
  264. margin-top: 14rpx;
  265. .it {
  266. font-size: 24rpx;
  267. color: #FE781F;
  268. margin-right: 6rpx;
  269. }
  270. }
  271. .content {
  272. font-size: 28rpx;
  273. color: #333333;
  274. margin-top: 14rpx;
  275. }
  276. .images {
  277. display: flex;
  278. flex-wrap: wrap;
  279. image {
  280. width: 140rpx;
  281. height: 140rpx;
  282. margin-right: 20rpx;
  283. margin-top: 20rpx;
  284. }
  285. }
  286. }
  287. }
  288. </style>