diff --git a/src/views/Wallet/CashOut/KYC.vue b/src/views/Wallet/CashOut/KYC.vue index c22ef17..4b0a87d 100644 --- a/src/views/Wallet/CashOut/KYC.vue +++ b/src/views/Wallet/CashOut/KYC.vue @@ -60,14 +60,20 @@ src="/src/assets/icon/addImg.png" alt="" style="display: block; width: 15vw; aspect-ratio: 1/1; object-fit: cover" - @click="triggerFileInput" /> @@ -179,8 +185,6 @@ import { getWithdrawInfoList, addWithdrawInfo, updateWithdrawInfo } from '@/api/ const { t, locale } = useI18n() const router = useRouter() -const fileInputRef = ref(null) - // 监听语言变化并设置文档方向 locale.value && setDocumentDirection(locale.value) @@ -206,14 +210,6 @@ const checkStatus = computed(() => { return applyInfo.value.contactNumber != '' && previewUrls.value.length > 0 }) -// 点击文件选择 -const triggerFileInput = () => { - console.log('触发文件选择') - if (fileInputRef.value) { - fileInputRef.value.click() - } -} - // 处理文件选择(每次选一张) const handleFileChange = (e) => { console.log('=== 文件选择事件开始 ===')