myInvoice.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <!-- 我的发票 -->
  2. <template>
  3. <view class="invoice">
  4. <z-paging ref="paging" v-model="invoiceList" empty-view-text="暂无开票记录" @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. class="invoice-navbar"
  14. slot="top"
  15. >
  16. <view slot="right" class="invoice-navbar-right" @click="addInvoice">申请开票</view>
  17. </u-navbar>
  18. <!-- 列表 -->
  19. <view class="invoice-list">
  20. <view class="invoice-list-item" v-for="(item, index) in invoiceList" :key="index" @click="invoiceItemClick(item)">
  21. <view class="invoice-list-item-left">
  22. <view class="invoice-list-item-left-item">
  23. <view class="left"></view>
  24. <view class="right">
  25. <text class="money">¥{{ item.amount }}</text>
  26. </view>
  27. </view>
  28. <view class="invoice-list-item-left-item">
  29. <view class="left"></view>
  30. <view class="right">
  31. <text>{{ formatInvoiceType(item.invoType) }}</text>
  32. </view>
  33. </view>
  34. <view class="invoice-list-item-left-item">
  35. <view class="left">申请时间:</view>
  36. <view class="right">
  37. <text class="time">{{ $u.timeFormat(new Date(item.askTime), 'yyyy-mm-dd hh:MM:ss') }}</text>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="invoice-list-item-right">
  42. <view class="arrow-right">
  43. <u-icon name="arrow-right" color="#909399" size="28" />
  44. </view>
  45. <view>
  46. <text :class="formatStatusType(item['status'])">{{ formatStatus(item['status']) }}</text>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </z-paging>
  52. <!-- 选择开票类型 -->
  53. <u-select v-model="chooseRecords.show" :list="chooseRecords.list" value-name="dictValue" label-name="dictLabel" @confirm="chooseRecordsConfirm" />
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. invoiceList: [],
  61. queryParams: {
  62. pageNum: 1,
  63. pageSize: 10
  64. },
  65. chooseRecords: {
  66. show: false,
  67. list: []
  68. },
  69. invoiceStatusList: []
  70. };
  71. },
  72. onLoad(options) {
  73. this.getDict();
  74. },
  75. methods: {
  76. /**
  77. * @description: 获取字典
  78. * @return {*}
  79. */
  80. async getDict() {
  81. // 发票类型
  82. const typeRes = await this.$u.api.getDictApi({ type: 'invoice_type' });
  83. if (typeRes.code === 200) {
  84. this.chooseRecords.list = typeRes.data;
  85. }
  86. // 开票状态
  87. const statusRes = await this.$u.api.getDictApi({ type: 'invoice_status' });
  88. if (statusRes.code === 200) {
  89. this.invoiceStatusList = statusRes.data;
  90. }
  91. },
  92. /**
  93. * @description: 指定返回上一页
  94. * @return {*}
  95. */
  96. customBack() {
  97. this.$u.route({
  98. type: 'switchTab',
  99. url: 'pages/center/index'
  100. });
  101. },
  102. /**
  103. * @description: 开发票
  104. * @return {*}
  105. */
  106. addInvoice() {
  107. this.chooseRecords.show = true;
  108. },
  109. /**
  110. * @description: 开发票选择确认
  111. * @param {*} val
  112. * @return {*}
  113. */
  114. chooseRecordsConfirm(list) {
  115. this.$u.route({
  116. url: '/pages/invoiceModule/availableOrder/availableOrder',
  117. params: {
  118. orderType: list[0].value
  119. }
  120. });
  121. },
  122. /**
  123. * @description: 分页触发
  124. * @param {*} pageNo
  125. * @param {*} pageSize
  126. * @return {*}
  127. */
  128. queryList(pageNo, pageSize) {
  129. this.queryParams.pageNum = pageNo;
  130. this.queryParams.pageSize = pageSize;
  131. this.getInvoiceList();
  132. },
  133. /**
  134. * @description: 获取发票列表
  135. * @return {*}
  136. */
  137. async getInvoiceList() {
  138. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceListApi({ ...this.queryParams });
  139. if (code === 200) {
  140. this.$refs.paging.complete(data?.pageInfo?.rows || []);
  141. }
  142. },
  143. /**
  144. * @description: 单条发票点击
  145. * @param {*} item
  146. * @return {*}
  147. */
  148. invoiceItemClick(item) {
  149. this.$u.route({
  150. url: '/pages/invoiceModule/invoiceDetails/invoiceDetails',
  151. params: {
  152. id: item.id,
  153. invoType: item.invoType
  154. }
  155. });
  156. },
  157. /**
  158. * @description: 初始化状态
  159. * @param {*} val
  160. * @return {*}
  161. */
  162. formatStatus(val) {
  163. if (!val && val !== 0) return;
  164. if (this.invoiceStatusList.length) return this.invoiceStatusList.find((v) => Number(v.dictValue) === Number(val)).dictLabel;
  165. },
  166. /**
  167. * @description: 初始化状态按钮样式
  168. * @param {*} val
  169. * @return {*}
  170. */
  171. formatStatusType(val) {
  172. const statusTypeObj = {
  173. 0: 'info',
  174. 1: 'primary',
  175. 2: 'error'
  176. };
  177. return statusTypeObj[val];
  178. },
  179. /**
  180. * @description: 初始化发票类型
  181. * @param {*} val
  182. * @return {*}
  183. */
  184. formatInvoiceType(val) {
  185. if (!val) return;
  186. if (this.chooseRecords.list.length) return this.chooseRecords.list.find((item) => Number(item.dictValue) === Number(val)).dictLabel;
  187. }
  188. }
  189. };
  190. </script>
  191. <style lang="scss" scoped>
  192. @import './myInvoice.scss';
  193. </style>