index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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.length>0">
  18. <image :src="img" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;" @tap="prew(item.photosUrlList,index1)"
  19. v-for="(img,index1) in item.photosUrlList" :key="index1"></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)" v-show="item.userId==userId &&item.state==2">我的评价</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. userId: uni.getStorageSync('userId'),
  53. total: 0, //总条数
  54. data: [],
  55. pageNum: 1, //页数
  56. pageSize: 3, //每页显示多少条数
  57. }
  58. },
  59. onLoad() {
  60. this.refresh();
  61. },
  62. onUnload() {
  63. uni.switchTab({
  64. url:'../index/index'
  65. })
  66. },
  67. methods: {
  68. // 预览图片
  69. prew(item, index) {
  70. uni.previewImage({
  71. current: item[index],
  72. urls: item,
  73. success: (res) => {
  74. },
  75. })
  76. },
  77. // 刷新页面
  78. refresh() {
  79. this.$nextTick(() => {
  80. this.$refs.pullScroll.refresh();
  81. });
  82. },
  83. // 向下拉刷新
  84. pullDown(pullScroll) {
  85. setTimeout(() => {
  86. this.loadData(pullScroll);
  87. }, 200);
  88. },
  89. //获取加载数据
  90. loadData(pullScroll) {
  91. console.log(pullScroll)
  92. this.pageNum = pullScroll.page
  93. setTimeout(() => {
  94. this.http.httpRequest('/wxapplet/ownerreprair/list', 'post', {
  95. cardNo: uni.getStorageSync('idNumber'),
  96. pageNum: pullScroll.page,
  97. pageSize: 10,
  98. comtyId: uni.getStorageSync("comtyId")
  99. }).then((res) => {
  100. console.log(res)
  101. if (res.code == 0) {
  102. this.total = res.data.total
  103. // 判断当前数据是否加载完毕
  104. if (this.data.length == res.data.total) {
  105. pullScroll.finish();
  106. } else {
  107. pullScroll.success();
  108. let data = res.data.rows
  109. this.data = this.data.concat(data);
  110. }
  111. } else {
  112. pullScroll.finish();
  113. uni.showToast({
  114. title: res.msg,
  115. "icon": 'none'
  116. })
  117. }
  118. }).catch(() => {
  119. pullScroll.finish();
  120. })
  121. // // 判断数据是否加载完毕
  122. // if (this.data.length >=this.total) {
  123. // pullScroll.finish();
  124. // } else {
  125. // pullScroll.success();
  126. // }
  127. }, 500);
  128. },
  129. // 我的评价
  130. myTalk(id) {
  131. uni.navigateTo({
  132. url: "./repairsEvaluate?id=" + id
  133. })
  134. },
  135. // 我要保修
  136. myRepairs() {
  137. uni.navigateTo({
  138. url: "./wantRepair"
  139. })
  140. }
  141. }
  142. }
  143. </script>
  144. <style scoped>
  145. .leftBtn {
  146. width: 340rpx;
  147. height: 90rpx;
  148. background: rgba(102, 193, 143, 1);
  149. opacity: 1;
  150. border-radius: 18rpx;
  151. font-size: 32rpx;
  152. font-family: PingFang SC;
  153. font-weight: bold;
  154. color: rgba(255, 255, 255, 1);
  155. text-align: center;
  156. line-height: 90rpx;
  157. }
  158. .rightBtn {
  159. width: 340rpx;
  160. height: 90rpx;
  161. background: rgba(41, 138, 253, 1);
  162. opacity: 1;
  163. border-radius: 18rpx;
  164. font-size: 32rpx;
  165. font-family: PingFang SC;
  166. font-weight: bold;
  167. color: rgba(255, 255, 255, 1);
  168. text-align: center;
  169. line-height: 90rpx;
  170. }
  171. .btnBox {
  172. width: 702rpx;
  173. height: 90rpx;
  174. position: fixed;
  175. bottom: 56rpx;
  176. left: 24rpx;
  177. background: rgba(41, 138, 253, 1);
  178. opacity: 1;
  179. border-radius: 18rpx;
  180. font-size: 32rpx;
  181. font-family: PingFang SC;
  182. font-weight: bold;
  183. color: rgba(255, 255, 255, 1);
  184. text-align: center;
  185. line-height: 90rpx;
  186. z-index: 999;
  187. }
  188. .date {
  189. width: 230rpx;
  190. height: 34rpx;
  191. font-size: 24rpx;
  192. font-family: PingFang SC;
  193. font-weight: 400;
  194. color: rgba(204, 204, 204, 1);
  195. margin-top: 10rpx;
  196. margin-left: 356rpx;
  197. text-align: right;
  198. margin-bottom: 30rpx;
  199. }
  200. .bottomBtn {
  201. width: 140rpx;
  202. height: 42rpx;
  203. background: rgba(255, 255, 255, 1);
  204. border: 2rpx solid rgba(41, 138, 253, 1);
  205. opacity: 1;
  206. border-radius: 22rpx;
  207. font-size: 20rpx;
  208. font-family: PingFang SC;
  209. font-weight: 400;
  210. line-height: 42rpx;
  211. color: rgba(41, 138, 253, 1);
  212. text-align: center;
  213. margin-top: 40rpx;
  214. margin-left: 446rpx;
  215. }
  216. .replayItem {
  217. margin-top: 10rpx;
  218. }
  219. .replayContent {
  220. font-size: 24rpx;
  221. font-family: PingFang SC;
  222. font-weight: 400;
  223. color: rgba(51, 51, 51, 1);
  224. margin-top: 4rpx;
  225. }
  226. .replay {
  227. width: 586rpx;
  228. margin-top: 20rpx;
  229. background: rgba(247, 247, 247, 1);
  230. opacity: 1;
  231. border-radius: 8rpx;
  232. overflow: hidden;
  233. }
  234. .text {
  235. width: 100%;
  236. font-size: 32rpx;
  237. font-family: PingFang SC;
  238. font-weight: 400;
  239. color: rgba(51, 51, 51, 1);
  240. margin-top: 30rpx;
  241. }
  242. .img {
  243. width: 100%;
  244. margin-top: 10rpx;
  245. display: flex;
  246. flex-wrap: wrap;
  247. }
  248. .name {
  249. font-size: 32rpx;
  250. font-family: PingFang SC;
  251. font-weight: bold;
  252. color: rgba(41, 138, 253, 1);
  253. }
  254. .topBtn {
  255. width: 120rpx;
  256. height: 42rpx;
  257. background: rgba(255, 255, 255, 1);
  258. border: 2rpx solid rgba(204, 204, 204, 1);
  259. opacity: 1;
  260. border-radius: 22rpx;
  261. font-size: 20rpx;
  262. font-family: PingFang SC;
  263. font-weight: 400;
  264. color: rgba(204, 204, 204, 1);
  265. text-align: center;
  266. line-height: 42rpx;
  267. }
  268. .item {
  269. width: 702rpx;
  270. margin: 0 auto;
  271. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  272. display: flex;
  273. margin-top: 35rpx;
  274. }
  275. .left {
  276. width: 86rpx;
  277. height: 86rpx;
  278. }
  279. .right {
  280. width: 586rpx;
  281. margin-left: 30rpx;
  282. }
  283. </style>