index.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <template>
  2. <view style="margin-top: 40rpx;">
  3. <scroll ref="pullScroll" :pullDown="pullDown" :pullUp="loadData">
  4. <view class="item" v-for="(item,index) in data" :key="index">
  5. <view class="left">
  6. <image :src="item.headImg" style="width: 100%;height: 100%;"></image>
  7. </view>
  8. <view class="right">
  9. <view style="width:100%;height:44rpx;display: flex;justify-content: space-between;">
  10. <view class="name">{{item.createBy}}</view>
  11. <view class="topBtn" v-if="item.state==2">已处理</view>
  12. <view v-else class="topBtn" style="border:2rpx solid rgba(41,138,253,1);color:#298AFD;">未处理</view>
  13. </view>
  14. <view class="text">
  15. {{item.content}}
  16. </view>
  17. <view class="img" v-show="item.photosUrlList">
  18. <image :src="img" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index) in item.photosUrlList"
  19. :key="index"></image>
  20. </view>
  21. <!-- 回复信息 -->
  22. <!-- <view class="replay">
  23. <view style="width: 100%;margin: 20rpx 0rpx 20rpx 20rpx;">
  24. <view class="replayItem">
  25. <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">物业
  26. </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
  27. <view class="replayContent">换了一个新的,已经修好啦~</view>
  28. </view>
  29. <view class="replayItem">
  30. <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">小赞
  31. </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
  32. <view class="replayContent">换了一个新的,已经修好啦~</view>
  33. </view>
  34. </view>
  35. </view> -->
  36. <!-- 我要评论 -->
  37. <view class="bottomBtn" @tap="myTalk(item.adviceId)">我的评价</view>
  38. <view class="date">{{(item.createTime).substr(0,16)}}</view>
  39. </view>
  40. </view>
  41. </scroll>
  42. <!-- 底部按钮 -->
  43. <button class="btnBox" @tap="myRepairs">
  44. 我要投诉
  45. </button>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. data: [],
  53. total: 0, //总条数
  54. pageNum: 1, //页数
  55. pageSize: 10, //每页显示多少条数
  56. }
  57. },
  58. onLoad() {
  59. this.refresh();
  60. },
  61. methods: {
  62. // 刷新页面
  63. refresh() {
  64. this.$nextTick(() => {
  65. this.$refs.pullScroll.refresh();
  66. });
  67. },
  68. // 向下拉刷新
  69. pullDown(pullScroll) {
  70. setTimeout(() => {
  71. this.loadData(pullScroll);
  72. }, 200);
  73. },
  74. //获取加载数据
  75. loadData(pullScroll) {
  76. console.log(pullScroll)
  77. this.pageNum = pullScroll.page
  78. setTimeout(() => {
  79. this.http.httpRequest('/wxapplet/owneradvice/list', 'get', {
  80. // cardNo: uni.getStorageSync('idNumber'),
  81. pageNum: pullScroll.page,
  82. pageSize: this.pageSize,
  83. userId: uni.getStorageSync("userId")
  84. }).then((res) => {
  85. if (res.code == 0) {
  86. //判断数据是否加载完
  87. if (this.data.length == res.data.total) {
  88. pullScroll.finish();
  89. } else {
  90. pullScroll.success();
  91. let data = res.data.rows
  92. this.data = this.data.concat(data);
  93. }
  94. } else {
  95. pullScroll.finish();
  96. uni.showToast({
  97. title: res.msg,
  98. "icon": 'none'
  99. })
  100. }
  101. }).catch(()=>{
  102. pullScroll.finish();
  103. })
  104. }, 500);
  105. },
  106. // 我的评价
  107. myTalk(item) {
  108. uni.navigateTo({
  109. url: "./evaluateCompalin?id=" + item
  110. })
  111. },
  112. // 我要投诉
  113. myRepairs() {
  114. uni.navigateTo({
  115. url: "./wantCompalin"
  116. })
  117. }
  118. }
  119. }
  120. </script>
  121. <style scoped>
  122. .leftBtn {
  123. width: 340rpx;
  124. height: 90rpx;
  125. background: rgba(102, 193, 143, 1);
  126. opacity: 1;
  127. border-radius: 18rpx;
  128. font-size: 32rpx;
  129. font-family: PingFang SC;
  130. font-weight: bold;
  131. color: rgba(255, 255, 255, 1);
  132. text-align: center;
  133. line-height: 90rpx;
  134. }
  135. .rightBtn {
  136. width: 340rpx;
  137. height: 90rpx;
  138. background: rgba(41, 138, 253, 1);
  139. opacity: 1;
  140. border-radius: 18rpx;
  141. font-size: 32rpx;
  142. font-family: PingFang SC;
  143. font-weight: bold;
  144. color: rgba(255, 255, 255, 1);
  145. text-align: center;
  146. line-height: 90rpx;
  147. }
  148. .btnBox {
  149. width: 702rpx;
  150. height: 90rpx;
  151. position: fixed;
  152. bottom: 56rpx;
  153. left: 24rpx;
  154. background: rgba(41, 138, 253, 1);
  155. opacity: 1;
  156. border-radius: 18rpx;
  157. font-size: 32rpx;
  158. font-family: PingFang SC;
  159. font-weight: bold;
  160. color: rgba(255, 255, 255, 1);
  161. text-align: center;
  162. line-height: 90rpx;
  163. z-index: 999;
  164. }
  165. .date {
  166. width: 230rpx;
  167. height: 34rpx;
  168. font-size: 24rpx;
  169. font-family: PingFang SC;
  170. font-weight: 400;
  171. color: rgba(204, 204, 204, 1);
  172. margin-top: 10rpx;
  173. margin-left: 356rpx;
  174. text-align: right;
  175. margin-bottom: 30rpx;
  176. }
  177. .bottomBtn {
  178. width: 140rpx;
  179. height: 42rpx;
  180. background: rgba(255, 255, 255, 1);
  181. border: 2rpx solid rgba(41, 138, 253, 1);
  182. opacity: 1;
  183. border-radius: 22rpx;
  184. font-size: 20rpx;
  185. font-family: PingFang SC;
  186. font-weight: 400;
  187. line-height: 42rpx;
  188. color: rgba(41, 138, 253, 1);
  189. text-align: center;
  190. margin-top: 40rpx;
  191. margin-left: 446rpx;
  192. }
  193. .replayItem {
  194. margin-top: 10rpx;
  195. }
  196. .replayContent {
  197. font-size: 24rpx;
  198. font-family: PingFang SC;
  199. font-weight: 400;
  200. color: rgba(51, 51, 51, 1);
  201. margin-top: 4rpx;
  202. }
  203. .replay {
  204. width: 586rpx;
  205. margin-top: 20rpx;
  206. background: rgba(247, 247, 247, 1);
  207. opacity: 1;
  208. border-radius: 8rpx;
  209. overflow: hidden;
  210. }
  211. .text {
  212. width: 100%;
  213. font-size: 32rpx;
  214. font-family: PingFang SC;
  215. font-weight: 400;
  216. color: rgba(51, 51, 51, 1);
  217. margin-top: 30rpx;
  218. }
  219. .img {
  220. width: 100%;
  221. margin-top: 10rpx;
  222. display: flex;
  223. flex-wrap: wrap;
  224. }
  225. .img image :nth-child(3n) {
  226. margin-right: none;
  227. }
  228. .name {
  229. font-size: 32rpx;
  230. font-family: PingFang SC;
  231. font-weight: bold;
  232. color: rgba(41, 138, 253, 1);
  233. }
  234. .topBtn {
  235. width: 120rpx;
  236. height: 42rpx;
  237. background: rgba(255, 255, 255, 1);
  238. border: 2rpx solid rgba(204, 204, 204, 1);
  239. opacity: 1;
  240. border-radius: 22rpx;
  241. font-size: 20rpx;
  242. font-family: PingFang SC;
  243. font-weight: 400;
  244. color: rgba(204, 204, 204, 1);
  245. text-align: center;
  246. line-height: 42rpx;
  247. }
  248. .item {
  249. width: 702rpx;
  250. margin: 0 auto;
  251. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  252. display: flex;
  253. margin-top: 35rpx;
  254. }
  255. .left {
  256. width: 86rpx;
  257. height: 86rpx;
  258. }
  259. .right {
  260. width: 586rpx;
  261. margin-left: 30rpx;
  262. }
  263. </style>