module-menu 0.3.1 → 0.3.2
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
|
@@ -268,7 +268,7 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
|
|
|
268
268
|
}}
|
|
269
269
|
>
|
|
270
270
|
<div
|
|
271
|
-
className=
|
|
271
|
+
className={stash === 'HBJK' ? 'leftMenu_HBJK' : 'leftMenu'}
|
|
272
272
|
style={{
|
|
273
273
|
height:
|
|
274
274
|
item.children.length > 6
|
|
@@ -284,7 +284,10 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
|
|
|
284
284
|
: '70px',
|
|
285
285
|
}}
|
|
286
286
|
>
|
|
287
|
-
<img src={item.url} className={
|
|
287
|
+
<img src={item.url} className={
|
|
288
|
+
stash === 'HBJK' ? 'middle_HBJK' :
|
|
289
|
+
stash !== 'LNRD' ? 'middle' : 'middle_LNRD'
|
|
290
|
+
} />
|
|
288
291
|
<span
|
|
289
292
|
className={cn(stash !== 'LNRD'? 'middle' : 'middle_LNRD', 'textPad')}
|
|
290
293
|
// className=`${{stash !== 'LNRD'? 'middle' : 'middle_LNRD'}} textPad`
|
|
@@ -39,6 +39,16 @@
|
|
|
39
39
|
font-weight: 400;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
.leftMenu_HBJK {
|
|
43
|
+
width: 120px;
|
|
44
|
+
float: left;
|
|
45
|
+
color: rgba(0, 0, 0, 0.85);
|
|
46
|
+
font-size: 16px;
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
text-align: left;
|
|
49
|
+
font-weight: 400;
|
|
50
|
+
}
|
|
51
|
+
|
|
42
52
|
.rightMenu {
|
|
43
53
|
width: 460px;
|
|
44
54
|
float: left;
|
|
@@ -67,9 +77,19 @@
|
|
|
67
77
|
display: inline-block;
|
|
68
78
|
}
|
|
69
79
|
|
|
80
|
+
.childMenu_HBJK {
|
|
81
|
+
width: 30%;
|
|
82
|
+
display: inline-block;
|
|
83
|
+
}
|
|
70
84
|
.middle, .middle_LNRD {
|
|
71
85
|
vertical-align: middle;
|
|
72
86
|
}
|
|
87
|
+
|
|
88
|
+
.middle_HBJK {
|
|
89
|
+
vertical-align: middle;
|
|
90
|
+
width: 20px;
|
|
91
|
+
height: 20px;
|
|
92
|
+
}
|
|
73
93
|
// .middle_sub_LNRD {
|
|
74
94
|
// width: 20px;
|
|
75
95
|
// height: 20px;
|