From 88756147643a1d4ffb840797b96ea44462b0551d Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 12 七月 2022 17:19:26 +0800 Subject: [PATCH] 2022-07-12 --- src/views/mobdesign/index.jsx | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/views/mobdesign/index.jsx b/src/views/mobdesign/index.jsx index d8c07f0..0e2bb3a 100644 --- a/src/views/mobdesign/index.jsx +++ b/src/views/mobdesign/index.jsx @@ -1010,12 +1010,14 @@ } }) } else if (item.type === 'form') { - m.children = item.subcards.map(m => { - return { - key: m.uuid, - title: m.setting.title - } - }) + if (item.subtype !== 'simpleform') { + m.children = item.subcards.map(m => { + return { + key: m.uuid, + title: m.setting.title + } + }) + } } else if (item.type === 'table' && item.subtype === 'normaltable') { item.action && item.action.forEach(btn => { if (btn.hidden === 'true') return -- Gitblit v1.8.0