reportList.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <template>
  2. <view>
  3. <u-navbar
  4. :title="title"
  5. title-color="#fff"
  6. :is-back="true"
  7. :custom-back="customBack"
  8. :border-bottom="false"
  9. back-icon-color="#CCE8FF"
  10. :background="{background: 'linear-gradient(99deg, #7A4398 0%, #5A5DB9 100%)' }"></u-navbar>
  11. <u-tabs :list="tabList" :is-scroll="false" height="108" bar-width="100" :current="tabCurrent" @change="tabChange"></u-tabs>
  12. <!-- <u-gap height="20" bg-color="#F6F6F6"></u-gap> -->
  13. <mescroll-uni ref="mescrollRef01" @init="mescrollInit" :top="config.platform=='h5'?200:280" :down="downOption" @down="downCallback" :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  14. <view class="report-list">
  15. <view class="report-list-item u-m-b-24" :class="{'arrearage':item.vehicleNoStatus}" v-for="item in dataList" :key="item.id"
  16. @click="goDetails(item)">
  17. <view class="cell u-flex u-row-between">
  18. <text>路段:{{item.roadName}}</text>
  19. <text class="time">上报:{{$u.timeFormat(item.createTime, 'mm月dd日hh时MM分')}}</text>
  20. </view>
  21. <view class="cell u-flex u-row-between">
  22. <text class="u-line-1">泊位号:{{item.spaceNo}}</text>
  23. <text class="evaluate"
  24. :class="[{'evaluated0':item.isProcess==0,'evaluated1':item.isProcess==1,'evaluated2':item.isProcess==2}]">
  25. {{item.isProcess|filterIsProcess}}
  26. </text>
  27. </view>
  28. <view class="cell u-line-1">
  29. 异常详情:{{item.exceprionDes}}
  30. </view>
  31. </view>
  32. </view>
  33. </mescroll-uni>
  34. </view>
  35. </template>
  36. <script>
  37. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  38. export default{
  39. mixins: [MescrollMixin], // 使用mixin (在main.js注册全局组件)
  40. components:{
  41. },
  42. data(){
  43. return{
  44. roadName:'',
  45. roadNo:'',
  46. title:"异常记录",
  47. tabCurrent:0,
  48. breakStatus:'',
  49. tabList:[
  50. {name:'地磁',code:'1'},
  51. {name:'车位锁',code:'2'},
  52. {name:'停车场',code:'3'},
  53. ],
  54. downOption:{
  55. auto:false // 不自动加载 (mixin已处理第一个tab触发downCallback)
  56. },
  57. upOption:{
  58. page: {
  59. size: 10 // 每页数据的数量
  60. },
  61. auto:true,
  62. // use:false,
  63. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  64. empty:{
  65. tip: '~ 暂无数据 ~', // 提示
  66. // btnText: '去看看'
  67. }
  68. },
  69. dataList:[],
  70. deviceType:1,
  71. }
  72. },
  73. onLoad(page){
  74. console.log('page',page);
  75. },
  76. onShow(){
  77. },
  78. methods:{
  79. customBack(){
  80. uni.navigateBack()
  81. },
  82. openPage(path,id) {
  83. this.$u.route({
  84. url: path,
  85. params:{
  86. id:id
  87. }
  88. })
  89. },
  90. goDetails(item){
  91. this.$u.route({
  92. url: 'pages/center/reportList/reportDetails',
  93. params:{
  94. id:item.id,
  95. deviceId:item.deviceId,
  96. roadNo:this.roadNo,
  97. roadName:this.roadName,
  98. deviceType:this.deviceType,
  99. }
  100. })
  101. },
  102. // 切换菜单
  103. tabChange(index) {
  104. this.tabCurrent = index;
  105. this.deviceType = this.tabList[index].code;
  106. this.refresh()
  107. },
  108. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  109. upCallback(page) {
  110. // console.log('page',page);
  111. let params ={
  112. roadNo:this.roadNo,
  113. deviceType:this.deviceType,//设备类型: 1-地磁 2-车位锁
  114. pageNum:page.num,
  115. pageSize:page.size
  116. };
  117. this.$u.api.getReportList(params).then(curPageData=>{
  118. // console.log('word',word);
  119. console.log('curPageData',curPageData);
  120. //联网成功的回调,隐藏下拉刷新和上拉加载的状态;
  121. this.mescroll.endSuccess(curPageData.data.total);
  122. this.mescroll.endBySize(curPageData.data.rows.length, curPageData.data.total);
  123. //设置列表数据
  124. if(page.num == 1) this.dataList = []; //如果是第一页需手动制空列表
  125. this.dataList=this.dataList.concat(curPageData.data.rows); //追加新数据
  126. console.log('this.dataList',this.dataList);
  127. }).catch(()=>{
  128. console.log('catch');
  129. //联网失败, 结束加载
  130. this.mescroll.endErr();
  131. })
  132. },
  133. //点击空布局按钮的回调
  134. emptyClick(){
  135. uni.showToast({
  136. title:'点击了按钮,具体逻辑自行实现'
  137. })
  138. },
  139. refresh(){
  140. this.mescroll.resetUpScroll( );
  141. }
  142. }
  143. }
  144. </script>
  145. <style>
  146. page{background-color: #F3F3F3;}
  147. </style>
  148. <style lang="scss" scoped>
  149. .report-list{
  150. margin: 24rpx 0;
  151. .report-list-item{
  152. background-color: #fff;
  153. margin:24rpx;
  154. padding: 24rpx 30rpx;
  155. border-radius: 13rpx;
  156. font-size: 32rpx;
  157. line-height: 45rpx;
  158. color: #3A3A3A;
  159. .cell{
  160. & + .cell{
  161. margin-top: 10rpx;
  162. }
  163. }
  164. .time{
  165. font-size: 26rpx;
  166. color: #A7A7A7;
  167. }
  168. .evaluate{
  169. color: #f00;
  170. word-break: keep-all;
  171. &.evaluated1{
  172. color: #00AE44;
  173. }
  174. &.evaluated2{
  175. color: #FFA400;
  176. }
  177. }
  178. }
  179. }
  180. </style>