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.

cardAmountDetail.vue 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <!-- 补卡额申请 -->
  3. <view class="wrapper">
  4. <!-- 背景颜色充满屏 -->
  5. <view class="bg-color"></view>
  6. <view class="card-info">
  7. <view class="info-wrap">
  8. <view class="info-left">
  9. <view class="info-left-text">
  10. <text class="label">流水单号:</text>
  11. <text class="val">MA89200010</text>
  12. </view>
  13. <view>
  14. <text class="label">ETC卡号:</text>
  15. <text class="val">0110200001</text>
  16. </view>
  17. </view>
  18. <view class="info-right">
  19. <view class="price-label">
  20. 交易金额
  21. </view>
  22. <view class="price-val">
  23. <u-icon name="rmb"></u-icon>
  24. <text class="price-val-text">104.00</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="card-text-wrap">
  29. <view class="text-box">
  30. <text class="name-text">贵阳西</text>
  31. <text class="time-text">12:09</text>
  32. <text class="date-text">2023-01-08</text>
  33. </view>
  34. <view class="arrow-wrap">
  35. <text class="arrow-text">粤A12345</text>
  36. <image class="d-img" :src="`${$imgUrl}order/arrowCard.png`"></image>
  37. </view>
  38. <view class="text-box">
  39. <text class="name-text">XXXXX</text>
  40. <text class="time-text">18:52</text>
  41. <text class="date-text">2023-01-08</text>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="labe-wrap">
  46. <view class="detail-box">
  47. <view class="detail-header">
  48. <text class="detail-name">售后单号:GZ92400001</text>
  49. <text class="d-green-text">审核中</text>
  50. </view>
  51. <view class="detail-content">
  52. <view class="d-row">
  53. <text class="d-label">业务类型:</text>
  54. <text class="d-value">补卡额退费</text>
  55. </view>
  56. <view class="d-row">
  57. <text class="d-label">补卡额:</text>
  58. <text class="d-value d-green">12.00</text>
  59. </view>
  60. <view class="d-row">
  61. <text class="d-label">创建时间:</text>
  62. <text class="d-value">2023-01-10 12:09:00</text>
  63. </view>
  64. <view class="d-row">
  65. <text class="d-label">完成时间:</text>
  66. <text class="d-value">2023-01-10 12:09:00</text>
  67. </view>
  68. <view class="d-row">
  69. <text class="d-label">不通过原因:</text>
  70. <text class="d-value">XXXXXXXXXXXXXXXXXXXX</text>
  71. </view>
  72. <view class="d-row">
  73. <text class="d-label">业务员:</text>
  74. <text class="d-value">XXXXXXXX</text>
  75. </view>
  76. <view class="d-row">
  77. <!-- 上传凭证图的列表 -->
  78. <image :src="`${$imgUrl}order/icon-star-green.png`" mode="" class="img-item"></image>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </template>
  85. <script lang="ts"></script>
  86. <style lang="scss" scoped>
  87. .bg-color {
  88. position: fixed;
  89. top: 0;
  90. left: 0;
  91. right: 0;
  92. bottom: 0;
  93. background: #EEF7F7;
  94. z-index: -1;
  95. }
  96. .wrapper {
  97. padding-bottom: 20rpx;
  98. }
  99. .card-info {
  100. background: #FFFFFF;
  101. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  102. border-radius: 20rpx;
  103. margin: 30rpx;
  104. .info-wrap {
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. padding: 30px;
  109. border-bottom: 1px solid #dcdcdc;
  110. .info-left-text {
  111. margin-bottom: 39rpx;
  112. }
  113. .label {
  114. color: #999999;
  115. font-size: 26rpx;
  116. font-weight: 400;
  117. }
  118. .val {
  119. color: #333333;
  120. font-size: 26rpx;
  121. font-weight: 400;
  122. }
  123. .price-label {
  124. color: #999999;
  125. font-size: 24rpx;
  126. font-weight: 400;
  127. margin-bottom: 22rpx;
  128. text-align: center;
  129. }
  130. .price-val-text {
  131. font-size: 36rpx;
  132. font-weight: 700;
  133. color: #333333;
  134. margin-left: 9rpx;
  135. }
  136. .price-val {
  137. font-size: 26rpx;
  138. color: #333333;
  139. }
  140. }
  141. .card-text-wrap {
  142. display: flex;
  143. justify-content: space-between;
  144. align-items: center;
  145. padding: 39rpx 60rpx;
  146. .text-box {
  147. display: flex;
  148. flex-direction: column;
  149. align-items: center;
  150. .name-text {
  151. font-size: 30rpx;
  152. font-weight: 400;
  153. color: #333333;
  154. }
  155. .time-text {
  156. font-size: 30rpx;
  157. color: #333333;
  158. font-weight: 400;
  159. margin-top: 8rpx;
  160. }
  161. .date-text {
  162. font-size: 24rpx;
  163. color: #999999;
  164. font-weight: 400;
  165. margin-top: 8rpx;
  166. }
  167. }
  168. .arrow-wrap {
  169. display: flex;
  170. flex-direction: column;
  171. align-items: center;
  172. .d-img {
  173. width: 186rpx;
  174. height: 12rpx;
  175. }
  176. .arrow-text {
  177. color: #666666;
  178. font-size: 26rpx;
  179. }
  180. }
  181. }
  182. }
  183. .labe-wrap {
  184. background: #FFFFFF;
  185. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  186. border-radius: 20rpx;
  187. margin: 30rpx 30rpx 0 30rpx;
  188. .detail-header {
  189. display: flex;
  190. border-bottom: 1rpx solid #DCDCDC;
  191. padding: 30rpx;
  192. align-items: center;
  193. justify-content: space-between;
  194. .detail-name {
  195. font-size: 30rpx;
  196. font-weight: 400;
  197. color: #333333;
  198. margin-left: 12rpx;
  199. }
  200. .d-green-text {
  201. height: 26rpx;
  202. color: #00B38B;
  203. }
  204. }
  205. .detail-content {
  206. padding: 28rpx 29rpx 10rpx 29rpx;
  207. }
  208. .d-row {
  209. display: flex;
  210. margin-bottom: 32rpx;
  211. .d-label {
  212. font-size: 26rpx;
  213. width: 155rpx;
  214. color: #999999;
  215. text-align: right;
  216. }
  217. .d-value {
  218. font-size: 26rpx;
  219. color: #333333;
  220. flex: 1;
  221. overflow: hidden;
  222. }
  223. .d-green {
  224. color:#00B38B;
  225. }
  226. .img-item {
  227. width: 161rpx;
  228. height: 161rpx;
  229. }
  230. }
  231. }
  232. </style>