invoiceSuccess.vue 660 B

12345678910111213141516171819202122232425262728293031323334
  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">1111111</view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {};
  21. },
  22. methods: {
  23. customBack() {
  24. this.$u.route({
  25. url: '/pages/invoiceModule/myInvoice/myInvoice',
  26. type: 'redirectTo'
  27. });
  28. }
  29. }
  30. };
  31. </script>
  32. <style lang="scss"></style>