From 18a8f64733b1e557143af4e3d111029dd2886a17 Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Tue, 04 Apr 2023 10:48:14 +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