<!-- 开票成功 --> <template> <view class="invoice-success"> <!-- 导航栏 --> <u-navbar title-color="#fff" :custom-back="customBack" :border-bottom="false" back-icon-color="#CCE8FF" :background="{ background: '#008CFF' }" title="开票申请" /> <!-- 主要内容 --> <view class="invoice-success-content"> <u-image class="invoice-success-content-icon" width="180rpx" height="180rpx" src="/static/img/invoice-success-icon.png" /> <text>已提交!工作人员正在快马加鞭进行审核,请耐心等待!</text> </view> </view> </template> <script> export default { data() { return {}; }, methods: { customBack() { this.$u.route({ url: '/pages/invoiceModule/myInvoice/myInvoice', type: 'redirectTo' }); } } }; </script> <style lang="scss" scoped> .invoice-success { &-content { width: 60%; margin: 160rpx auto 0; text-align: center; &-icon { width: 180rpx; height: 180rpx; margin: 0 auto 40rpx; color: #333333; font-size: 32rpx; } } } </style>