availableOrder.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <!-- 可开发票订单 -->
  2. <template>
  3. <view class="order-box">
  4. <z-paging ref="paging" v-model="orderList" @query="queryList">
  5. <!-- 导航栏 -->
  6. <u-navbar
  7. title-color="#fff"
  8. :custom-back="customBack"
  9. :border-bottom="false"
  10. back-icon-color="#CCE8FF"
  11. :background="{ background: '#008CFF' }"
  12. title="可开票订单"
  13. slot="top"
  14. />
  15. <view class="order-box-list">
  16. <view class="order-box-list-item" v-for="(item, index) in orderList" :key="index" @click="radioClick(item)">
  17. <view class="left">
  18. <view class="left-radio small-radio">
  19. <radio value="true" :checked="currentIds.includes(item.id)" />
  20. </view>
  21. <view class="left-content">
  22. <view class="left-content-item money">¥{{ item.amount }}</view>
  23. <view class="left-content-item">{{ item.name }}</view>
  24. <view class="left-content-item time">{{ $u.timeFormat(new Date(item.payTime), 'yyyy-mm-dd hh:MM:ss') }}</view>
  25. </view>
  26. </view>
  27. <view class="right">{{ item.vehicleNo }}</view>
  28. </view>
  29. </view>
  30. <view class="order-box-bottom" slot="bottom">
  31. <view class="order-box-bottom-radio small-radio"> <radio value="true" :checked="checkedAll" @click="checkedChange" />本页全选 </view>
  32. <view class="order-box-bottom-next">
  33. <u-button type="primary" size="medium" :disabled="!currentIds.length" @click="nextStep">下一步</u-button>
  34. </view>
  35. </view>
  36. </z-paging>
  37. <u-toast ref="uToast" />
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. orderList: [],
  45. currentIds: [],
  46. currentList: [],
  47. checkedAll: false,
  48. queryParams: {
  49. pageNum: 1,
  50. pageSize: 10,
  51. invoType: 1
  52. }
  53. };
  54. },
  55. watch: {
  56. currentIds(val) {
  57. this.checkedAll = val.length === this.orderList.length && val.length !== 0;
  58. }
  59. },
  60. onLoad(options) {
  61. const { orderType } = options;
  62. if (orderType) {
  63. this.queryParams.invoType = orderType;
  64. }
  65. },
  66. onShow() {
  67. // this.orderList = [];
  68. // this.currentIds = [];
  69. // this.currentList = [];
  70. // this.$nextTick(() => {
  71. // this.$refs.paging.reload();
  72. // });
  73. },
  74. methods: {
  75. /**
  76. * @description: 分页触发
  77. * @param {*} pageNo
  78. * @param {*} pageSize
  79. * @return {*}
  80. */
  81. queryList(pageNo, pageSize) {
  82. this.queryParams.pageNum = pageNo;
  83. this.queryParams.pageSize = pageSize;
  84. this.getList();
  85. },
  86. customBack() {
  87. this.$u.route({
  88. url: '/pages/invoiceModule/myInvoice/myInvoice'
  89. });
  90. },
  91. /**
  92. * @description: 获取列表
  93. * @return {*}
  94. */
  95. async getList() {
  96. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceOrderListApi({ ...this.queryParams });
  97. if (code === 200) {
  98. this.$refs.paging.complete(data?.pageInfo?.rows || []);
  99. }
  100. },
  101. /**
  102. * @description: 单项条目点击
  103. * @param {*} item
  104. * @return {*}
  105. */
  106. radioClick(item) {
  107. if (this.currentIds.includes(item.id)) {
  108. const index = this.currentIds.indexOf(item.id);
  109. this.currentIds.splice(index, 1);
  110. this.currentList.splice(index, 1);
  111. } else {
  112. this.currentIds.push(item.id);
  113. this.currentList.push(item);
  114. }
  115. },
  116. /**
  117. * @description: 全选
  118. * @return {*}
  119. */
  120. checkedChange(item) {
  121. this.checkedAll = !this.checkedAll;
  122. this.currentIds = this.checkedAll ? this.orderList.map((item) => item.id) : [];
  123. this.currentList = this.checkedAll
  124. ? this.orderList.map((item) => {
  125. return { ...item };
  126. })
  127. : [];
  128. },
  129. /**
  130. * @description: 下一步
  131. * @return {*}
  132. */
  133. nextStep() {
  134. if (this.currentIds.length) {
  135. const storageObj = {
  136. total: this.countSum(this.currentList),
  137. ids: this.currentIds,
  138. invoType: this.queryParams.invoType
  139. };
  140. uni.setStorage({
  141. key: 'availableOrderKey',
  142. data: JSON.stringify(storageObj),
  143. success: () => {
  144. this.$u.route({
  145. url: '/pages/invoiceModule/addInvoice/addInvoice',
  146. type: 'redirectTo',
  147. params: {
  148. invoType: this.queryParams.invoType
  149. }
  150. });
  151. }
  152. });
  153. } else {
  154. this.$refs.uToast.show({
  155. title: '请先选择订单',
  156. type: 'warning'
  157. });
  158. }
  159. },
  160. /**
  161. * @description: 计算累加精度丢失问题
  162. * @param {*} arr
  163. * @return {*}
  164. */
  165. countSum(arr) {
  166. if (!arr.length) return 0;
  167. arr = arr.map((v) => {
  168. if (v.amount && !Number.isNaN(Number(v.amount))) return Math.round(v.amount.toFixed(2) * 100);
  169. return 0;
  170. });
  171. const result = arr.reduce((prev, curr) => {
  172. return prev + curr;
  173. }, 0);
  174. return result / 100;
  175. }
  176. }
  177. };
  178. </script>
  179. <style lang="scss" scoped>
  180. @import './availableOrder.scss';
  181. </style>