refundApp.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view>
  3. <u-navbar title="退费申请"></u-navbar>
  4. <view class="paySuccess">
  5. <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
  6. <view class="title">退费申请成功</view>
  7. <p>退费中,预计0-5个工作日退还至原支付账户</p>
  8. </view>
  9. <view class="paySuccess-btn">
  10. <u-button class="success-btn" shape="circle" type="success">
  11. <span>完成</span>
  12. </u-button>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. import * as api from "@/apis/refund.js"
  18. export default {
  19. data() {
  20. return {
  21. userId:'',
  22. }
  23. },
  24. onReady(){
  25. if (this.carhelp.getPersonInfo()) {
  26. this.userId = this.carhelp.getPersonInfo().id;
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. page{
  35. background-color: #fff;
  36. }
  37. </style>
  38. <style lang="scss" scoped>
  39. .paySuccess{
  40. text-align: center;
  41. padding: 50px 0;
  42. .title{
  43. font-size: 20px;
  44. margin-top: 20px;
  45. }
  46. .payPrice{
  47. display: flex;
  48. align-items: flex-end;
  49. justify-content: center;
  50. font{
  51. font-size: 36px;
  52. line-height: 36px;
  53. }
  54. margin-top: 20px;
  55. }
  56. p{
  57. color:#999;
  58. margin-top: 4px;
  59. }
  60. }
  61. .paySuccess-btn{
  62. display: flex;
  63. justify-content: space-between;
  64. padding: 0 40px;
  65. }
  66. .success-btn{
  67. background-color:#00B962!important;
  68. flex: 1;
  69. border-color: #00B962!important;
  70. color:#fff!important;
  71. }
  72. </style>