returnApplication.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <view>
  3. <u-navbar title="退费申请" title-color="#101010" ></u-navbar>
  4. <view class="success-icon">
  5. <image class="img" src="@/assets/img/md-check_circle vRxbRvD.svg" mode=""></image>
  6. </view>
  7. <view class="success-text">
  8. 退费申请成功
  9. </view>
  10. <view class="hint">
  11. 退费中,预计0-5个工作日退还至原支付账户
  12. </view>
  13. <!-- 按钮 -->
  14. <view class="btns">
  15. <button class="btn1">完成</button>
  16. <button class="btn2">查看详情</button>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. page{
  32. background-color: #fff;
  33. }
  34. .success-icon{
  35. width: 132rpx;
  36. height: 132rpx;
  37. margin: 40rpx auto 16rpx;
  38. .img{
  39. width: 100%;
  40. height: 100%;
  41. }
  42. }
  43. .success-text{
  44. color: rgba(51,51,51,1);
  45. font-size: 48rpx;
  46. text-align: center;
  47. }
  48. .hint{
  49. color: rgb(119,119,119);
  50. text-align: center;
  51. margin-top: 16rpx;
  52. }
  53. // 按钮
  54. .btns{
  55. display: flex;
  56. padding: 0 80rpx;
  57. margin-top: 48rpx;
  58. .btn1{
  59. width: 280rpx;
  60. height: 80rpx;
  61. background-color: rgba(255,255,255,1);
  62. color: rgba(51,51,51,1);
  63. font-size: 32rpx;
  64. border-radius: 50px;
  65. border: 1px solid rgba(223,223,223,1);
  66. }
  67. .btn2{
  68. width: 280rpx;
  69. height: 80rpx;
  70. border-radius: 50px;
  71. background-color: rgba(22,119,255,1);
  72. color: rgba(255,255,255,1);
  73. font-size: 32rpx;
  74. border: 0px solid rgba(187,187,187,1);
  75. }
  76. }
  77. </style>