From a838547dd556c95b091f22e8f4a52252bf405073 Mon Sep 17 00:00:00 2001
From: zhaoxiaoqiang <l287285524@qq.com>
Date: Fri, 05 Aug 2022 00:30:15 +0800
Subject: [PATCH] 111232

---
 src/components/upload/uploadIdCard.vue |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/src/components/upload/uploadIdCard.vue b/src/components/upload/uploadIdCard.vue
index f054905..0a9766c 100644
--- a/src/components/upload/uploadIdCard.vue
+++ b/src/components/upload/uploadIdCard.vue
@@ -317,15 +317,24 @@
     },
     // 选择拍照或者相册选项
     handleMenuSelect(item, index) {
-      console.log(this.$refs.androidInputFileCapture.$el, index);
+      console.log(this.$refs);
+      console.log(this.$refs.androidInputFileCapture);
+      console.log(this.$refs.androidInputFileImage);
+      console.log(document.getElementById('androidInputFileCapture'));
       if (index === 0) {
         // this.$refs.androidInputFileCapture.dispatchEvent(
         //   new MouseEvent("click")
         // );
-        this.$refs.androidInputFileCapture.click();
+         setTimeout(() => {
+          this.$refs.androidInputFileCapture.click();
+         },0)
+       
       } else {
         // this.$refs.androidInputFileImage.dispatchEvent(new MouseEvent("click"));
-        this.$refs.androidInputFileImage.click();
+        setTimeout(() => {
+          this.$refs.androidInputFileImage.click();
+         },0)
+        
       }
       this.selectModel = false;
     },

--
Gitblit v1.8.0