module-menu 0.2.34 → 0.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "module-menu",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "description": "城市大数据平台公共头部及尾部",
5
5
  "main": "src/pages/index.jsx",
6
6
  "scripts": {
@@ -345,7 +345,8 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
345
345
  </div>
346
346
  </div>
347
347
  <div
348
- className="menu_list_content"
348
+ className={cn(stash !== 'LNRD'? 'menu_list_content_top':'menu_list_content_top_LNRD', 'menu_list_content')}
349
+ // className="menu_list_content"
349
350
  style={{ display: showMenuList ? 'block' : 'none' }}
350
351
  onMouseOver={() => setshowMenuList(true)}
351
352
  onMouseOut={() => setshowMenuList(false)}
@@ -3,13 +3,18 @@
3
3
  z-index: 2;
4
4
  float: left;
5
5
  position: fixed;
6
- top: 50px;
7
6
  left: 0;
8
7
  background-color: #FFF;
9
8
  box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 10px;
10
9
  padding-left: 35px;
11
10
  padding-bottom: 35px;
12
11
  }
12
+ .menu_list_content_top{
13
+ top: 50px;
14
+ }
15
+ .menu_list_content_top_LNRD{
16
+ top: 75px;
17
+ }
13
18
 
14
19
  .cardLine {
15
20
  padding: 5px 0px;
@@ -2,4 +2,4 @@ import ModuleMenu from './ModuleMenu';
2
2
  import ModuleUser from './ModuleUser';
3
3
  import Footer from './Footer';
4
4
  export { ModuleMenu, ModuleUser, Footer };
5
- // export default ModuleUser;
5
+ // export default ModuleMenu;