From ddfe7a90d426f342b585865bfdef8aaf2c2adeaf Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Wed, 26 Feb 2025 15:45:48 +0800 Subject: [PATCH] 添加知识库文档,项目介绍 --- forms/switch/CSwitch.vue | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/forms/switch/CSwitch.vue b/forms/switch/CSwitch.vue index a5620c1..9d459d9 100644 --- a/forms/switch/CSwitch.vue +++ b/forms/switch/CSwitch.vue @@ -4,10 +4,11 @@ */ <template> - <view :class="['c-switch', className]"> + <view :class="['c-switch', className, readOnly?'read-only':'']"> <AtSwitch :title="itemRes.label" :checked="itemRes.formData[itemRes.name]" + :disabled="readOnly" :onChange="evt=>itemRes.onChange(evt)" /> </view> @@ -21,7 +22,13 @@ name: 'CSwitch', components: { AtSwitch }, props: { + // 表单数据资源(表单组件内部机制专用) itemRes: Object, + // 只读模式 + readOnly: { + type: Boolean, + default: false, + }, }, data() { return {}; -- Gitblit v1.9.1