addInvoiceHeader.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <!-- 新增发票抬头 -->
  2. <template>
  3. <view class="invoice-header u-skeleton">
  4. <!-- 导航栏 -->
  5. <u-navbar
  6. title-color="#fff"
  7. :custom-back="customBack"
  8. :border-bottom="false"
  9. back-icon-color="#CCE8FF"
  10. :background="{ background: '#008CFF' }"
  11. :title="navigationBarTitle"
  12. class="invoice-navbar"
  13. >
  14. <!-- <view slot="right" class="invoice-header-right" v-if="form.id">
  15. <u-icon name="trash-fill" size="40" color="#fa3534" @click="handleDelete"></u-icon>
  16. </view> -->
  17. </u-navbar>
  18. <view class="invoice-header-form">
  19. <u-form :model="form" ref="uForm" label-width="220" label-align="right">
  20. <u-form-item label="抬 头:" prop="invoHeadType" required class="u-skeleton-fillet">
  21. <u-radio-group v-model="form.invoHeadType" :disabled="!!form.id">
  22. <u-radio :name="1">企业</u-radio>
  23. <u-radio :name="2">个人</u-radio>
  24. </u-radio-group>
  25. </u-form-item>
  26. <u-form-item label="发票抬头:" prop="invoName" required class="u-skeleton-fillet">
  27. <u-input v-model="form.invoName" placeholder="请输入发票抬头" />
  28. </u-form-item>
  29. <u-form-item label="税 号:" prop="invoCode" required class="u-skeleton-fillet" v-if="form.invoHeadType === 1">
  30. <u-input v-model="form.invoCode" placeholder="请输入税号" />
  31. </u-form-item>
  32. </u-form>
  33. </view>
  34. <view class="invoice-header-default">
  35. <u-form :model="form" ref="uForm1" label-width="220" label-align="right">
  36. <u-form-item label="电子邮箱(选填):" prop="invoMail" class="u-skeleton-fillet">
  37. <u-input v-model="form.invoMail" placeholder="请输入电子邮箱" />
  38. </u-form-item>
  39. <u-form-item label="手机号码(选填):" prop="invoPhone" class="u-skeleton-fillet">
  40. <u-input v-model="form.invoPhone" placeholder="请输入手机号码" />
  41. </u-form-item>
  42. <u-form-item label="默认抬头:" prop="invoStatus" class="u-skeleton-fillet">
  43. <view class="invoice-header-default-item">
  44. <text class="tips">每次开票默认抬头信息</text>
  45. <u-switch v-model="form.invoStatus" size="40" />
  46. </view>
  47. </u-form-item>
  48. </u-form>
  49. </view>
  50. <view class="invoice-header-bottom">
  51. <u-button type="primary" @click="submitForm" :loading="loading">保存</u-button>
  52. </view>
  53. <!--引用组件-->
  54. <u-skeleton :loading="skeletonLoading" :animation="true" bgColor="#FFF"></u-skeleton>
  55. <u-toast ref="uToast" />
  56. </view>
  57. </template>
  58. <script>
  59. export default {
  60. data() {
  61. return {
  62. form: {
  63. invoHeadType: 1,
  64. invoName: '',
  65. invoCode: '',
  66. invoPhone: '',
  67. invoMail: '',
  68. invoStatus: false,
  69. id: undefined
  70. },
  71. rules: {
  72. invoName: [{ required: true, message: '请输入发票抬头', trigger: ['blur', 'change'] }],
  73. invoCode: [{ required: true, message: '请输入税号', trigger: ['blur', 'change'] }]
  74. },
  75. loading: false,
  76. skeletonLoading: false,
  77. navigationBarTitle: '新增抬头'
  78. };
  79. },
  80. onLoad(options) {
  81. const { id } = options;
  82. this.navigationBarTitle = '新增抬头';
  83. if (id) {
  84. this.navigationBarTitle = '编辑抬头';
  85. this.getInvoiceHeaderDetails(id);
  86. }
  87. },
  88. onReady() {
  89. this.$refs.uForm.setRules(this.rules);
  90. },
  91. methods: {
  92. customBack() {
  93. uni.navigateBack();
  94. },
  95. addInvoice() {},
  96. /**
  97. * @description: 获取发票抬头信息
  98. * @param {*} id
  99. * @return {*}
  100. */
  101. async getInvoiceHeaderDetails(id) {
  102. try {
  103. this.skeletonLoading = true;
  104. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceHeadDetailsApi({ id });
  105. if (code === 200) {
  106. this.form.id = data.id;
  107. this.form.invoHeadType = data.invoHeadType;
  108. this.form.invoName = data.invoName;
  109. this.form.invoCode = data.invoCode;
  110. this.form.invoPhone = data.invoPhone;
  111. this.form.invoMail = data.invoMail;
  112. this.form.invoStatus = data.invoStatus === 1 ? true : false;
  113. }
  114. } catch (error) {
  115. } finally {
  116. this.skeletonLoading = false;
  117. }
  118. },
  119. handleDelete() {
  120. uni.showModal({
  121. title: '提示',
  122. content: '你确认要删除该条发票抬头吗?',
  123. success: async (res) => {
  124. if (res.confirm) {
  125. try {
  126. this.loading = true;
  127. const { id } = this.form;
  128. const { code } = await this.$u.api.invoiceModuleApi.deleteInvoiceHeaderApi({ id });
  129. if (code === 200) {
  130. this.$refs.uToast.show({
  131. title: '删除成功!',
  132. type: 'success',
  133. duration: 2000
  134. });
  135. setTimeout(() => {
  136. this.loading = false;
  137. this.$u.route({
  138. url: '/pages/invoiceModule/invoiceHeaderList/invoiceHeaderList'
  139. });
  140. }, 2000);
  141. }
  142. } catch (error) {
  143. this.loading = false;
  144. }
  145. }
  146. }
  147. });
  148. },
  149. /**
  150. * @description: 提交发票
  151. * @return {*}
  152. */
  153. submitForm() {
  154. this.$refs.uForm.validate(async (valid) => {
  155. if (!valid) return;
  156. this.loading = true;
  157. uni.showLoading({
  158. title: '提交中...'
  159. });
  160. const form = { ...this.form };
  161. form.invoStatus = form.invoStatus ? 1 : 0;
  162. if (form.invoHeadType === 2) {
  163. form.invoCode = null;
  164. }
  165. try {
  166. let response;
  167. if (form.id) {
  168. response = await this.$u.api.invoiceModuleApi.updateInvoiceHeaderApi({ ...form });
  169. this.$refs.uToast.show({
  170. title: '修改成功!',
  171. type: 'success',
  172. duration: 2000
  173. });
  174. } else {
  175. response = await this.$u.api.invoiceModuleApi.addInvoiceHeaderApi({ ...form });
  176. this.$refs.uToast.show({
  177. title: '保存成功!',
  178. type: 'success',
  179. duration: 2000
  180. });
  181. }
  182. if (response.code === 200) {
  183. setTimeout(() => {
  184. uni.hideLoading();
  185. this.$u.route({
  186. url: '/pages/invoiceModule/invoiceHeaderList/invoiceHeaderList',
  187. type: 'redirect'
  188. });
  189. }, 2000);
  190. }
  191. } catch (error) {
  192. console.error(error);
  193. } finally {
  194. uni.hideLoading()
  195. this.loading = false;
  196. }
  197. });
  198. }
  199. }
  200. };
  201. </script>
  202. <style lang="scss" scoped>
  203. @import './addInvoiceHeader.scss';
  204. </style>