fix: 采用弹窗的方式显示验证码,解决验证码在低分辨率下被掩盖的Bug

This commit is contained in:
RockYang
2023-09-05 16:47:40 +08:00
parent 46a551df16
commit bf3f68fa19
11 changed files with 354 additions and 499 deletions

View File

@@ -18,7 +18,7 @@
placeholder="请输入短信验证码"
>
<template #button>
<send-msg-mobile size="small" :mobile="form.mobile"/>
<send-msg size="small" :mobile="form.mobile"/>
</template>
</van-field>
</van-cell-group>
@@ -30,7 +30,7 @@ import {computed, ref} from "vue";
import {httpPost} from "@/utils/http";
import {validateMobile} from "@/utils/validate";
import {showNotify} from "vant";
import SendMsgMobile from "@/components/mobile/SendMsgMobile.vue";
import SendMsg from "@/components/SendMsg.vue";
const props = defineProps({
show: Boolean,