工行这里学车报名流程h5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
2.8 KiB

1 year ago
1 year ago
  1. <template>
  2. <view class="main pageBg">
  3. <view class="ul">
  4. <view class="li">
  5. <view class="top_row">
  6. <view class="cover">
  7. <image src="../../static/logo.png" mode=""></image>
  8. </view>
  9. <view class="schoolName">xx驾校</view>
  10. <view class="status">支付成功</view>
  11. </view>
  12. <view class="textCon">
  13. <view class="text_row">
  14. <text>订单编号</text>
  15. <text>xxxxxx</text>
  16. </view>
  17. <view class="text_row">
  18. <text>报名班型</text>
  19. <text>xxxxxx</text>
  20. </view>
  21. <view class="text_row">
  22. <text>支付金额</text>
  23. <text>xxxxxx</text>
  24. </view>
  25. <view class="text_row">
  26. <text>支付方式</text>
  27. <text>xxxxxx</text>
  28. </view>
  29. <view class="text_row">
  30. <text>支付日期</text>
  31. <text>xxxxxx</text>
  32. </view>
  33. <view class="text_row">
  34. <text>报名学员</text>
  35. <text>xxxxxx</text>
  36. </view>
  37. </view>
  38. <view class="btn_row">
  39. <view class="btn border">下载缴费凭证</view>
  40. <view class="btn bgLinear">下载签约合同</view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="noData">
  45. <view class="iconImg">
  46. <image src="@/static/images/third_img_fail@2x.png" mode=""></image>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. </script>
  53. <style lang="scss" scoped>
  54. .main {
  55. width: 100%;
  56. .noData {
  57. width: calc(100vh - 100rpx);
  58. display: flex;
  59. .iconImg {
  60. width: 400rpx;
  61. height: 274rpx;
  62. margin: auto;
  63. }
  64. }
  65. .ul {
  66. width: 100%;
  67. padding: 16rpx 32rpx;
  68. .li {
  69. height: 654rpx;
  70. background: #FFFFFF;
  71. border-radius: 16rpx;
  72. width: 100%;
  73. margin-bottom: 16rpx;
  74. padding: 0 32rpx;
  75. .top_row {
  76. display: flex;
  77. align-items: center;
  78. height: 104rpx;
  79. justify-content: space-between;
  80. .cover {
  81. width: 56rpx;
  82. height: 56rpx;
  83. border-radius: 50%;
  84. overflow: hidden;
  85. }
  86. .schoolName {
  87. font-size: 32rpx;
  88. color: #363A44;
  89. font-weight: 600;
  90. flex: 1;
  91. width: 0;
  92. padding: 0 0 0 16rpx;
  93. }
  94. .status {
  95. font-size: 28rpx;
  96. color: #1989FA;
  97. }
  98. }
  99. .textCon {
  100. width: 100%;
  101. padding-bottom: 16rpx;
  102. .text_row {
  103. display: flex;
  104. align-items: center;
  105. justify-content: space-between;
  106. padding: 16rpx 0rpx;
  107. text {
  108. font-size: 28rpx;
  109. }
  110. }
  111. }
  112. .btn_row {
  113. display: flex;
  114. justify-content: flex-end;
  115. height: 112rpx;
  116. align-items: center;
  117. border-top: 1px solid #E8E9EC;
  118. .btn.border {
  119. border: 1px solid rgba(53, 147, 251, 1);
  120. color: $themC;
  121. }
  122. .btn {
  123. width: 202rpx;
  124. height: 56rpx;
  125. text-align: center;
  126. font-size: 28rpx;
  127. line-height: 56rpx;
  128. border-radius: 36rpx;
  129. margin-left: 16rpx;
  130. color: #fff;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. </style>