gaoluyang
2026-06-29 27cd042df9aca0383a49f3514bc21958dd890912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<script setup lang="ts">
/**
 * Verify 验证码组件
 * @description 分发验证码使用
 */
import type { VerificationProps } from './typing';
 
import { defineAsyncComponent, markRaw, ref, toRefs, watchEffect } from 'vue';
 
import { IconifyIcon } from '../../../../../../icons/src';
 
import './verify.css';
 
defineOptions({
  name: 'Verification',
});
 
const props = withDefaults(defineProps<VerificationProps>(), {
  arith: 0,
  barSize: () => ({
    height: '40px',
    width: '310px',
  }),
  blockSize: () => ({
    height: '50px',
    width: '50px',
  }),
  captchaType: 'blockPuzzle',
  explain: '',
  figure: 0,
  imgSize: () => ({
    height: '155px',
    width: '310px',
  }),
  mode: 'fixed',
  space: 5,
});
 
const emit = defineEmits(['onSuccess', 'onError', 'onClose', 'onReady']);
 
const VerifyPoints = defineAsyncComponent(() => import('./verify-points.vue'));
const VerifySlide = defineAsyncComponent(() => import('./verify-slide.vue'));
 
const { captchaType, mode, checkCaptchaApi, getCaptchaApi } = toRefs(props);
const verifyType = ref();
const componentType = ref();
 
const instance = ref<InstanceType<typeof VerifyPoints | typeof VerifySlide>>();
 
const showBox = ref(false);
 
/**
 * refresh
 * @description 刷新
 */
const refresh = () => {
  if (instance.value && instance.value.refresh) instance.value.refresh();
};
 
const show = () => {
  if (mode.value === 'pop') showBox.value = true;
};
 
const onError = (proxy: any) => {
  emit('onError', proxy);
  refresh();
};
 
const onReady = (proxy: any) => {
  emit('onReady', proxy);
  refresh();
};
 
const onClose = () => {
  emit('onClose');
  showBox.value = false;
};
 
const onSuccess = (data: any) => {
  emit('onSuccess', data);
};
 
watchEffect(() => {
  switch (captchaType.value) {
    case 'blockPuzzle': {
      verifyType.value = '2';
      componentType.value = markRaw(VerifySlide);
      break;
    }
    case 'clickWord': {
      verifyType.value = '';
      componentType.value = markRaw(VerifyPoints);
      break;
    }
  }
});
 
defineExpose({
  onClose,
  onError,
  onReady,
  onSuccess,
  show,
  refresh,
});
</script>
 
<template>
  <div v-show="showBox">
    <div
      :class="mode === 'pop' ? 'verifybox' : ''"
      :style="{ 'max-width': `${parseInt(imgSize.width) + 20}px` }"
    >
      <div v-if="mode === 'pop'" class="verifybox-top">
        {{ $t('ui.captcha.title') }}
        <span class="verifybox-close" @click="onClose">
          <IconifyIcon icon="lucide:x" class="size-5" />
        </span>
      </div>
      <div
        :style="{ padding: mode === 'pop' ? '10px' : '0' }"
        class="verifybox-bottom"
      >
        <component
          :is="componentType"
          v-if="componentType"
          ref="instance"
          :arith="arith"
          :bar-size="barSize"
          :block-size="blockSize"
          :captcha-type="captchaType"
          :check-captcha-api="checkCaptchaApi"
          :explain="explain"
          :figure="figure"
          :get-captcha-api="getCaptchaApi"
          :img-size="imgSize"
          :mode="mode"
          :space="space"
          :type="verifyType"
          @on-close="onClose"
          @on-error="onError"
          @on-ready="onReady"
          @on-success="onSuccess"
        />
      </div>
    </div>
  </div>
</template>