From 911e3dba0594c172b9e140e9830230aae915221f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=A6=E5=A5=94=5F96?= <1664886636@qq.com> Date: Fri, 15 Sep 2023 09:37:08 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dvan-switch=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=9C=A8form=E7=BB=84=E4=BB=B6=E4=B8=8B=E8=BF=94=E5=9B=9Enull?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 武奔_96 <1664886636@qq.com> --- lib/switch/index.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lib/switch/index.js b/lib/switch/index.js index 1d2317f9..b8336def 100644 --- a/lib/switch/index.js +++ b/lib/switch/index.js @@ -5,7 +5,10 @@ var component_1 = require("../common/component"); field: true, classes: ['node-class'], props: { - checked: null, + checked: { + type: null, + observer: 'updateValue', + }, loading: Boolean, disabled: Boolean, activeColor: String, @@ -24,6 +27,14 @@ var component_1 = require("../common/component"); }, }, methods: { + updateValue(checked) { + var _a = this.data, activeValue = _a.activeValue, inactiveValue = _a.inactiveValue; + var _checked = checked === activeValue; + var value = _checked ? activeValue : inactiveValue; + this.setData({ + value + }) + }, onClick: function () { var _a = this.data, activeValue = _a.activeValue, inactiveValue = _a.inactiveValue, disabled = _a.disabled, loading = _a.loading; if (disabled || loading) {