From fd1a4a42bbef3e9c02e0fee346b49401ec0fe23f Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 29 七月 2024 17:00:15 +0800 Subject: [PATCH] 2024-07-29 --- src/tabviews/custom/components/share/tabtransfer/index.jsx | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/tabviews/custom/components/share/tabtransfer/index.jsx b/src/tabviews/custom/components/share/tabtransfer/index.jsx index 2523935..56a17af 100644 --- a/src/tabviews/custom/components/share/tabtransfer/index.jsx +++ b/src/tabviews/custom/components/share/tabtransfer/index.jsx @@ -294,9 +294,7 @@ ) } else if (item.type === 'group' && item.subtype === 'normalgroup') { return ( - <Col span={item.width} style={style} key={item.uuid}> - <NormalGroup config={item}/> - </Col> + <NormalGroup config={item} style={style} key={item.uuid}/> ) } else if (item.type === 'form' && item.subtype === 'simpleform') { return ( @@ -388,7 +386,7 @@ } return ( - <Row className="component-wrap" id={'anchor' + config.uuid} gutter={8}>{this.getComponents(config.components)}</Row> + <Row className="component-wrap" id={'anchor' + config.uuid}>{this.getComponents(config.components)}</Row> ) } } -- Gitblit v1.8.0