Index: ssts-web/src/main/webapp/homepage/portalPage.jsp
===================================================================
diff -u -r35177 -r35290
--- ssts-web/src/main/webapp/homepage/portalPage.jsp (.../portalPage.jsp) (revision 35177)
+++ ssts-web/src/main/webapp/homepage/portalPage.jsp (.../portalPage.jsp) (revision 35290)
@@ -99,7 +99,7 @@
-${title}
+${title}
@@ -147,6 +147,7 @@
isIE6 = true;
}
var hideLogo = sessionStorage.getItem('hideLogo');
+ var showLeft = sessionStorage.getItem('showLeftMenu');
if(hideLogo == 'true' || hideLogo == true){
top.MsgTip = MsgTip;
top.Ext = Ext;
@@ -567,6 +568,80 @@
.x-viewport, .x-viewport body{
overflow: auto !important;
}
+
+.leftMenu {
+ width: 10%;
+ overflow-y: scroll;
+ float: left;
+}
+
+.rightContent {
+ width: 90%;
+ float: left;
+ height: 100%;
+}
+
+.leftMenu ul{
+ list-style:none;
+}
+.leftMenu ul li a{
+ display: block;
+ text-decoration: none;
+ color: white;
+ height: 40px;
+ line-height: 40px;
+ border-bottom:1px solid white;
+ text-align: center;
+}
+.leftMenu ul li{
+ position: relative;
+ background: #226542;
+}
+.leftMenu ul li .child{
+ top: 0px;
+ left: 181px;
+ display: none;
+ z-index: 1;
+}
+.leftMenu ul li .child li{
+ background: #1C5235;
+}
+.leftMenu ul li .child a {
+ color: #fff;
+}
+.leftMenu ul li:hover .child{
+ display:block;
+}
+.leftMenu ul li:hover .arrowIconUp{
+ display: initial;
+}
+.leftMenu ul li:hover .arrowIconDown{
+ display:none;
+}
+.leftMenu ul li a:hover{
+ background-color: #226542;
+}
+.leftMenu .imgDvi {
+ display: none !important;
+}
+.leftMenu .icon-text {
+ background: none !important;
+}
+.leftMenu .icon-text span {
+ background: none !important;
+ line-height: 40px !important;
+ height: 40px !important;
+}
+.leftMenu .tipCls img {
+ width: 20px;
+ height: 20px;
+}
+.arrowIconDown {
+ display: initial;
+}
+.arrowIconUp {
+ display: none;
+}
@@ -668,10 +743,14 @@
-
-
+
+ |
|
+
@@ -713,5 +792,10 @@
height:logoHeight+'px'
})
}
+ if(showLeft){
+ $('#leftMenuBox').show();
+ }else {
+ $('#windowBox').show();
+ }