<!-- 开票成功 --> <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">1111111</view> </view> </template> <script> export default { data() { return {}; }, methods: { customBack() { this.$u.route({ url: '/pages/invoiceModule/myInvoice/myInvoice', type: 'redirectTo' }); } } }; </script> <style lang="scss"></style>