invoice.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="app-container">
  3. <view class="card">
  4. <view class="row">发票状态:<text>{{detail.status ? '已':'待'}}开票</text></view>
  5. </view>
  6. <view class="card">
  7. <view class="row">订单编号:<text>{{detail.orderId}}</text></view>
  8. <view class="row">下单时间:<text>{{detail.createTime}}</text></view>
  9. </view>
  10. <view class="card">
  11. <view class="row">发票类型:<text>{{detail.taxType ? '增值税专用发票':'增值税普通发票'}}</text></view>
  12. <view class="row">发票抬头:<text>{{detail.name}}</text></view>
  13. <view class="row">发票内容:<text>{{detail.content}}</text></view>
  14. <!-- <view class="row">发票税号:<text>{{detail.taxNo ? detail.taxNo : ''}}</text></view> -->
  15. </view>
  16. <view class="bottom-container">
  17. <view class="button white" @tap="look">查看发票</view>
  18. <view class="button white" @tap="sendEmail">发送邮箱</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. invoiceId: null, // 发票id
  27. detail: {}, // 发票详情
  28. }
  29. },
  30. onLoad({id}) {
  31. this.invoiceId = id;
  32. this.getInvoiceDetail();
  33. },
  34. methods: {
  35. getInvoiceDetail() {
  36. this.$axios({
  37. url: '/user/order/tax/detail',
  38. method: 'get',
  39. params: {
  40. orderTaxId: this.invoiceId
  41. }
  42. }).then(res => {
  43. this.detail = res.data;
  44. })
  45. },
  46. // 查看发票
  47. look() {
  48. let that = this;
  49. if(!this.detail.taxLink) {
  50. return this.$toast('发票链接无效');
  51. }
  52. uni.downloadFile({
  53. url: this.detail.taxLink,
  54. success: function (res) {
  55. uni.openDocument({
  56. filePath: res.tempFilePath,
  57. fileType: 'pdf',
  58. success(res) {
  59. console.log('打开文档成功');
  60. },
  61. fail() {
  62. that.$toast('查看发票失败');
  63. }
  64. });
  65. }
  66. });
  67. },
  68. // 发送邮箱
  69. sendEmail() {
  70. this.$axios({
  71. url: '/user/order/tax/send',
  72. params: {
  73. orderTaxId: this.invoiceId
  74. }
  75. }).then(res => {
  76. this.$successToast('发送成功');
  77. })
  78. }
  79. }
  80. }
  81. </script>
  82. <style lang="scss">
  83. .app-container {
  84. background: #F4F2F2;
  85. padding: 20rpx;
  86. box-sizing: border-box;
  87. }
  88. .card {
  89. background: #FFFFFF;
  90. border-radius: 20rpx;
  91. margin-bottom: 20rpx;
  92. padding: 10rpx 20rpx;
  93. .row {
  94. line-height: 60rpx;
  95. }
  96. }
  97. .bottom-container {
  98. width: 100%;
  99. padding: 0 20rpx;
  100. box-sizing: border-box;
  101. height: 100rpx;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. border-top: 1px solid #F4F2F2;
  106. .button {
  107. width: 180rpx;
  108. height: 56rpx;
  109. border-radius: 56rpx;
  110. text-align: center;
  111. line-height: 56rpx;
  112. font-size: 28rpx;
  113. margin-left: 20rpx;
  114. &:first-child {
  115. margin-left: 0;
  116. }
  117. &.gray {
  118. color: #999999;
  119. border: 1px solid #999999;
  120. }
  121. &.white {
  122. color: #FF3F42;
  123. border: 1px solid #FF3F42;
  124. }
  125. &.red {
  126. color: #FFFFFF;
  127. border: 1px solid #FF3F42;
  128. background: #FF3F42;
  129. }
  130. }
  131. }
  132. </style>