From 13e13f65bd23eac150d88dfae7cb8cfeb0860715 Mon Sep 17 00:00:00 2001 From: chiguangxu Date: Fri, 9 Mar 2018 15:59:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=95=8C=E9=9D=A2=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E6=A1=86=E5=85=BC=E5=AE=B9=E6=80=A7=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/static/global/css/components.css | 7 +++++++ src/main/webapp/static/global/scripts/jeesite.js | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/static/global/css/components.css b/src/main/webapp/static/global/css/components.css index 0438bdf94..d128438b9 100644 --- a/src/main/webapp/static/global/css/components.css +++ b/src/main/webapp/static/global/css/components.css @@ -21540,6 +21540,10 @@ Color library demo margin-right: 5px; } + .form-search .pull-left .input-group { + width:384px; + } + .filter-action-select-panle { border: 1px solid #c2cad8; @@ -21553,4 +21557,7 @@ Color library demo } + + + diff --git a/src/main/webapp/static/global/scripts/jeesite.js b/src/main/webapp/static/global/scripts/jeesite.js index ac6fed04b..94820ef12 100644 --- a/src/main/webapp/static/global/scripts/jeesite.js +++ b/src/main/webapp/static/global/scripts/jeesite.js @@ -315,13 +315,13 @@ function filterActionInit() { } function fiterPanleShow() { - $("#filter-action").find("i").removeClass("fa-angle-double-down").addClass("fa-angle-double-up"); + $("#filter-btn").find("i").removeClass("fa-angle-double-down").addClass("fa-angle-double-up"); $(".btn-search").addClass("hide"); $(".filter-action-select-panle").removeClass("hide"); } function fiterPanleHide() { - $("#filter-action").find("i").removeClass("fa-angle-double-up").addClass("fa-angle-double-down"); + $("#filter-btn").find("i").removeClass("fa-angle-double-up").addClass("fa-angle-double-down"); $(".btn-search").removeClass("hide"); $(".filter-action-select-panle").addClass("hide"); }