From ca49ec2690b7b6c7b39a208064d10bce495767b3 Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Mon, 05 Jun 2023 20:36:01 +0800
Subject: [PATCH] 优化数值调节阀组件操作体验

---
 forms/checkbox/CCheckBox.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/forms/checkbox/CCheckBox.vue b/forms/checkbox/CCheckBox.vue
index 0c0dc6b..4c5ed64 100644
--- a/forms/checkbox/CCheckBox.vue
+++ b/forms/checkbox/CCheckBox.vue
@@ -89,7 +89,9 @@
                 .find('.at-input__container')
                 .prepend(this.$refs.check.$el);
         } else if (process.env.TARO_ENV === 'weapp') {
-            $(this.$refs.input.$el).find('.at-input__container').append(this.$refs.check);
+            $(this.$refs.input.$el)
+                .find('.at-input__container')
+                .append(this.$refs.check.$el);
         }
     },
 };

--
Gitblit v1.9.1