From 24d0dd97851aa4d6eedb9a146f92a1148aca4266 Mon Sep 17 00:00:00 2001 From: RenKaiGe-Office Date: Wed, 8 Aug 2018 17:45:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E7=95=8C=E9=9D=A2=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E5=BE=85=E5=8A=9E=E4=BA=8B=E9=A1=B9=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/views/home.jsp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/main/webapp/WEB-INF/views/home.jsp b/src/main/webapp/WEB-INF/views/home.jsp index feaa89b..cadc891 100644 --- a/src/main/webapp/WEB-INF/views/home.jsp +++ b/src/main/webapp/WEB-INF/views/home.jsp @@ -252,6 +252,22 @@ $(document).ready(function(){ App.init(); + //隐藏待办事项快捷菜单 + var disp = $("#quickMenu").css("display"); + if(!disp || disp == "block" ) { + $("#quickMenu").slideUp(200,function(){ + $("#show-hide-option").removeClass().addClass("icon-eye-close"); + wSize(); + }); + + }else { + $("#quickMenu").slideDown(200,function(){ + $("#show-hide-option").removeClass().addClass("icon-eye-open"); + wSize(); + }); + + } + });