From a67363f1e047b0bce4f1bece7fa010e06bdaf477 Mon Sep 17 00:00:00 2001 From: qiang Date: Thu, 29 Oct 2020 14:41:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20App=20=E7=AB=AF=E5=BB=B6=E8=BF=9F?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E7=84=A6=E7=82=B9=20question/107820?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/view/components/input/index.vue | 14 ++--- src/core/view/components/textarea/index.vue | 48 ++++++--------- .../view/mixins/{base-input.js => field.js} | 61 +++++++++++++++++++ src/core/view/mixins/index.js | 4 +- src/core/view/mixins/keyboard.js | 18 ------ 5 files changed, 84 insertions(+), 61 deletions(-) rename src/core/view/mixins/{base-input.js => field.js} (56%) diff --git a/src/core/view/components/input/index.vue b/src/core/view/components/input/index.vue index 724fc6022..0a5d957a9 100644 --- a/src/core/view/components/input/index.vue +++ b/src/core/view/components/input/index.vue @@ -24,7 +24,6 @@ :type="inputType" :maxlength="maxlength" :step="step" - :autofocus="focus" class="uni-input-input" autocomplete="off" @focus="_onFocus" @@ -50,13 +49,13 @@