applyResult.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. import * as API from '@/apis/finance.js'
  26. export default {
  27. data() {
  28. return {
  29. form: {
  30. name: '',
  31. intro: '',
  32. },
  33. }
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style>
  40. </style>
  41. <style lang="scss" scoped>
  42. .applyResult{
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. margin: 36px 0;
  47. h3{
  48. margin-top: 20px;
  49. }
  50. p{
  51. color: #999;
  52. margin-top: 4px;
  53. }
  54. }
  55. .applySpeed{
  56. margin: 0 72px;
  57. }
  58. .applySpeed-item{
  59. display: flex;
  60. margin-bottom: 24px;
  61. align-items: center;
  62. position: relative;
  63. &:after{
  64. content: '';
  65. position: absolute;
  66. width: 1px;
  67. height: 18px;
  68. background-color: #185AC6;
  69. left:12px;
  70. top: 26px;
  71. }
  72. &:last-child:after{
  73. background: none;
  74. }
  75. p{
  76. margin-left: 8px;
  77. }
  78. }
  79. .applyBtn{
  80. margin: 36px;
  81. }
  82. .applyBtn-btn{
  83. background-color: #185AC6;
  84. border-color:#185AC6 ;
  85. border-radius: 8px;
  86. }
  87. </style>