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/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