module-menu 0.2.33 → 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 +1 -1
- package/src/.umi/.cache/babel-loader/0d08f2a516e8e1071b13f9bd705014b6.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/72dcf7a2979262dfe6d0fb52da7b6ca6.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/8a02286dc021cbf692d2d08c173a1833.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/906a35c1f3de9754a10570c4aa75f394.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/c5edccc7ad7af275bf2e435410829888.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/eaa13c6ea81c46f7e76be52141975216.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/f8bce02b7774ed8024e2a08dfc1a1350.json.gz +0 -0
- package/src/.umi/.cache/babel-loader/fc83f2aae8c7eedab32901c8d4d5aee3.json.gz +0 -0
- package/src/pages/ModuleMenu/index.jsx +2 -1
- package/src/pages/ModuleMenu/index.less +6 -1
- package/src/pages/ModuleUser/index.jsx +1 -1
- package/src/pages/index.jsx +2 -2
package/package.json
CHANGED
|
@@ -345,7 +345,8 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
|
|
|
345
345
|
</div>
|
|
346
346
|
</div>
|
|
347
347
|
<div
|
|
348
|
-
|
|
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;
|
|
@@ -14,7 +14,7 @@ import './index.less';
|
|
|
14
14
|
import cn from 'classnames'
|
|
15
15
|
|
|
16
16
|
// stash存在则为一体化,否则为轻量级
|
|
17
|
-
const ModuleUser = ({ stash = '
|
|
17
|
+
const ModuleUser = ({ stash = '' }) => {
|
|
18
18
|
const [tenantList, setTenantList] = useState([]);
|
|
19
19
|
const [haveAppSystemPermission, setHaveAppSystemPermission] = useState(false);
|
|
20
20
|
useEffect(() => {
|
package/src/pages/index.jsx
CHANGED