123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view>
- <u-navbar title="退费申请"></u-navbar>
- <view class="paySuccess">
- <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
- <view class="title">退费申请成功</view>
- <p>退费中,预计0-5个工作日退还至原支付账户</p>
- </view>
- <view class="paySuccess-btn">
- <u-button class="success-btn" shape="circle" type="success">
- <span>完成</span>
- </u-button>
- </view>
- </view>
- </template>
- <script>
- import * as api from "@/apis/refund.js"
- export default {
- data() {
- return {
- userId:'',
- }
- },
- onReady(){
- if (this.carhelp.getPersonInfo()) {
- this.userId = this.carhelp.getPersonInfo().id;
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .paySuccess{
- text-align: center;
- padding: 50px 0;
- .title{
- font-size: 20px;
- margin-top: 20px;
- }
- .payPrice{
- display: flex;
- align-items: flex-end;
- justify-content: center;
- font{
- font-size: 36px;
- line-height: 36px;
- }
- margin-top: 20px;
- }
- p{
- color:#999;
- margin-top: 4px;
- }
- }
- .paySuccess-btn{
- display: flex;
- justify-content: space-between;
- padding: 0 40px;
- }
- .success-btn{
- background-color:#00B962!important;
- flex: 1;
- border-color: #00B962!important;
- color:#fff!important;
- }
- </style>
|