index.vue 7.2 KB

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