From 1ed039c656453814a2357671fa81bdb4ad0306fb Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 07 七月 2023 09:25:37 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/custom/index.jsx | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/index.jsx b/src/tabviews/custom/index.jsx index 900ef50..be64acf 100644 --- a/src/tabviews/custom/index.jsx +++ b/src/tabviews/custom/index.jsx @@ -44,6 +44,7 @@ const Voucher = asyncComponent(() => import('./components/module/voucher')) const Account = asyncComponent(() => import('./components/module/account')) const Iframe = asyncComponent(() => import('./components/iframe')) +const Calendar = asyncComponent(() => import('./components/calendar')) const DebugTable = asyncComponent(() => import('@/tabviews/debugtable')) const TableNodes = asyncComponent(() => import('@/tabviews/zshare/tablenodes')) const MkInterfaces = asyncComponent(() => import('@/tabviews/custom/components/interfaces')) @@ -1422,6 +1423,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 === 'code') { return ( <Col span={item.width} style={style} key={item.uuid}> -- Gitblit v1.8.0