From 03a22ec6f9ad7303d10b4c65bb5bc6fa5cbd448a Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期六, 22 十月 2022 23:21:42 +0800
Subject: [PATCH] 2022-10-22

---
 src/tabviews/custom/components/share/tabtransfer/index.jsx |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/tabviews/custom/components/share/tabtransfer/index.jsx b/src/tabviews/custom/components/share/tabtransfer/index.jsx
index cf08b7d..8035acb 100644
--- a/src/tabviews/custom/components/share/tabtransfer/index.jsx
+++ b/src/tabviews/custom/components/share/tabtransfer/index.jsx
@@ -36,6 +36,7 @@
 const Balcony = asyncComponent(() => import('@/tabviews/custom/components/card/balcony'))
 const TimeLine = asyncComponent(() => import('@/tabviews/custom/components/timeline/normal-timeline'))
 const CustomChart = asyncComponent(() => import('@/tabviews/custom/components/chart/custom-chart'))
+const MkBaseTable = asyncComponent(() => import('@/tabviews/custom/components/table/base-table'))
 
 class TabTransfer extends Component {
   static propTpyes = {
@@ -244,6 +245,12 @@
             <NormalTable config={item} data={data} mainSearch={mainSearch}/>
           </Col>
         )
+      } else if (item.type === 'table' && item.subtype === 'basetable') {
+        return (
+          <Col span={item.width} key={item.uuid}>
+            <MkBaseTable config={item} data={data} mainSearch={mainSearch}/>
+          </Col>
+        )
       } else if (item.type === 'table' && item.subtype === 'editable') {
         return (
           <Col span={item.width} key={item.uuid}>

--
Gitblit v1.8.0