From ec26d32d8e641dc02f8dc5ec1ffe2a585b071e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=87=E5=A4=A9?= Date: Thu, 15 Apr 2021 18:49:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8D=95=E9=80=89/=E5=A4=8D?= =?UTF-8?q?=E9=80=89=E7=9A=84=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/form/radio.wc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/form/radio.wc b/src/form/radio.wc index 4efc2a7..a8d6256 100644 --- a/src/form/radio.wc +++ b/src/form/radio.wc @@ -108,11 +108,9 @@ export default class RadioGroup { if (k === 'readonly') { k = 'readOnly' } - console.log('变了', k, val, typeof val) Array.from(this.children).forEach(it => { if (it.tagName === 'WC-RADIO' && it.root) { it[k] = val !== null - console.log('-----', k, it[k], val !== null, '-----') } }) break