shopAppraise.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view class="content">
  3. <!-- 列表 -->
  4. <view class="itemContent">
  5. <view v-for="(item,index) in itemData" :key="index">
  6. <view class="item">
  7. <view class="leftView">
  8. <image :src='item.HeadUrl' v-if="item.HeadUrl" class="storeImg"></image>
  9. <image src="../../static/img/pic_def_ava.png" mode="" class="storeImg" v-else></image>
  10. </view>
  11. <view class="rightView">
  12. <!-- 第一行 -->
  13. <view class="firstView">
  14. <view class="shopName">{{item.Evaluator}}</view>
  15. <!-- 时间截取 -->
  16. <!-- <view class="time">2021-9-05</view> -->
  17. <view class="time">{{item.CreateTime.slice(0,item.CreateTime.length-8)}}</view>
  18. </view>
  19. <!-- 第2行 -->
  20. <view class="secondView">
  21. <!-- 星星 -->
  22. <uni-rate :value="item.Overallevaluation" :max="5" color="#EEEEEE" active-color="#FF4F00"
  23. :size="16" :margin="4" :readonly="true" />
  24. </view>
  25. <view class="contentMes">{{item.EContent}}</view>
  26. <!-- 照片 -->
  27. <view class="imgBg">
  28. <view v-for="(itemImg,indexImg) in item.imgs" :key="indexImg">
  29. <image :src="itemImg.imageUrl" class="img"
  30. @click="previewImage(itemImg.imageUrl,item.imgs)"></image>
  31. </view>
  32. </view>
  33. <!-- 商家回复 -->
  34. <view class="writeBack" v-if="item.ReplyContent">商家回复:{{item.ReplyContent}}</view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- 上拉 加载更多 -->
  40. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  41. <!-- 无数据空白页 -->
  42. <nodata v-if="itemData.length==0"></nodata>
  43. </view>
  44. </template>
  45. <script>
  46. import nodata from '../../components/nodata/nodata.vue'
  47. export default {
  48. components: {
  49. nodata,
  50. },
  51. data() {
  52. return {
  53. itemData: [],
  54. page: 1,
  55. noMoreShow: false,
  56. imgArr: [],
  57. shopId:'',
  58. }
  59. },
  60. onLoad(opt) {
  61. this.page = 1
  62. this.shopId = opt.shopId
  63. this.getItemData()
  64. },
  65. methods: {
  66. previewImage(img, arrDic) {
  67. var arr = [];
  68. arrDic.forEach(item => {
  69. arr.push(item.imageUrl)
  70. })
  71. // 预览图片
  72. uni.previewImage({
  73. urls: arr,
  74. current: img,
  75. longPressActions: {
  76. itemList: ['发送给朋友', '保存图片', '收藏'],
  77. success: function(data) {
  78. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  79. },
  80. fail: function(err) {
  81. console.log(err.errMsg);
  82. }
  83. }
  84. });
  85. },
  86. getItemData() {
  87. uni.showLoading({
  88. title: '加载中'
  89. })
  90. let url = 'miniAppShopInfoController/listShopBMEvaluatePage',
  91. params = {
  92. page: this.page,
  93. limit: 20,
  94. shopId:this.shopId,
  95. }
  96. this.$http(url, params, 'GET').then(res => {
  97. uni.hideLoading();
  98. var list = res.data.Items
  99. // 处理 undefined和null转为空白字符串
  100. list.forEach((item, index) => {
  101. for (const key in item) {
  102. item[key] = this.$praseStrEmpty(item[key])
  103. }
  104. })
  105. if (this.page == 1) {
  106. this.itemData = list
  107. } else {
  108. this.itemData = this.itemData.concat(list)
  109. }
  110. if (list.length < 10) {
  111. this.noMoreShow = false
  112. } else {
  113. this.noMoreShow = true
  114. }
  115. })
  116. },
  117. },
  118. // 下拉刷新 上拉加载更多
  119. onPullDownRefresh() {
  120. this.page = 1
  121. this.getItemData()
  122. setTimeout(function() {
  123. uni.stopPullDownRefresh();
  124. }, 1000);
  125. },
  126. onReachBottom() {
  127. this.page++;
  128. this.getItemData()
  129. },
  130. }
  131. </script>
  132. <style scoped>
  133. .content {
  134. background: #FFFFFF;
  135. min-height: 100vh;
  136. }
  137. .item {
  138. display: flex;
  139. justify-content: flex-start;
  140. padding: 0 24rpx;
  141. background-color: #FFFFFF;
  142. }
  143. .leftView {
  144. width: 117rpx;
  145. padding-right: 20rpx;
  146. }
  147. .storeImg {
  148. width: 72rpx;
  149. height: 72rpx;
  150. border-radius: 8rpx;
  151. margin-top: 30rpx;
  152. }
  153. .rightView {
  154. border-bottom: 1rpx #EEEEEE solid;
  155. width: 100vw;
  156. }
  157. .firstView,
  158. .secondView {
  159. display: flex;
  160. justify-content: space-between;
  161. align-items: center;
  162. }
  163. .firstView {
  164. padding-top: 30rpx;
  165. }
  166. .secondView {
  167. padding-top: 12rpx;
  168. padding-bottom: 20rpx;
  169. }
  170. .shopName {
  171. /* padding-top: 30rpx;
  172. padding-bottom: 10rpx; */
  173. font-size: 26rpx;
  174. font-weight: bold;
  175. color: #333333;
  176. }
  177. .time {
  178. font-size: 26rpx;
  179. color: #999999;
  180. }
  181. .deleteBtn {
  182. width: 36rpx;
  183. height: 36rpx;
  184. }
  185. .contentMes {
  186. font-size: 26rpx;
  187. color: #666666;
  188. line-height: 37rpx;
  189. /* padding-top: 20rpx; */
  190. }
  191. .imgBg {
  192. display: flex;
  193. justify-content: flex-start;
  194. padding: 30rpx 0rpx;
  195. flex-wrap: wrap;
  196. }
  197. .img {
  198. width: 140rpx;
  199. height: 140rpx;
  200. margin-right: 5rpx;
  201. border-radius: 8rpx;
  202. }
  203. .writeBack {
  204. font-size: 26rpx;
  205. color: #666666;
  206. line-height: 37rpx;
  207. padding: 20rpx;
  208. background-color: #F4F5F7;
  209. padding-bottom: 20rpx;
  210. }
  211. .noMore {
  212. text-align: center;
  213. line-height: 50rpx;
  214. color: #999999;
  215. font-size: 28rpx;
  216. }
  217. </style>