availableOrder.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!-- 可开发票订单 -->
  2. <template>
  3. <view class="order-box">
  4. <z-paging ref="paging" v-model="orderList" @query="queryList">
  5. <view class="order-box-list">
  6. <view class="order-box-list-item" v-for="(item, index) in orderList" :key="index" @click="radioClick(item)">
  7. <view class="left">
  8. <view class="left-radio small-radio">
  9. <radio value="true" :checked="currentIds.includes(item.id)" />
  10. </view>
  11. <view class="left-content">
  12. <view class="left-content-item">停车订单:{{ item.orderName }}</view>
  13. <view class="left-content-item">商户名称:{{ item.shopName }}</view>
  14. <view class="left-content-item">订单时间:{{ item.orderTime }}</view>
  15. </view>
  16. </view>
  17. <view class="right"> ¥{{ item.price }} 元 </view>
  18. </view>
  19. </view>
  20. <view class="order-box-bottom" slot="bottom">
  21. <view class="order-box-bottom-radio small-radio"> <radio value="true" :checked="checkedAll" @click="checkedChange" />本页全选 </view>
  22. <view class="order-box-bottom-next">
  23. <u-button type="primary" size="medium" :disabled="!currentIds.length" @click="nextStep">下一步</u-button>
  24. </view>
  25. </view>
  26. </z-paging>
  27. <u-toast ref="uToast" />
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. orderList: [
  35. { id: 1, orderName: '停车场订单', shopName: '商户名称', orderTime: '2023-06-12 15:00:00', price: 3.0 },
  36. { id: 2, orderName: '停车场订单', shopName: '商户名称', orderTime: '2023-06-12 15:00:00', price: 3.0 }
  37. ],
  38. currentIds: [],
  39. currentList: [],
  40. checkedAll: false,
  41. queryParams: {
  42. pageNum: 1,
  43. pageSize: 10,
  44. invoType: 1
  45. }
  46. };
  47. },
  48. watch: {
  49. currentIds(val) {
  50. this.checkedAll = val.length === this.orderList.length;
  51. }
  52. },
  53. onLoad(options) {
  54. const { orderType } = options;
  55. if (orderType) {
  56. this.queryParams.invoType = orderType;
  57. }
  58. },
  59. methods: {
  60. /**
  61. * @description: 分页触发
  62. * @param {*} pageNo
  63. * @param {*} pageSize
  64. * @return {*}
  65. */
  66. queryList(pageNo, pageSize) {
  67. this.queryParams.pageNum = pageNo;
  68. this.queryParams.pageSize = pageSize;
  69. this.getList();
  70. },
  71. /**
  72. * @description: 获取列表
  73. * @return {*}
  74. */
  75. async getList() {
  76. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceOrderListApi({ ...this.queryParams });
  77. if (code === 200) {
  78. this.$refs.paging.complete(data?.pageInfo?.rows || []);
  79. }
  80. },
  81. /**
  82. * @description: 单项条目点击
  83. * @param {*} item
  84. * @return {*}
  85. */
  86. radioClick(item) {
  87. if (this.currentIds.includes(item.id)) {
  88. const index = this.currentIds.indexOf(item.id);
  89. this.currentIds.splice(index, 1);
  90. this.currentList.splice(index, 1);
  91. } else {
  92. this.currentIds.push(item.id);
  93. this.currentList.push(item);
  94. }
  95. },
  96. /**
  97. * @description: 全选
  98. * @return {*}
  99. */
  100. checkedChange(item) {
  101. this.checkedAll = !this.checkedAll;
  102. this.currentIds = this.checkedAll ? this.orderList.map((item) => item.id) : [];
  103. this.currentList = this.checkedAll
  104. ? this.orderList.map((item) => {
  105. return { ...item };
  106. })
  107. : [];
  108. },
  109. /**
  110. * @description: 下一步
  111. * @return {*}
  112. */
  113. nextStep() {
  114. if (this.currentIds.length) {
  115. const storageObj = {
  116. total: this.currentList.reduce((prev, curr) => {
  117. return prev + curr.amount;
  118. }, 0),
  119. ids: this.currentIds
  120. };
  121. uni.setStorage({
  122. key: 'availableOrderKey',
  123. data: JSON.stringify(storageObj),
  124. success: () => {
  125. this.$u.route({
  126. url: '/pages/invoiceModule/addInvoice/addInvoice'
  127. });
  128. }
  129. });
  130. } else {
  131. this.$refs.uToast.show({
  132. title: '请先选择订单',
  133. type: 'warning'
  134. });
  135. }
  136. }
  137. }
  138. };
  139. </script>
  140. <style lang="scss" scoped>
  141. @import './availableOrder.scss';
  142. </style>