All.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div class="order-all">
  3. <div class="order-item">
  4. <div class="user-info">
  5. <div class="info-left">
  6. <div class="info-shangjia">
  7. <img src="@/assets/img/index/user/default-head.png" alt="" />
  8. <div class="pf500 fs14 fc2C3131">商家昵称</div>
  9. <div class="vip pf500 fs10 fcDF384C">V2</div>
  10. </div>
  11. <div class="number pf400 fs10 fc999999">成交量 12550 · 98.95% 成交率</div>
  12. </div>
  13. <div class="info-right pf500 fs12 fcFFFFFF">待放行</div>
  14. </div>
  15. <div class="pay-way pf500 fs12 fcA8A8A8">
  16. <div>付款方式</div>
  17. <div class="way-right">
  18. <div class="color"></div>
  19. 银行卡
  20. </div>
  21. </div>
  22. <div class="order-number pf500 fs12 fcA8A8A8">
  23. <div>订单号</div>
  24. <div class="number-right">
  25. 2508050505052008502060
  26. <img src="@/assets/icon/index/CopySimple.svg" alt="" />
  27. </div>
  28. </div>
  29. <div class="goods-info">
  30. <div class="info-item">
  31. <div class="item-top pf500 fs12 fcA8A8A8">购买单价</div>
  32. <div class="item-bottom pf500 fs12 fc2C3131">6.95 USDT</div>
  33. </div>
  34. <div class="info-item">
  35. <div class="item-top pf500 fs12 fcA8A8A8">购买数量</div>
  36. <div class="item-bottom pf500 fs12 fc2C3131">0.215 USDT</div>
  37. </div>
  38. <div class="info-item">
  39. <div class="item-top pf500 fs12 fcA8A8A8">购买金额</div>
  40. <div class="item-bottom pf500 fs12 fc2C3131">1250 CNY</div>
  41. </div>
  42. </div>
  43. <div class="order-func pf500 fs16 fcFFFFFF">
  44. <div class="kefu">联系客服</div>
  45. <div class="order">取消订单</div>
  46. </div>
  47. </div>
  48. </div>
  49. </template>
  50. <script setup></script>
  51. <style lang="less" scoped>
  52. .order-all {
  53. margin: 0 auto;
  54. margin-top: 15px;
  55. padding: 15px 10px;
  56. width: 345px;
  57. border: 1px solid #ebebeb;
  58. border-radius: 8px;
  59. box-sizing: border-box;
  60. .user-info {
  61. display: flex;
  62. flex-direction: row;
  63. justify-content: space-between;
  64. align-items: center;
  65. .info-left {
  66. .info-shangjia {
  67. display: flex;
  68. flex-direction: row;
  69. justify-content: flex-start;
  70. align-items: center;
  71. img {
  72. margin-right: 4px;
  73. width: 24px;
  74. height: 24px;
  75. }
  76. .vip {
  77. margin-left: 4px;
  78. width: 18px;
  79. height: 15px;
  80. line-height: 15px;
  81. text-align: center;
  82. border-radius: 3px;
  83. background: #df384c1a;
  84. }
  85. }
  86. .number {
  87. margin-top: 4px;
  88. }
  89. }
  90. .info-right {
  91. width: 76px;
  92. height: 24px;
  93. line-height: 24px;
  94. text-align: center;
  95. border-radius: 5px;
  96. background: #df384c;
  97. }
  98. }
  99. .pay-way {
  100. display: flex;
  101. flex-direction: row;
  102. justify-content: space-between;
  103. align-items: center;
  104. margin-top: 7px;
  105. height: 18px;
  106. .way-right {
  107. display: flex;
  108. flex-direction: row;
  109. justify-content: flex-start;
  110. align-items: center;
  111. }
  112. .color {
  113. margin-right: 4px;
  114. width: 3px;
  115. height: 10px;
  116. border-radius: 2px;
  117. background: #df384c;
  118. }
  119. }
  120. .order-number {
  121. display: flex;
  122. flex-direction: row;
  123. justify-content: space-between;
  124. align-items: center;
  125. margin-top: 3px;
  126. height: 18px;
  127. .number-right {
  128. display: flex;
  129. flex-direction: row;
  130. justify-content: flex-start;
  131. align-items: center;
  132. img {
  133. margin-left: 4px;
  134. }
  135. }
  136. }
  137. .goods-info {
  138. display: flex;
  139. flex-direction: row;
  140. justify-content: space-between;
  141. margin-top: 3px;
  142. width: 345px;
  143. height: 38px;
  144. .info-item {
  145. display: flex;
  146. flex-direction: column;
  147. justify-content: flex-start;
  148. align-items: center;
  149. width: 30%;
  150. height: 100%;
  151. .item-top {
  152. height: 18px;
  153. line-height: 18px;
  154. }
  155. .item-bottom {
  156. height: 20px;
  157. line-height: 20px;
  158. }
  159. }
  160. }
  161. .order-func {
  162. display: flex;
  163. flex-direction: row;
  164. justify-content: space-between;
  165. margin-top: 10px;
  166. width: 345px;
  167. height: 38px;
  168. .kefu {
  169. width: 150px;
  170. height: 38px;
  171. line-height: 38px;
  172. text-align: center;
  173. border-radius: 6px;
  174. background: #45b26b;
  175. }
  176. .order {
  177. width: 150px;
  178. height: 38px;
  179. line-height: 38px;
  180. text-align: center;
  181. border-radius: 6px;
  182. background: #df384c;
  183. }
  184. }
  185. }
  186. </style>