From cb9ade2afd2a367ad767bc605ab7086c695dd010 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期五, 09 十二月 2022 15:53:32 +0800
Subject: [PATCH] 2022-12-09

---
 src/tabviews/custom/components/share/normalheader/index.jsx |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/tabviews/custom/components/share/normalheader/index.jsx b/src/tabviews/custom/components/share/normalheader/index.jsx
index 92848b7..0b19275 100644
--- a/src/tabviews/custom/components/share/normalheader/index.jsx
+++ b/src/tabviews/custom/components/share/normalheader/index.jsx
@@ -9,7 +9,6 @@
 class NormalHeader extends Component {
   static propTpyes = {
     BID: PropTypes.any,        // 涓婄骇涓婚敭鍊�
-    menuType: PropTypes.any,   // 鑿滃崟绫诲瀷
     config: PropTypes.object,  // 閰嶇疆淇℃伅
     refresh: PropTypes.func    // 鏉′欢鍒锋柊
   }
@@ -40,7 +39,7 @@
   }
 
   render() {
-    const { config, menuType, BID } = this.props
+    const { config, BID } = this.props
     const { title, show } = this.state
 
     if (!title && !show) return null
@@ -48,7 +47,7 @@
     return (
       <div className={'normal-header' + (show ? ' header-search' : '')} style={config.headerStyle}>
         <span className="title">{title}</span>
-        {show ? <SearchComponent config={config} BID={BID} menuType={menuType} refreshdata={this.props.refresh}/> : null}
+        {show ? <SearchComponent config={config} BID={BID} refreshdata={this.props.refresh}/> : null}
       </div>
     )
   }

--
Gitblit v1.8.0