niucloud/web/composables/useCaptcha.ts
wangchen147 026d5fa334 0.0.9
2024-01-25 17:48:14 +08:00

29 lines
637 B
TypeScript

import { getCaptcha } from '@/app/api/system'
interface formData {
captcha_code: string,
captcha_key: string
}
export function useCaptcha(formData: formData) {
const image = ref('')
const refresh = async () => {
try {
await getCaptcha().then((res: any) => {
if (res.code == 1) {
formData.captcha_key = res.data.captcha_key
formData.captcha_code = ''
image.value = res.data.img.replace(/\r\n/g, '')
}
})
} catch (e) {
}
}
return {
image,
refresh
}
}