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.

преди 2 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <nav-bar title="支付确认"></nav-bar>
  3. <view class="oderPage">
  4. <view class="details">
  5. <view class="header">
  6. <image :src="`${$imgUrl}user/icon-ETC.png`" class="icon"></image>
  7. <text>GZ92400001</text>
  8. </view>
  9. <view class="row">
  10. <view class="">
  11. 补缴金额
  12. </view>
  13. <text>
  14. <text class="icon">¥</text>
  15. 99.00
  16. </text>
  17. </view>
  18. <view class="footer">
  19. <view class="">
  20. 卡账金额:
  21. </view>
  22. <text>38.00</text>
  23. </view>
  24. </view>
  25. <button class="submit">去支付</button>
  26. </view>
  27. </template>
  28. <script setup lang="ts">
  29. import {
  30. ref,
  31. reactive
  32. } from "vue";
  33. const reason = ref('')
  34. // 单选
  35. const radioChange = (n) => {
  36. console.log('radioChange', n);
  37. }
  38. </script>
  39. <style>
  40. page {
  41. width: 100%;
  42. height: 100%;
  43. display: flex;
  44. flex-direction: column;
  45. background-color: #F3F3F3;
  46. }
  47. </style>
  48. <style lang="scss" scoped>
  49. .oderPage {
  50. flex: 1;
  51. width: 100%;
  52. background-color: #EEF7F7;
  53. padding: 20rpx;
  54. .details {
  55. width: 100%;
  56. height: 405rpx;
  57. border-radius: 20rpx;
  58. padding: 30rpx;
  59. background: #FFFFFF;
  60. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  61. border-radius: 20rpx;
  62. .header {
  63. align-items: center;
  64. display: flex;
  65. padding-bottom: 30rpx;
  66. border-bottom: 1px solid #DCDCDC;
  67. image {
  68. width: 50rpx;
  69. height: 45rpx;
  70. }
  71. text {
  72. font-size: 30rpx;
  73. margin-left: 20rpx;
  74. font-weight: 600;
  75. }
  76. }
  77. .row {
  78. display: flex;
  79. align-items: center;
  80. flex-direction: column;
  81. height: 220rpx;
  82. justify-content: space-evenly;
  83. view {
  84. font-size: 26rpx;
  85. font-family: Noto Sans S Chinese;
  86. font-weight: 400;
  87. color: #999999;
  88. line-height: 30rpx;
  89. }
  90. text {
  91. font-size: 60rpx;
  92. font-family: Noto Sans S Chinese;
  93. font-weight: 400;
  94. color: #333333;
  95. line-height: 30rpx;
  96. .icon {
  97. font-size: 27rpx;
  98. font-family: Noto Sans S Chinese;
  99. font-weight: 400;
  100. color:black;
  101. line-height: 30rpx;
  102. }
  103. }
  104. }
  105. .footer {
  106. display: flex;
  107. margin: 20rpx 0;
  108. font-size: 26rpx;
  109. font-family: Noto Sans S Chinese;
  110. font-weight: 400;
  111. color: #333333;
  112. line-height: 30rpx;
  113. view {
  114. font-size: 26rpx;
  115. font-family: Noto Sans S Chinese;
  116. font-weight: 400;
  117. color: #999999;
  118. line-height: 30rpx;
  119. }
  120. }
  121. }
  122. .submit{
  123. margin-top: 60rpx;
  124. height: 80rpx;
  125. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  126. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223,223,223,0.5);
  127. border-radius: 40rpx;
  128. font-size: 32rpx;
  129. font-family: Microsoft YaHei;
  130. font-weight: 400;
  131. color: #FFFFFF;
  132. line-height: 80rpx;
  133. }
  134. }
  135. </style>