Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

order-cardQuota-apply.vue 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <template>
  2. <nav-bar title="补卡额申请"></nav-bar>
  3. <view class="cardQuota">
  4. <view class="details">
  5. <view class="head">
  6. <view class="head-row" style="margin-bottom: 30rpx;">
  7. <view class="">
  8. 流水单号:<text style="color: #333333;">MA89200010</text>
  9. </view>
  10. <view>
  11. 交易金额
  12. </view>
  13. </view>
  14. <view class="head-row">
  15. <view class="">
  16. ETC卡号:<text style="color: #333333;">0110200001</text>
  17. </view>
  18. <view class="price">
  19. ¥<text style="font-size: 36rpx;">104</text>.00
  20. </view>
  21. </view>
  22. </view>
  23. <view class="content">
  24. <view class="">
  25. <view>贵阳西</view>
  26. <view>12:09</view>
  27. <text>2023-01-08</text>
  28. </view>
  29. <view class="">
  30. <view>XXXXX</view>
  31. <view>18:52</view>
  32. <text>2023-01-08</text>
  33. </view>
  34. <view class="icon-left">
  35. <text>粤A12345</text>
  36. <image :src="`${$imgUrl}order/arrowCard.png`" mode=""></image>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="uploadbox">
  41. <view class="inputbox">
  42. <view class="input_row">
  43. <text style="color: red;">*</text>补卡金额
  44. </view>
  45. <view class="line">
  46. <u-input v-model="value" :type="type" placeholder-style="font-size:28rpx;" />
  47. </view>
  48. </view>
  49. <view class="inputbox" style="margin-bottom: 30rpx;">
  50. <view class="input_row">
  51. <text style="color: red;">*</text>上传凭证 <text style="font-size: 22rpx;color: #999999">(最多上传3张)</text>
  52. </view>
  53. </view>
  54. <view class="uploadBtn">
  55. <image :src="`${$imgUrl}order/addBtn.png`" mode=""></image>
  56. </view>
  57. </view>
  58. <button class="submit">补卡额申请</button>
  59. </view>
  60. </template>
  61. <script lang="ts" setup>
  62. </script>
  63. <style>
  64. page {
  65. width: 100%;
  66. height: 100%;
  67. }
  68. </style>
  69. <style lang="scss" scoped>
  70. .cardQuota {
  71. width: 100%;
  72. height: 100%;
  73. background-color: #EEF7F7;
  74. padding: 30rpx;
  75. .details {
  76. height: 338rpx;
  77. background: #FFFFFF;
  78. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  79. border-radius: 20rpx;
  80. display: flex;
  81. flex-direction: column;
  82. .head {
  83. border-bottom: 1rpx solid #DCDCDC;
  84. padding: 30rpx;
  85. .head-row {
  86. display: flex;
  87. justify-content: space-between;
  88. view {
  89. font-size: 26rpx;
  90. font-family: Noto Sans S Chinese;
  91. font-weight: 400;
  92. color: #999999;
  93. }
  94. .price {
  95. font-size: 25rpx;
  96. font-family: Noto Sans S Chinese;
  97. font-weight: 400;
  98. color: #333333;
  99. }
  100. }
  101. }
  102. .content {
  103. display: flex;
  104. flex: 1;
  105. justify-content: space-between;
  106. padding: 20rpx 60rpx;
  107. line-height: 45rpx;
  108. position: relative;
  109. view {
  110. text-align: center;
  111. font-size: 30rpx;
  112. font-family: Noto Sans S Chinese;
  113. font-weight: 400;
  114. color: #333333;
  115. }
  116. text {
  117. font-size: 24rpx;
  118. font-family: Noto Sans S Chinese;
  119. font-weight: 400;
  120. color: #999999;
  121. }
  122. .icon-left {
  123. position: absolute;
  124. left: 50%;
  125. transform: translate(-50%);
  126. top: 35rpx;
  127. text {
  128. font-size: 26rpx;
  129. font-family: Noto Sans S Chinese;
  130. font-weight: 400;
  131. color: #666666;
  132. }
  133. image {
  134. width: 186rpx;
  135. height: 12rpx;
  136. display: block;
  137. }
  138. }
  139. }
  140. }
  141. .uploadbox {
  142. margin-top: 30rpx;
  143. height: 450rpx;
  144. background: #FFFFFF;
  145. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  146. border-radius: 20rpx;
  147. padding: 0 30rpx;
  148. padding-top: 70rpx;
  149. .uploadBtn {
  150. width: 161rpx;
  151. height: 161rpx;
  152. background: #F3F3F3;
  153. border: 1px solid #DCDCDC;
  154. border-radius: 6rpx;
  155. position: relative;
  156. image {
  157. width: 74rpx;
  158. height: 74rpx;
  159. position: absolute;
  160. left: 50%;
  161. top: 50%;
  162. transform: translate(-50%, -50%);
  163. }
  164. }
  165. .inputbox {
  166. display: flex;
  167. align-items: center;
  168. margin-bottom: 60rpx;
  169. .input_row {
  170. font-size: 28rpx;
  171. font-family: Noto Sans S Chinese;
  172. font-weight: 400;
  173. }
  174. .line {
  175. text-align: center;
  176. border-bottom: 1rpx solid #DCDCDC;
  177. margin-left: 40rpx;
  178. width: 300rpx;
  179. ::v-deep .u-input {
  180. input {
  181. text-align: center;
  182. font-size: 48rpx;
  183. font-family: Noto Sans S Chinese;
  184. font-weight: 400;
  185. color: #333333;
  186. }
  187. }
  188. }
  189. }
  190. }
  191. .submit {
  192. width: 670rpx;
  193. height: 80rpx;
  194. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  195. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
  196. border-radius: 40rpx;
  197. margin-top: 60rpx;
  198. font-size: 32rpx;
  199. font-family: Microsoft YaHei;
  200. font-weight: 400;
  201. color: #FFFFFF;
  202. line-height: 80rpx;
  203. }
  204. }
  205. </style>