index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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">
  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.id)">我的评价</view>
  38. <view class="date">{{(item.createTime).substr(0,16)}}</view>
  39. </view>
  40. </view>
  41. </scroll>
  42. <!-- 底部按钮 -->
  43. <view class="btnBox" @tap="myRepairs">
  44. 我要报修
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. total:0,//总条数
  53. data: [],
  54. pageNum: 1, //页数
  55. pageSize: 3, //每页显示多少条数
  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/ownerreprair/list', 'post', {
  80. cardNo: uni.getStorageSync('idNumber'),
  81. pageNum: pullScroll.page,
  82. pageSize: 3,
  83. comtyId: uni.getStorageSync("comtyId")
  84. }).then((res) => {
  85. console.log(res)
  86. if(res.code==0){
  87. this.total=res.data.total
  88. // 判断当前数据是否加载完毕
  89. if(this.data.length==res.data.total){
  90. pullScroll.finish();
  91. }else{
  92. pullScroll.success();
  93. let data = res.data.rows
  94. this.data = this.data.concat(data);
  95. }
  96. }else{
  97. pullScroll.finish();
  98. uni.showToast({
  99. title:res.msg,
  100. "icon":'none'
  101. })
  102. }
  103. }).catch(()=>{
  104. pullScroll.finish();
  105. })
  106. // // 判断数据是否加载完毕
  107. // if (this.data.length >=this.total) {
  108. // pullScroll.finish();
  109. // } else {
  110. // pullScroll.success();
  111. // }
  112. }, 500);
  113. },
  114. // 我的评价
  115. myTalk(id) {
  116. uni.navigateTo({
  117. url: "./repairsEvaluate?id=" + id
  118. })
  119. },
  120. // 我要保修
  121. myRepairs() {
  122. uni.navigateTo({
  123. url: "./wantRepair"
  124. })
  125. }
  126. }
  127. }
  128. </script>
  129. <style scoped>
  130. .leftBtn {
  131. width: 340rpx;
  132. height: 90rpx;
  133. background: rgba(102, 193, 143, 1);
  134. opacity: 1;
  135. border-radius: 18rpx;
  136. font-size: 32rpx;
  137. font-family: PingFang SC;
  138. font-weight: bold;
  139. color: rgba(255, 255, 255, 1);
  140. text-align: center;
  141. line-height: 90rpx;
  142. }
  143. .rightBtn {
  144. width: 340rpx;
  145. height: 90rpx;
  146. background: rgba(41, 138, 253, 1);
  147. opacity: 1;
  148. border-radius: 18rpx;
  149. font-size: 32rpx;
  150. font-family: PingFang SC;
  151. font-weight: bold;
  152. color: rgba(255, 255, 255, 1);
  153. text-align: center;
  154. line-height: 90rpx;
  155. }
  156. .btnBox {
  157. width: 702rpx;
  158. height: 90rpx;
  159. position: fixed;
  160. bottom: 56rpx;
  161. left: 24rpx;
  162. background: rgba(41, 138, 253, 1);
  163. opacity: 1;
  164. border-radius: 18rpx;
  165. font-size: 32rpx;
  166. font-family: PingFang SC;
  167. font-weight: bold;
  168. color: rgba(255, 255, 255, 1);
  169. text-align: center;
  170. line-height: 90rpx;
  171. z-index: 999;
  172. }
  173. .date {
  174. width: 230rpx;
  175. height: 34rpx;
  176. font-size: 24rpx;
  177. font-family: PingFang SC;
  178. font-weight: 400;
  179. color: rgba(204, 204, 204, 1);
  180. margin-top: 10rpx;
  181. margin-left: 356rpx;
  182. text-align: right;
  183. margin-bottom: 30rpx;
  184. }
  185. .bottomBtn {
  186. width: 140rpx;
  187. height: 42rpx;
  188. background: rgba(255, 255, 255, 1);
  189. border: 2rpx solid rgba(41, 138, 253, 1);
  190. opacity: 1;
  191. border-radius: 22rpx;
  192. font-size: 20rpx;
  193. font-family: PingFang SC;
  194. font-weight: 400;
  195. line-height: 42rpx;
  196. color: rgba(41, 138, 253, 1);
  197. text-align: center;
  198. margin-top: 40rpx;
  199. margin-left: 446rpx;
  200. }
  201. .replayItem {
  202. margin-top: 10rpx;
  203. }
  204. .replayContent {
  205. font-size: 24rpx;
  206. font-family: PingFang SC;
  207. font-weight: 400;
  208. color: rgba(51, 51, 51, 1);
  209. margin-top: 4rpx;
  210. }
  211. .replay {
  212. width: 586rpx;
  213. margin-top: 20rpx;
  214. background: rgba(247, 247, 247, 1);
  215. opacity: 1;
  216. border-radius: 8rpx;
  217. overflow: hidden;
  218. }
  219. .text {
  220. width: 100%;
  221. font-size: 32rpx;
  222. font-family: PingFang SC;
  223. font-weight: 400;
  224. color: rgba(51, 51, 51, 1);
  225. margin-top: 30rpx;
  226. }
  227. .img {
  228. width: 100%;
  229. margin-top: 10rpx;
  230. display: flex;
  231. flex-wrap: wrap;
  232. }
  233. .name {
  234. font-size: 32rpx;
  235. font-family: PingFang SC;
  236. font-weight: bold;
  237. color: rgba(41, 138, 253, 1);
  238. }
  239. .topBtn {
  240. width: 120rpx;
  241. height: 42rpx;
  242. background: rgba(255, 255, 255, 1);
  243. border: 2rpx solid rgba(204, 204, 204, 1);
  244. opacity: 1;
  245. border-radius: 22rpx;
  246. font-size: 20rpx;
  247. font-family: PingFang SC;
  248. font-weight: 400;
  249. color: rgba(204, 204, 204, 1);
  250. text-align: center;
  251. line-height: 42rpx;
  252. }
  253. .item {
  254. width: 702rpx;
  255. margin: 0 auto;
  256. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  257. display: flex;
  258. margin-top: 35rpx;
  259. }
  260. .left {
  261. width: 86rpx;
  262. height: 86rpx;
  263. }
  264. .right {
  265. width: 586rpx;
  266. margin-left: 30rpx;
  267. }
  268. </style>