CompletePayment.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <div class="complete-payment">
  3. <div class="apply-mask" @click="emits('completePaymentClose')"></div>
  4. <div class="apply-content">
  5. <div class="slide-line"></div>
  6. <div class="order-title pf600 fs18 fc333333">您是否已完成付款?</div>
  7. <img src="@/assets/img/asset/Bank_transfer_2_.png" alt="" />
  8. <div class="text pf500 fs14 fc333333">
  9. 请确保您已向卖家付款 <br />
  10. 恶意操作不付款可能会被冻结账户
  11. </div>
  12. <div class="sure-btn pf600 fs14 fcFFFFFF">确认</div>
  13. <div class="cancel pf500 fs14 fcDF384C">取消</div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup>
  18. const emits = defineEmits(["completePaymentClose"]);
  19. </script>
  20. <style lang="less" scoped>
  21. .complete-payment {
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. z-index: 1000;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: flex-end;
  29. width: 100%;
  30. min-height: 100vh;
  31. .apply-mask {
  32. position: fixed;
  33. left: 0;
  34. top: 0;
  35. z-index: -1;
  36. width: 100%;
  37. min-height: 100vh;
  38. background: rgba(0, 0, 0, 0.5);
  39. }
  40. .apply-content {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: flex-start;
  44. align-items: center;
  45. width: 375px;
  46. height: 337px;
  47. background: #ffffff;
  48. border-radius: 24px 24px 0px 0px;
  49. .slide-line {
  50. margin-top: 12px;
  51. width: 32px;
  52. height: 4px;
  53. border-radius: 2px;
  54. opacity: 0.4;
  55. background: rgba(0, 0, 0, 0.5);
  56. }
  57. .order-title {
  58. margin-top: 20px;
  59. height: 24px;
  60. line-height: 24px;
  61. }
  62. img {
  63. margin-top: 19px;
  64. width: 72px;
  65. height: 74.5px;
  66. }
  67. .text {
  68. margin-top: 20px;
  69. line-height: 25px;
  70. text-align: center;
  71. }
  72. .sure-btn {
  73. margin-top: 10px;
  74. width: 311px;
  75. height: 40px;
  76. line-height: 40px;
  77. text-align: center;
  78. border-radius: 100px;
  79. background: #df384c;
  80. }
  81. .cancel {
  82. margin-top: 11px;
  83. }
  84. }
  85. }
  86. </style>