payeeReportList.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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%)' }">
  11. <view class="navbar-right" slot="right" @click="handleReport">
  12. <text>登记</text>
  13. </view>
  14. </u-navbar>
  15. <mescroll-uni ref="mescrollRef01" @init="mescrollInit" :top="config.platform=='h5'?100:180" :down="downOption" @down="downCallback" :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  16. <view class="report-list">
  17. <view class="report-list-item" :class="{'arrearage':item.vehicleNoStatus}" v-for="item in dataList" :key="item.id"
  18. @click="goDetails(item.id)">
  19. <view class="u-flex u-row-between u-m-b-20">
  20. <text>路段/停车场{{item.roadName}}</text>
  21. <text class="u-tips-color">{{$u.timeFormat(item.createTime, 'mm月dd日hh:MM')}}</text>
  22. </view>
  23. <view class="u-flex u-row-between u-m-b-20">
  24. <text class="u-line-1">收费员:{{item.payeeName}}</text>
  25. <u-icon name="arrow-right" color="#ddd" size="28"></u-icon>
  26. </view>
  27. <view class="u-flex u-row-between">
  28. <text class="u-line-1">问题类型:{{item.payeeExceptionTypeName}}</text>
  29. </view>
  30. </view>
  31. </view>
  32. </mescroll-uni>
  33. </view>
  34. </template>
  35. <script>
  36. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  37. export default{
  38. mixins: [MescrollMixin], // 使用mixin (在main.js注册全局组件)
  39. components:{
  40. },
  41. data(){
  42. return{
  43. title:"收费员问题",
  44. downOption:{
  45. auto:false // 不自动加载 (mixin已处理第一个tab触发downCallback)
  46. },
  47. upOption:{
  48. page: {
  49. size: 10 // 每页数据的数量
  50. },
  51. auto:true,
  52. // use:false,
  53. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  54. empty:{
  55. tip: '~ 暂无数据 ~', // 提示
  56. // btnText: '去看看'
  57. }
  58. },
  59. dataList:[],
  60. }
  61. },
  62. onLoad(page){
  63. console.log('page',page);
  64. },
  65. onShow(){
  66. },
  67. methods:{
  68. customBack(){
  69. this.$u.route({
  70. url: 'pages/index/index',
  71. type:'switchTab'
  72. })
  73. },
  74. openPage(path,id) {
  75. this.$u.route({
  76. url: path,
  77. params:{
  78. id:id
  79. }
  80. })
  81. },
  82. goDetails(id){
  83. this.$u.route({
  84. url: 'pages/report/payeeReport/details',
  85. params:{
  86. id:id
  87. }
  88. })
  89. },
  90. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  91. upCallback(page) {
  92. // console.log('page',page);
  93. let params ={
  94. pageNum:page.num,
  95. pageSize:page.size
  96. };
  97. this.$u.api.payeeReportList(params).then(curPageData=>{
  98. // console.log('word',word);
  99. console.log('curPageData',curPageData);
  100. //联网成功的回调,隐藏下拉刷新和上拉加载的状态;
  101. this.mescroll.endSuccess(curPageData.data.total);
  102. this.mescroll.endBySize(curPageData.data.rows.length, curPageData.data.total);
  103. //设置列表数据
  104. if(page.num == 1) this.dataList = []; //如果是第一页需手动制空列表
  105. this.dataList=this.dataList.concat(curPageData.data.rows); //追加新数据
  106. console.log('this.dataList',this.dataList);
  107. }).catch(()=>{
  108. console.log('catch');
  109. //联网失败, 结束加载
  110. this.mescroll.endErr();
  111. })
  112. },
  113. //点击空布局按钮的回调
  114. emptyClick(){
  115. uni.showToast({
  116. title:'点击了按钮,具体逻辑自行实现'
  117. })
  118. },
  119. refresh(){
  120. this.mescroll.resetUpScroll( );
  121. },
  122. handleReport(){
  123. console.log('handleReport');
  124. this.$u.route({
  125. url: 'pages/report/payeeReport/report',
  126. // type:'redirect',
  127. })
  128. }
  129. }
  130. }
  131. </script>
  132. <style>
  133. page{background-color: #F3F3F3;}
  134. </style>
  135. <style lang="scss" scoped>
  136. @import '../report.scss'
  137. </style>