invoiceSuccess.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!-- 开票成功 -->
  2. <template>
  3. <view class="invoice-success">
  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="开票申请"
  12. />
  13. <!-- 主要内容 -->
  14. <view class="invoice-success-content">
  15. <u-image class="invoice-success-content-icon" width="180rpx" height="180rpx" src="/static/img/invoice-success-icon.png" />
  16. <text>已提交!工作人员正在快马加鞭进行审核,请耐心等待!</text>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {};
  24. },
  25. methods: {
  26. customBack() {
  27. this.$u.route({
  28. url: '/pages/invoiceModule/myInvoice/myInvoice',
  29. type: 'redirectTo'
  30. });
  31. }
  32. }
  33. };
  34. </script>
  35. <style lang="scss" scoped>
  36. .invoice-success {
  37. &-content {
  38. width: 60%;
  39. margin: 160rpx auto 0;
  40. text-align: center;
  41. &-icon {
  42. width: 180rpx;
  43. height: 180rpx;
  44. margin: 0 auto 40rpx;
  45. color: #333333;
  46. font-size: 32rpx;
  47. }
  48. }
  49. }
  50. </style>