PaymentDialog.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <van-popup
  3. v-model:show="dialogVisible"
  4. round
  5. position="bottom"
  6. :style="{ height: '70%' }"
  7. >
  8. <div class="p-4 flex flex-col h-full">
  9. <!-- Header -->
  10. <div class="flex justify-between items-center mb-8">
  11. <div class="text-gray-400 cursor-pointer" @click="onClose">取消</div>
  12. <div class="text-lg font-medium">下单</div>
  13. <div class="w-8"></div>
  14. </div>
  15. <!-- Form -->
  16. <div class="flex-1">
  17. <div class="mb-6">
  18. <van-field
  19. v-model.trim="phone"
  20. type="tel"
  21. maxlength="11"
  22. placeholder="请输入您的手机号"
  23. :border="false"
  24. class="!bg-gray-100 rounded-lg"
  25. />
  26. </div>
  27. <div class="mb-6 flex gap-2">
  28. <van-field
  29. v-model.trim="verificationCode"
  30. placeholder="请输入验证码"
  31. :border="false"
  32. class="!bg-gray-100 rounded-lg flex-1"
  33. />
  34. <van-button
  35. type="primary"
  36. @click="handleGetCode"
  37. :disabled="countdown > 0"
  38. class="!bg-[#7B68EE] !border-none min-w-[100px]"
  39. >
  40. {{ countdown > 0 ? `${countdown}秒后重试` : "获取验证码" }}
  41. </van-button>
  42. </div>
  43. <div class="text-orange-400 text-sm mb-8">
  44. 会员权益将会绑定到该手机号
  45. </div>
  46. </div>
  47. <!-- Bottom Payment Button -->
  48. <div class="mt-auto">
  49. <van-button
  50. block
  51. class="!bg-[#7AB02E] !border-none h-12 rounded-lg"
  52. @click="handleConfirm"
  53. >
  54. <div class="flex items-center justify-center">
  55. <img
  56. src="data:image/svg+xml,%3Csvg t='1709711834444' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='4180' width='32' height='32'%3E%3Cpath d='M664.250054 368.541681c10.015098 0 19.892049 0.732687 29.67281 1.795606-26.647917-122.810047-159.358451-214.077703-310.826188-214.077703-169.353083 0-308.085774 114.232694-308.085774 259.274068 0 83.708494 46.165436 152.460344 123.281791 205.78483l-30.80868 91.730191 107.688651-53.455469c38.558178 7.53665 69.459978 15.308661 107.924012 15.308661 9.66308 0 19.230993-0.470721 28.752858-1.225921-6.025227-20.36584-9.521864-41.723264-9.521864-63.862493C402.328693 476.632491 517.908058 368.541681 664.250054 368.541681zM498.62897 285.87389c23.200398 0 38.557154 15.120372 38.557154 38.061874 0 22.846334-15.356756 38.156018-38.557154 38.156018-23.107277 0-46.260603-15.309684-46.260603-38.156018C452.368366 300.994262 475.522716 285.87389 498.62897 285.87389zM283.016307 362.090758c-23.107277 0-46.402843-15.309684-46.402843-38.156018 0-22.941502 23.295566-38.061874 46.402843-38.061874 23.081695 0 38.46301 15.120372 38.46301 38.061874C321.479317 346.782098 306.098002 362.090758 283.016307 362.090758zM945.448458 606.151333c0-121.888048-123.258255-221.236753-261.683954-221.236753-146.57838 0-262.015505 99.348706-262.015505 221.236753 0 122.06508 115.437126 221.200938 262.015505 221.200938 30.66644 0 61.617359-7.609305 92.423993-15.262612l84.513836 45.786813-23.178909-76.17082C899.379213 735.776599 945.448458 674.90216 945.448458 606.151333zM598.803483 567.994292c-15.332197 0-30.807656-15.096836-30.807656-30.501688 0-15.190981 15.47546-30.477129 30.807656-30.477129 23.295566 0 38.558178 15.286148 38.558178 30.477129C637.361661 552.897456 622.099049 567.994292 598.803483 567.994292zM768.25071 567.994292c-15.213493 0-30.594809-15.096836-30.594809-30.501688 0-15.190981 15.381316-30.477129 30.594809-30.477129 23.107277 0 38.558178 15.286148 38.558178 30.477129C806.808888 552.897456 791.357987 567.994292 768.25071 567.994292z' fill='white' p-id='4181'%3E%3C/path%3E%3C/svg%3E"
  57. class="w-6 h-6 mr-2"
  58. alt="WeChat Pay"
  59. />
  60. <span class="text-white">微信支付</span>
  61. </div>
  62. </van-button>
  63. </div>
  64. </div>
  65. </van-popup>
  66. </template>
  67. <script setup>
  68. import { ref, computed } from "vue";
  69. import { showToast } from "vant";
  70. import { useRoute, useRouter } from "vue-router";
  71. import { request } from "@/utils";
  72. const [route, router] = [useRoute(), useRouter()];
  73. const props = defineProps({
  74. show: Boolean,
  75. onClose: Function,
  76. onConfirm: Function,
  77. });
  78. const emit = defineEmits(["update:show"]);
  79. const phone = ref("17612888982");
  80. const verificationCode = ref("8888");
  81. const countdown = ref(0);
  82. const timer = ref(null);
  83. // 使用computed处理show
  84. const dialogVisible = computed({
  85. get: () => props.show,
  86. set: (value) => emit("update:show", value),
  87. });
  88. const startCountdown = () => {
  89. countdown.value = 60;
  90. timer.value = setInterval(() => {
  91. countdown.value--;
  92. if (countdown.value <= 0) {
  93. clearInterval(timer.value);
  94. timer.value = null;
  95. }
  96. }, 1000);
  97. };
  98. const sendCode = async () => {
  99. return await request.post(`/archivesService/member/promotionGoods/sms/send`, {
  100. promotionGoodsId: route.query.promotionGoodsId,
  101. mobile: phone.value,
  102. });
  103. };
  104. const handleGetCode = async () => {
  105. if (!phone.value) {
  106. showToast("请输入手机号");
  107. return;
  108. }
  109. // if (!/^1[3-9]\d{9}$/.test(phone.value)) {
  110. // showToast("请输入正确的手机号");
  111. // return;
  112. // }
  113. await sendCode();
  114. // 开始倒计时
  115. startCountdown();
  116. // 这里添加获取验证码的逻辑
  117. showToast("验证码已发送");
  118. };
  119. const handleConfirm = async () => {
  120. if (!phone.value || !verificationCode.value) {
  121. showToast("请填写完整信息");
  122. return;
  123. }
  124. props.onConfirm?.(phone.value, verificationCode.value);
  125. };
  126. </script>
  127. <style scoped>
  128. :deep(.van-field) {
  129. background-color: #f5f5f5 !important;
  130. }
  131. :deep(.van-field__control) {
  132. color: #333;
  133. }
  134. :deep(.van-popup) {
  135. background-color: white;
  136. }
  137. </style>