洛阳学员端
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.

133 lines
2.8 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="pageBg">
  3. <view class="pad">
  4. <view class="card">
  5. <view class="orderInfo">
  6. <view class="schoolName">翔力驾校</view>
  7. <view class="price">
  8. <text class="uint"></text>1000.13
  9. </view>
  10. <!-- <view class="num">交易单号65465879312</view> -->
  11. </view>
  12. <view class="li border">
  13. <view class="lab">订单金额</view>
  14. <view class="val"> 2000</view>
  15. </view>
  16. <view class="li">
  17. <view class="lab">订单编号</view>
  18. <view class="val">646545645646458</view>
  19. </view>
  20. </view>
  21. <view class="card">
  22. <view class="pay">
  23. <!-- <view class="h2">选择支付方式</view> -->
  24. <view class="row border">
  25. <view class="wxIcon">
  26. <image src="@/static/images/carIcon/xfbIcon.png" mode=""></image>
  27. </view>
  28. <view class="text">支付宝</view>
  29. <view class="icon">
  30. <!-- <image src="@/static/images/index/noSelect.png.png" mode=""></image> -->
  31. <image src="@/static/images/carIcon/isSelect.png" mode=""></image>
  32. </view>
  33. </view>
  34. <view class="row">
  35. <view class="wxIcon">
  36. <image src="@/static/images/carIcon/wxIcon.png" mode=""></image>
  37. </view>
  38. <view class="text">微信</view>
  39. <view class="icon">
  40. <!-- <image src="@/static/images/index/noSelect.png.png" mode=""></image> -->
  41. <image src="@/static/images/carIcon/isSelect.png" mode=""></image>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="footerBtn pad">
  47. <view class="btnBg" @click="$goPage('/pages/indexEntry/enroll/paymentSuccess/paymentSuccess')">确认支付</view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. </script>
  54. <style lang="scss" scoped>
  55. .card {
  56. width: 100%;
  57. margin-bottom: 20rpx;
  58. padding: 0 20rpx;
  59. .orderInfo {
  60. text-align: center;
  61. .schoolName {
  62. font-size: 28rpx;
  63. color: #ccc;
  64. padding: 40rpx 0 20rpx 0;
  65. }
  66. .price {
  67. font-size: 72rpx;
  68. font-weight: 600;
  69. text.uint {
  70. font-size: 44rpx;
  71. font-weight: 600;
  72. }
  73. }
  74. .num {
  75. font-size: 24rpx;
  76. color: #ADADAD;
  77. }
  78. }
  79. .li {
  80. display: flex;
  81. height: 88rpx;
  82. line-height: 88rpx;
  83. &.border{
  84. border-bottom: 1px solid #F6F7FA;
  85. }
  86. .lab {
  87. color: #ccc;
  88. width: 230rpx;
  89. }
  90. .val {
  91. font-weight: 500;
  92. flex: 1;
  93. text-align: right;
  94. }
  95. }
  96. }
  97. .pay {
  98. .h2 {
  99. font-size: 32rpx;
  100. font-weight: 500;
  101. margin-bottom: 24rpx;
  102. }
  103. .row {
  104. display: flex;
  105. justify-content: space-between;
  106. align-items: center;
  107. height: 88rpx;
  108. &.border{
  109. border-bottom: 1px solid #F6F7FA;
  110. }
  111. .wxIcon {
  112. width: 40rpx;
  113. height: 40rpx;
  114. }
  115. .text {
  116. margin-left: 20rpx;
  117. flex: 1;
  118. text-align: left;
  119. font-size: 28rpx;
  120. color: #333;
  121. }
  122. .icon {
  123. width: 40rpx;
  124. height: 40rpx;
  125. }
  126. }
  127. }
  128. </style>