invoiceHeaderList.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <!-- 发票抬头列表 -->
  2. <template>
  3. <view class="invoice-header">
  4. <z-paging ref="paging" v-model="invoiceHeaderList" @query="queryList">
  5. <view class="invoice-header-list">
  6. <!-- <u-swipe-action
  7. v-for="(item, index) in invoiceHeaderList"
  8. :key="index"
  9. :index="index"
  10. :show="item.show"
  11. :options="options"
  12. btn-width="120"
  13. @click="invoiceHeaderClick"
  14. bg-color="#fff"
  15. >
  16. <view class="invoice-header-list-item" @click="addInvoiceHeader(item)">
  17. <view class="left">
  18. <view class="left-item">{{ item.invoName }}</view>
  19. <view class="left-item">{{ item.invoCode }}</view>
  20. </view>
  21. <view class="center">
  22. {{ formatType(item.invoHeadType) }}
  23. </view>
  24. <view class="right">
  25. <u-icon name="arrow-right" color="#909399" size="30"></u-icon>
  26. </view>
  27. </view>
  28. </u-swipe-action> -->
  29. <view class="invoice-header-list-item" v-for="(item, index) in invoiceHeaderList" :key="index">
  30. <view class="left">
  31. <view class="left-item">{{ item.invoName }}</view>
  32. <view class="left-item">{{ item.invoCode }}</view>
  33. </view>
  34. <view class="center">
  35. {{ formatType(item.invoHeadType) }}
  36. </view>
  37. <view class="right">
  38. <u-image width="28rpx" height="28rpx" src="/static/img/edit-icon.png" @click="addInvoiceHeader(item)" />
  39. <!--
  40. <u-icon name="edit-pen" color="#909399" size="40" @click="addInvoiceHeader(item)"></u-icon>
  41. <u-icon name="trash-fill" color="#fa3534" size="40" @click="deleteInvoiceHeader(item)"></u-icon> -->
  42. </view>
  43. </view>
  44. </view>
  45. <view class="invoice-header-bottom" slot="bottom">
  46. <u-button type="primary" @click="addInvoiceHeader">新增抬头</u-button>
  47. </view>
  48. </z-paging>
  49. <u-toast ref="uToast" />
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. invoiceHeaderList: [],
  57. queryParams: {
  58. pageNum: 1,
  59. pageSize: 10
  60. },
  61. options: [
  62. {
  63. text: '删除',
  64. style: {
  65. backgroundColor: '#dd524d'
  66. }
  67. }
  68. ]
  69. };
  70. },
  71. methods: {
  72. /**
  73. * @description: 分页组件触发
  74. * @param {*} pageNo
  75. * @param {*} pageSize
  76. * @return {*}
  77. */
  78. queryList(pageNo, pageSize) {
  79. this.queryParams.pageNum = pageNo;
  80. this.queryParams.pageSize = pageSize;
  81. this.getList();
  82. },
  83. /**
  84. * @description: 获取列表
  85. * @return {*}
  86. */
  87. async getList() {
  88. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceHeadListApi({ ...this.queryParams });
  89. if (code === 200) {
  90. this.$refs.paging.complete(data?.pageInfo?.rows || []);
  91. }
  92. },
  93. /**
  94. * @description: 滑动按钮点击
  95. * @param {*} index
  96. * @param {*} btnIndex
  97. * @return {*}
  98. */
  99. invoiceHeaderClick(index, btnIndex) {
  100. this.invoiceHeaderList[index].show = true;
  101. if (btnIndex === 0) {
  102. uni.showModal({
  103. title: '提示',
  104. content: '你确认删除该条发票抬头信息吗?',
  105. success: async (res) => {
  106. if (res.confirm) {
  107. const { id } = this.invoiceHeaderList[index];
  108. const { code } = await this.$u.api.invoiceModuleApi.deleteInvoiceHeaderApi({ id });
  109. if (code === 200) {
  110. this.$refs.uToast.show({
  111. title: '删除成功!',
  112. type: 'success'
  113. });
  114. this.getList();
  115. this.invoiceHeaderList[index].show = false;
  116. }
  117. }
  118. if (res.cancel) {
  119. this.invoiceHeaderList[index].show = false;
  120. console.log('取消删除');
  121. }
  122. }
  123. });
  124. }
  125. },
  126. /**
  127. * @description: 新增抬头
  128. * @return {*}
  129. */
  130. addInvoiceHeader(item) {
  131. this.$u.route({
  132. url: '/pages/invoiceModule/addInvoiceHeader/addInvoiceHeader',
  133. params: {
  134. id: item.id
  135. }
  136. });
  137. },
  138. // 删除抬头
  139. async deleteInvoiceHeader(item) {
  140. const { id } = item;
  141. const { code } = await this.$u.api.invoiceModuleApi.deleteInvoiceHeaderApi({ id });
  142. if (code === 200) {
  143. this.$refs.uToast.show({
  144. title: '删除成功!',
  145. type: 'success'
  146. });
  147. this.getList();
  148. }
  149. },
  150. /**
  151. * @description: 初始化类型
  152. * @param {*} val
  153. * @return {*}
  154. */
  155. formatType(val) {
  156. const typeObj = {
  157. 1: '企业',
  158. 2: '个人'
  159. };
  160. return typeObj[val];
  161. }
  162. }
  163. };
  164. </script>
  165. <style lang="scss" scoped>
  166. @import './invoiceHeaderList.scss';
  167. </style>