From 8acfcd6e349ef2d1b797a7483940a2f3f2dfcfe6 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期六, 03 二月 2024 17:49:25 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/zshare/actionList/index.jsx | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/tabviews/zshare/actionList/index.jsx b/src/tabviews/zshare/actionList/index.jsx index 7d59c20..3993d7e 100644 --- a/src/tabviews/zshare/actionList/index.jsx +++ b/src/tabviews/zshare/actionList/index.jsx @@ -19,6 +19,7 @@ const FuncZip = asyncComponent(() => import('./funczip')) const EditLine = asyncComponent(() => import('./editLine')) const ExportPdf = asyncComponent(() => import('./exportPdf')) +const ShareLink = asyncComponent(() => import('./shareLink')) class ActionList extends Component { static propTpyes = { @@ -196,6 +197,15 @@ btn={item} /> ) + } else if (item.funcType === 'shareLink') { + return ( + <ShareLink + key={item.uuid} + BID={BID} + btn={item} + selectedData={selectedData} + /> + ) } else if (item.funcType === 'addline' || item.funcType === 'delline') { return ( <EditLine -- Gitblit v1.8.0