invoiceResult.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="container">
  3. <view class="result-box">
  4. <view class="icon-box">
  5. <view class="iconfont icon-success-filling"></view>
  6. </view>
  7. <view class="message-box">
  8. 已提交开票申请,请耐心等待
  9. </view>
  10. </view>
  11. <view class="button-box">
  12. <u-button type="primary" shape="circle" @click="onClick()">查看开票记录</u-button>
  13. </view>
  14. </view>
  15. </template>
  16. <script setup>
  17. import { ref } from 'vue'
  18. import { onLoad } from '@dcloudio/uni-app'
  19. function onClick() {
  20. uni.redirectTo({
  21. url: '/pages/InvoiceApplication/InvoiceApplication?menuCurrent=1'
  22. })
  23. }
  24. onLoad(() => {
  25. })
  26. </script>
  27. <style lang="scss" scoped>
  28. .container {
  29. height: 100vh;
  30. width: 100vw;
  31. background-color: $uni-bg-color;
  32. padding: 0 20rpx;
  33. .result-box {
  34. width: 100%;
  35. padding: 120rpx 0;
  36. .icon-box {
  37. width: 100%;
  38. text-align: center;
  39. margin-bottom: 30rpx;
  40. .iconfont {
  41. font-size:150rpx;
  42. color: $uni-color-primary;
  43. }
  44. }
  45. .message-box {
  46. width: 100%;
  47. font-size: $uni-title-font-size-2;
  48. text-align: center;
  49. }
  50. }
  51. .button-box {
  52. width: 50%;
  53. margin: 0 auto;
  54. }
  55. }
  56. </style>