From 8a257b3b021fd72066ce1d8b7d256836fca4435c Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Wed, 12 Nov 2025 14:16:43 +0800 Subject: [PATCH] =?UTF-8?q?test(KYC=E9=A1=B5):=20=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E4=B8=8A=E4=BC=A0=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Wallet/CashOut/KYC.vue | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) 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('=== 文件选择事件开始 ===')