invoice.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view>
  3. <view class="swiper-wrap">
  4. <view class="u-tabs-box">
  5. <u-tabs-swiper activeColor="#008CFF" ref="tabs" :list="list" :current="current" @change="change" :is-scroll="false" swiperWidth="100%"></u-tabs-swiper>
  6. </view>
  7. <swiper class="swiper-box" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish">
  8. <swiper-item class="swiper-item" v-for="(item, index) in list" :key="index">
  9. <scroll-view scroll-y style="height: 100%;width: 100%;" @scrolltolower="reachBottom">
  10. <view class="page-box">
  11. <view class="order" @click="goDetails(orderItem.id)" v-for="(orderItem, index) in orderList[index]" :key="orderItem.id">
  12. <view class="order-top u-flex">
  13. <view class="order-top-left u-flex-1">
  14. <view class="car">{{orderItem.vehicleNo}}<span class="invoice-type">电子发票</span></view>
  15. <view class="addr">{{orderItem.roadName}}</view>
  16. </view>
  17. <view class="order-top-right">{{orderItem.orderStatus | verifyStatusFilter}}</view>
  18. </view>
  19. <view class="order-center">
  20. <view class="order-center-item">订单编号:{{orderItem.orderId}}</view>
  21. <view class="order-center-item">入场时间:{{orderItem.inTime}}</view>
  22. <view class="order-center-item">出场时间:{{orderItem.outTime}}</view>
  23. <view class="order-center-item">停留时间:{{orderItem.duration}}</view>
  24. <view class="order-center-item">应付金额:<span class="pay-amount">{{orderItem.payAmount}}</span></view>
  25. </view>
  26. <view class="order-bottom">
  27. <u-cell-item v-if="orderItem.payStatus==1" value="我要开票" :value-style="{textAlign: 'center',fontSize: '30rpx',color: '#008CFF'}" :arrow="false"></u-cell-item>
  28. <u-cell-item v-if="orderItem.payStatus==3" value="重发发票" :value-style="{textAlign: 'center',fontSize: '30rpx',color: '#949494'}" :arrow="false"></u-cell-item>
  29. </view>
  30. </view>
  31. <u-loadmore :status="loadStatus[index]" bgColor="#F6F6FF"></u-loadmore>
  32. </view>
  33. </scroll-view>
  34. </swiper-item>
  35. </swiper>
  36. </view>
  37. <u-toast ref="uToast" />
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. orderList: [[], [], [], []],
  45. list: [
  46. {index:0,name: '全部',orderStatu:null,pageNum:1,total:null},
  47. {index:1,name: '已开票',orderStatu:1,pageNum:1,total:null},
  48. {index:2,name: '未开票',orderStatu:2,pageNum:1,total:null},
  49. ],
  50. current: 0,
  51. swiperCurrent: 0,
  52. tabsHeight: 0,
  53. dx: 0,
  54. loadStatus: ['loadmore','loadmore','loadmore','loadmore'],
  55. };
  56. },
  57. onLoad() {
  58. this.getOrderList(this.list[0]);
  59. // this.getOrderList(this.list[1]);
  60. // this.getOrderList(this.list[2]);
  61. // this.getOrderList(this.list[3]);
  62. },
  63. computed: {
  64. // 价格小数
  65. priceDecimal() {
  66. return val => {
  67. if (val !== parseInt(val)) return val.slice(-2);
  68. else return '00';
  69. };
  70. },
  71. // 价格整数
  72. priceInt() {
  73. return val => {
  74. if (val !== parseInt(val)) return val.split('.')[0];
  75. else return val;
  76. };
  77. }
  78. },
  79. methods: {
  80. reachBottom() {
  81. // console.log('this.list[this.current]',this.list[this.current]);
  82. if(this.orderList[this.current].length>=this.list[this.current].total){
  83. this.loadStatus.splice(this.list[this.current].index,1,"nomore");
  84. return;
  85. };
  86. this.loadStatus.splice(this.list[this.current].index,1,"loading");
  87. this.getOrderList(this.list[this.current]);
  88. },
  89. // 页面数据
  90. getOrderList(orderType) {
  91. let param = {
  92. pageNum:orderType.pageNum,
  93. orderStatus:orderType.orderStatu,
  94. };
  95. // 未出场: orderStatu = 1-停放中
  96. // 缴费中: orderStatu = 2-出场中 && payStatus = 2-支付中
  97. // 完成: orderStatu = 4-完成
  98. this.$u.api.getOrderList(param)
  99. .then(res=>{
  100. for(let item of res.data.pageInfo.rows){
  101. this.orderList[orderType.index].push(item);
  102. }
  103. console.log('this.list[orderType.index]',this.list[orderType.index]);
  104. this.list[this.current].total = res.data.pageInfo.total;
  105. this.list[orderType.index].pageNum++;
  106. if(this.orderList[this.current].length>=this.list[this.current].total){
  107. this.loadStatus.splice(this.list[orderType.index].index,1,"nomore");
  108. };
  109. console.log(JSON.parse(JSON.stringify(this.orderList[this.swiperCurrent])));
  110. console.log('this.list[this.current]',this.list[this.current]);
  111. }).catch(err=>{
  112. this.$refs.uToast.show({
  113. title: err.msg,
  114. type: 'error',
  115. });
  116. console.log('getOrderList ',err)
  117. });
  118. this.loadStatus.splice(this.current,1,"loadmore")
  119. },
  120. // tab栏切换
  121. change(index) {
  122. // this.swiperCurrent = this.list[index].orderStatu;
  123. this.swiperCurrent = index;
  124. this.getOrderList(this.list[index]);
  125. },
  126. transition({ detail: { dx } }) {
  127. this.$refs.tabs.setDx(dx);
  128. },
  129. animationfinish({ detail: { current } }) {
  130. this.$refs.tabs.setFinishCurrent(current);
  131. this.swiperCurrent = current;
  132. this.current = current;
  133. },
  134. goDetails(id){
  135. this.$u.route({
  136. url: 'pages/center/invoice/makeinvoice/makeinvoice',
  137. params: {
  138. invoice: id
  139. }
  140. });
  141. }
  142. },
  143. filters:{
  144. verifyStatusFilter(value) {
  145. if (value === 0) {
  146. return '';
  147. } else if(value === 1){
  148. return '已开票';
  149. } else if(value === 2){
  150. return '未开票';
  151. } else {
  152. return '';
  153. }
  154. },
  155. }
  156. };
  157. </script>
  158. <style>
  159. /* #ifndef H5 */
  160. page {
  161. height: 100%;
  162. background-color: #F6F6FF;
  163. }
  164. /* #endif */
  165. </style>
  166. <style lang="scss" scoped>
  167. @import "./invoice.scss";
  168. </style>