EasyUI 소개
easyui는 jQuery를 기반으로 한 사용자 인터페이스 플러그인 모음입니다.
easyui는 최신 대화형 JavaScript 애플리케이션을 만드는 데 필요한 기능을 제공합니다.
easyui를 사용하면 많은 코드를 작성할 필요가 없으며 간단한 HTML 태그만 작성하여 사용자 인터페이스를 정의하면 됩니다.
easyui는 HTML5 웹페이지를 완벽하게 지원하는 완전한 프레임워크입니다.
easyui는 웹 개발 시간과 규모를 줄여줍니다.
easyui는 매우 간단하지만 강력합니다.
백엔드 관리 시스템 개발 과정에서 상단 및 왼쪽 레이아웃은 가장 일반적인 페이지 레이아웃 방법입니다. 이제 jquery 프런트엔드 프레임워크인 easyui를 사용하여 사용 가능한 페이지 프레임워크를 빠르게 구축하는 방법을 살펴보겠습니다.
1.easyui에 필요한 파일을 페이지에 소개합니다
<%-- 加载easyui的样式文件,bootstrap风格 --%> <link href="${ctx }/css/themes/bootstrap/easyui.css" rel="stylesheet"> <link href="${ctx }/css/themes/icon.css" rel="stylesheet"> <%-- 加载jquery和easyui的脚本文件 --%> <script src="${ctx }/js/jquery-easyui-../jquery.min.js"></script> <script src="${ctx }/js/jquery-easyui-../jquery.easyui.min.js"></script> <script src="${ctx }/js/jquery-easyui-../locale/easyui-lang-zh_CN.js"></script>
2. 페이지 본문 부분에 필요한 html 구조를 만듭니다.
<body> <div id="home-layout"> <!-- 页面北部,页面标题 --> <div data-options="region:'north'" style="height:50px;"> <!-- add your code --> </div> <!-- 页面西部,菜单 --> <div data-options="region:'west',title:'菜单栏'" style="width:200px;"> <div class="home-west"> <ul id="home-west-tree"></ul> </div> </div> <!-- 页面中部,主要内容 --> <div data-options="region:'center'"> <div id="home-tabs"> <div title="首页"> <h2 style="text-align: center">欢迎登录</h2> </div> </div> </div> </div> </body>
여기서 주의할 점: easyui가 레이아웃을 사용할 때 북쪽과 남쪽은 높이를 지정해야 하고 서쪽과 동쪽은 너비를 지정해야 하며 중앙은 자동으로 높이와 너비에 맞춰 조정됩니다.
3. js를 사용하여 easyui 구성 요소를 초기화합니다
저는 개인적으로 easyui 태그의 data-options 속성을 사용하는 대신 js 코드를 사용하여 easyui 구성요소를 초기화하는 것을 권장합니다. 백엔드 개발자에게는 js 코드 작성이 html 태그 작성보다 더 익숙할 수 있고 이로 인해 html 코드가 더 간결해지기 때문입니다.
<script> $(function(){ /* * 初始化layout */ $("#home-layout").layout({ //使layout自适应容器 fit: true }); /* * 获取左侧菜单树,并为其节点指定单击事件 */ $("#home-west-tree").tree({ //加载菜单的数据,必需 url: "${ctx }/pages/home-west-tree.json", method: "get", //是否有层次线 lines: true, //菜单打开与关闭是否有动画效果 animate: true, //菜单点击事件 onClick: function(node){ if(node.attributes && node.attributes.url){ //打开内容区的tab,代码在其后 addTab({ url: "${ctx }/" + node.attributes.url, title: node.text }); } } }); /* * 初始化内容区的tabs */ $("#home-tabs").tabs({ fit : true, //tab页是否有边框 border : false });}) </script> <script> /* * 在内容区添加一个tab */ function addTab(params){ var t = $("#home-tabs"); var url = params.url; var opts = { title: params.title, closable: true, href: url, fit: true, border: false }; //如果被选中的节点对应的tab已经存在,则选中该tab并刷新内容 //否则打开一个新的tab if(t.tabs("exists", opts.title)){ var tab = t.tabs("select", opts.title).tabs("getSelected"); t.tabs("update", { tab: tab, options: opts }); }else{ t.tabs("add", opts); } } </script>
easyui-tree 구성 요소에 필요한 4.json 형식
easyui에서 사용하는 전송 형식은 json이므로 json 콘텐츠 형식에 엄격한 제한이 있으므로 api 확인에 주의하시기 바랍니다
[{ "text":"区域管理", "attributes":{ "url":"pages/consume/area/areaList.jsp" } },{ "text":"预约信息管理", "children":[{ "text":"商户预约信息查询", "attributes":{ "url":"/pages/consume/reservation/merchantReservation/merchantReservationList.jsp" } }] },{ "text":"准入申请管理", "children":[{ "text":"商户准入申请", "state":"closed", "children":[{ "text":"商户待处理申请", "attributes":{ "url":"waterAply.do?method=toList&channelType=1&handleFlag=aply_wait" } },{ "text":"商户审批中申请", "attributes":{ "url":"waterAply.do?method=toList&channelType=1&handleFlag=aply_current" } },{ "text":"商户审批通过申请", "attributes":{ "url":"waterAply.do?method=toList&channelType=1&handleFlag=aply_pass" } },{ "text":"商户被拒绝申请", "attributes":{ "url":"waterAply.do?method=toList&channelType=1&handleFlag=aply_refuse" } }] }] },{ "text":"准入审批管理", "children":[{ "text":"商户审批管理", "state":"closed", "children":[{ "text":"当前任务", "children":[{ "text":"商户当前初审任务", "attributes":{ "url":"pages/consume/approval/merchantApproval/merchantApprovalTrial.jsp" } },{ "text":"商户当前复审任务", "attributes":{ "url":"pages/consume/approval/merchantApproval/merchantApprovalRetrial.jsp" } }] },{ "text":"商户已完成任务", "attributes":{ "url":"pages/consume/approval/merchantApproval/merchantApprovalDone.jsp" } },{ "text":"商户不通过任务", "attributes":{ "url":"pages/consume/approval/merchantApproval/merchantApprovalRefuse.jsp" } }] }] }]
이렇게 easyui를 활용해 심플한 좌우 레이아웃을 완성했습니다.
위는 에디터에서 공유한 jQuery Easyui 왼쪽 및 오른쪽 레이아웃 구현과 관련된 내용입니다. 모든 분들께 도움이 되었으면 좋겠습니다.