From fa8f1b1320fd2ad21884ccd6df792bf88270e2a1 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 06 七月 2023 18:13:51 +0800 Subject: [PATCH] 2023-07-06 --- src/tabviews/custom/components/group/normal-group/index.jsx | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/components/group/normal-group/index.jsx b/src/tabviews/custom/components/group/normal-group/index.jsx index 407241a..0b147bf 100644 --- a/src/tabviews/custom/components/group/normal-group/index.jsx +++ b/src/tabviews/custom/components/group/normal-group/index.jsx @@ -36,6 +36,7 @@ const CustomChart = asyncComponent(() => import('@/tabviews/custom/components/chart/custom-chart')) const AntvG6 = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-G6')) const AntvX6 = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-X6')) +const Calendar = asyncComponent(() => import('@/tabviews/custom/components/calendar')) class TabTransfer extends Component { static propTpyes = { @@ -255,6 +256,12 @@ <NormalTree config={item} data={data} mainSearch={mainSearch}/> </Col> ) + } else if (item.type === 'calendar') { + return ( + <Col span={item.width} style={style} key={item.uuid}> + <Calendar config={item} mainSearch={mainSearch}/> + </Col> + ) } else if (item.type === 'editor') { return ( <Col span={item.width} style={style} key={item.uuid}> -- Gitblit v1.8.0