From 4677982c003e357cff8f2544be44706bf31ea6de Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 05 五月 2022 19:12:19 +0800 Subject: [PATCH] 2022-05-05 --- src/tabviews/custom/components/card/cardcellList/index.jsx | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/components/card/cardcellList/index.jsx b/src/tabviews/custom/components/card/cardcellList/index.jsx index 50fb15b..04bd074 100644 --- a/src/tabviews/custom/components/card/cardcellList/index.jsx +++ b/src/tabviews/custom/components/card/cardcellList/index.jsx @@ -21,6 +21,7 @@ const NewPageButton = asyncComponent(() => import('@/tabviews/zshare/actionList/newpagebutton')) const ChangeUserButton = asyncComponent(() => import('@/tabviews/zshare/actionList/changeuserbutton')) const PrintButton = asyncComponent(() => import('@/tabviews/zshare/actionList/printbutton')) +const FuncMegvii = asyncComponent(() => import('@/tabviews/zshare/actionList/funcMegvii')) const BarCode = asyncElementComponent(() => import('@/components/barcode')) const QrCode = asyncElementComponent(() => import('@/components/qrcode')) const MkProgress = asyncElementComponent(() => import('@/components/mkProgress')) @@ -873,6 +874,21 @@ /> </Col> ) + } else if (card.funcType === 'megvii') { + return ( + <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}> + <FuncMegvii + BID={data.$$BID} + disabled={_disabled} + lineId={data.$$key || ''} + btn={card} + show={card.show} + style={card.style} + setting={cards.setting} + selectedData={_data} + /> + </Col> + ) } } } -- Gitblit v1.8.0