applyResult.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view>
  3. <u-navbar title="申请结果"></u-navbar>
  4. <view class="applyResult">
  5. <u-icon name="chenggong" custom-prefix="custom-icon" color="#27B148" size="150"></u-icon>
  6. <h3>申请成功</h3>
  7. <p>申请提现 ¥1000.00元</p>
  8. </view>
  9. <view class="applySpeed">
  10. <view class="applySpeed-item">
  11. <u-icon name="time-line" custom-prefix="custom-icon" color="#185AC6" size="48"></u-icon>
  12. <p>预计3个工作日内确认提现金额</p>
  13. </view>
  14. <view class="applySpeed-item">
  15. <u-icon name="money-cny-circle-line" custom-prefix="custom-icon" color="#185AC6" size="48"></u-icon>
  16. <p>预计2个工作日内金额到账</p>
  17. </view>
  18. </view>
  19. <view class="applyBtn">
  20. <u-button class="applyBtn-btn" type="primary">完成</u-button>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. form: {
  29. name: '',
  30. intro: '',
  31. },
  32. }
  33. },
  34. methods: {
  35. }
  36. }
  37. </script>
  38. <style>
  39. </style>
  40. <style lang="scss" scoped>
  41. .applyResult{
  42. display: flex;
  43. flex-direction: column;
  44. align-items: center;
  45. margin: 36px 0;
  46. h3{
  47. margin-top: 20px;
  48. }
  49. p{
  50. color: #999;
  51. margin-top: 4px;
  52. }
  53. }
  54. .applySpeed{
  55. margin: 0 72px;
  56. }
  57. .applySpeed-item{
  58. display: flex;
  59. margin-bottom: 24px;
  60. align-items: center;
  61. position: relative;
  62. &:after{
  63. content: '';
  64. position: absolute;
  65. width: 1px;
  66. height: 18px;
  67. background-color: #185AC6;
  68. left:12px;
  69. top: 26px;
  70. }
  71. &:last-child:after{
  72. background: none;
  73. }
  74. p{
  75. margin-left: 8px;
  76. }
  77. }
  78. .applyBtn{
  79. margin: 36px;
  80. }
  81. .applyBtn-btn{
  82. background-color: #185AC6;
  83. border-color:#185AC6 ;
  84. border-radius: 8px;
  85. }
  86. </style>