You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
934 B

5 years ago
<template>
<view>
<view class="flex flex-direction align-center" style="margin: 100rpx 0 50rpx;">
<text class="cuIcon-roundcheckfill" style="font-size: 100rpx;color: #FA873A;"></text>
<view class="text-black" style="margin: 20rpx 0 10rpx;font-size: 36rpx;">提交成功</view>
<view style="font-size: 26rpx;color: #AAAAAA;">您的发票预计将在24小时内开出请注意查收</view>
</view>
<button class="bg-red text-white" @tap="toInvoiceIndex"></button>
<button class="bg-white" @tap="toInvoiceHistory"></button>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods:{
toInvoiceIndex(){
uni.navigateBack()
},
toInvoiceHistory(){
uni.redirectTo({
url:"../invoiceHistory/invoiceHistory"
})
}
}
}
</script>
<style lang="scss">
button{
margin: 30rpx;
&::after{
border-color: #AAAAAA;
}
}
</style>