123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!-- 开票成功 -->
- <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>
|