From 365ea069f179ee71a7a8cc7785ccd2d86bd4881c Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期三, 03 二月 2021 18:33:45 +0800
Subject: [PATCH] 2021-02-03

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

diff --git a/src/tabviews/custom/components/share/tabtransfer/index.jsx b/src/tabviews/custom/components/share/tabtransfer/index.jsx
index 5f195b9..01d2693 100644
--- a/src/tabviews/custom/components/share/tabtransfer/index.jsx
+++ b/src/tabviews/custom/components/share/tabtransfer/index.jsx
@@ -14,12 +14,15 @@
 
 // 閫氱敤缁勪欢
 const AntvBarAndLine = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-bar-line'))
-const MainSearch = asyncComponent(() => import('@/tabviews/custom/components/search/main-search'))
+const MainSearch = asyncComponent(() => import('@/tabviews/zshare/topSearch'))
 const AntvPie = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-pie'))
 const AntvTabs = asyncComponent(() => import('@/tabviews/custom/components/tabs/antv-tabs'))
 const DataCard = asyncComponent(() => import('@/tabviews/custom/components/card/data-card'))
 const TableCard = asyncComponent(() => import('@/tabviews/custom/components/card/table-card'))
 const PropCard = asyncComponent(() => import('@/tabviews/custom/components/card/prop-card'))
+const NormalGroup = asyncComponent(() => import('@/tabviews/custom/components/group/normal-group'))
+const BraftEditor = asyncComponent(() => import('@/tabviews/custom/components/editor/braft-editor'))
+const SandBox = asyncComponent(() => import('@/tabviews/custom/components/code/sand-box'))
 
 class TabTransfer extends Component {
   static propTpyes = {
@@ -54,10 +57,10 @@
 
     let params = []
     config.components.forEach(item => {
-      if (item.type === 'tabs') return
+      if (item.type === 'tabs' || item.type === 'group') return
 
       if (!item.setting || item.setting.interType !== 'system') return
-      if (!item.format || (item.subtype === 'propcard' && item.wrap.datatype === 'static')) return
+      if (!item.format) return
 
       if (item.dataName && (!item.pageable || (item.pageable && !item.setting.laypage)) && item.setting.onload === 'true' && item.setting.sync === 'true') {
         let param = this.getDefaultParam(item, _mainSearch)
@@ -77,7 +80,7 @@
   UNSAFE_componentWillReceiveProps(nextProps) {
     const { self } = this.state
     
-    if (!self && !is(fromJS(this.props.mainSearch), fromJS(nextProps.mainSearch))) {
+    if (!self && nextProps.mainSearch && !is(fromJS(this.props.mainSearch), fromJS(nextProps.mainSearch))) {
       this.setState({mainSearch: fromJS(nextProps.mainSearch).toJS()})
     }
   }
@@ -162,11 +165,20 @@
     const { config } = this.props
     let LText_field = []
     let diffUser = false
+    let userName = sessionStorage.getItem('User_Name') || ''
+    let fullName = sessionStorage.getItem('Full_Name') || ''
+
+    if (sessionStorage.getItem('isEditState') === 'true') {
+      userName = sessionStorage.getItem('CloudUserName') || ''
+      fullName = sessionStorage.getItem('CloudFullName') || ''
+    }
+    
     let _LText = params.map((item, index) => {
       let _script = item.script
 
       if (index === 0) {
-        _script = `declare @ErrorCode nvarchar(50),@retmsg nvarchar(4000) select @ErrorCode='',@retmsg =''
+        _script = `declare @ErrorCode nvarchar(50),@retmsg nvarchar(4000),@UserName nvarchar(50),@FullName nvarchar(50)
+          select @ErrorCode='',@retmsg ='',@UserName='${userName}', @FullName='${fullName}'
           ${_script}
         `
       }
@@ -229,7 +241,9 @@
   }
 
   resetSearch = (search) => {
-    this.setState({mainSearch: search})
+    this.setState({mainSearch: null}, () => {
+      this.setState({mainSearch: search})
+    })
   }
 
   getComponents = () => {
@@ -286,6 +300,24 @@
             <TableCard config={item} data={data} BID={BID} mainSearch={mainSearch} menuType={menuType} />
           </Col>
         )
+      } else if (item.type === 'group' && item.subtype === 'normalgroup') {
+        return (
+          <Col span={item.width} key={item.uuid}>
+            <NormalGroup config={item} bids={bids} mainSearch={mainSearch} menuType={menuType} />
+          </Col>
+        )
+      } else if (item.type === 'editor') {
+        return (
+          <Col span={item.width} key={item.uuid}>
+            <BraftEditor config={item} data={data} BID={BID} mainSearch={mainSearch} menuType={menuType} />
+          </Col>
+        )
+      } else if (item.type === 'code') {
+        return (
+          <Col span={item.width} key={item.uuid}>
+            <SandBox config={item} data={data} BID={BID} mainSearch={mainSearch} menuType={menuType} />
+          </Col>
+        )
       } else {
         return null
       }

--
Gitblit v1.8.0