实例介绍
自己做的,经过了一个系的真实测试。语言:Java。核心技术点:Maven+Spring Mvc+Spring +Mybatis 数据库Mysql。注意:上传的这个版本不是正式版,少了管理员的功能,管理员的功能给了教师。不过用来学习和交作业完全可以。前端我用了两个前端技术,Hui-admin、amaze
【实例截图】
【核心代码】
6bb294c4-e337-475a-9a9f-d10af18c34a5
├── llhc
│ ├── llhc.iml
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── llhc
│ │ │ ├── commom
│ │ │ │ ├── encode
│ │ │ │ │ ├── Md5PwdImpl.java
│ │ │ │ │ └── Md5Pwd.java
│ │ │ │ ├── FileUtils
│ │ │ │ │ └── FileDelete.java
│ │ │ │ ├── paginglabel
│ │ │ │ │ ├── NavigationTag.java
│ │ │ │ │ └── Page.java
│ │ │ │ ├── poi
│ │ │ │ │ └── ExcelUtil.java
│ │ │ │ ├── UUID
│ │ │ │ │ └── CommonsUtils.java
│ │ │ │ └── web
│ │ │ │ ├── Constants.java
│ │ │ │ └── session
│ │ │ │ ├── HttpSessionProvider.java
│ │ │ │ └── SessionProvider.java
│ │ │ ├── controller
│ │ │ │ ├── FileController.java
│ │ │ │ ├── JcaptchaImageCreater.java
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── StudentController.java
│ │ │ │ └── TeacherController.java
│ │ │ ├── dao
│ │ │ │ ├── NewMapper.java
│ │ │ │ ├── NewMapper.xml
│ │ │ │ ├── StudentMapper.java
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TbFileMapper.java
│ │ │ │ ├── TbFileMapper.xml
│ │ │ │ ├── TeacherMapper.java
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── TopicMapper.java
│ │ │ │ └── TopicMapper.xml
│ │ │ ├── interceptor
│ │ │ │ └── LoginInterceptor.java
│ │ │ ├── listener
│ │ │ │ └── SessionCounter.java
│ │ │ ├── pojo
│ │ │ │ ├── ExcelBean.java
│ │ │ │ ├── ExcelQueryVo.java
│ │ │ │ ├── MyStudentQueryVo.java
│ │ │ │ ├── New.java
│ │ │ │ ├── QueryVo.java
│ │ │ │ ├── Student.java
│ │ │ │ ├── StuQueryVo.java
│ │ │ │ ├── TbFile.java
│ │ │ │ ├── TeacherAndTopicAndStudentQueryVo.java
│ │ │ │ ├── Teacher.java
│ │ │ │ ├── TopicExample.java
│ │ │ │ └── Topic.java
│ │ │ └── service
│ │ │ ├── FileServiceImpl.java
│ │ │ ├── FileService.java
│ │ │ ├── NewServiceImpl.java
│ │ │ ├── NewService.java
│ │ │ ├── StudentServiceImpl.java
│ │ │ ├── StudentService.java
│ │ │ ├── TeacherServiceImpl.java
│ │ │ ├── TeacherService.java
│ │ │ ├── TopicServiceImpl.java
│ │ │ └── TopicService.java
│ │ ├── resources
│ │ │ ├── conf
│ │ │ │ ├── db.properties
│ │ │ │ └── mybatis-config.xml
│ │ │ └── spring
│ │ │ ├── applicationContext-captcha.xml
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-trans.xml
│ │ │ ├── applicationContext-utils.xml
│ │ │ └── springmvc.xml
│ │ └── webapp
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ ├── amazeui.min.css
│ │ │ │ ├── app.css
│ │ │ │ └── login
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ └── login.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── i
│ │ │ │ ├── app-icon72x72@2x.png
│ │ │ │ ├── examples
│ │ │ │ │ ├── admin-chrome.png
│ │ │ │ │ ├── admin-firefox.png
│ │ │ │ │ ├── admin-ie.png
│ │ │ │ │ ├── admin-opera.png
│ │ │ │ │ ├── adminPage.png
│ │ │ │ │ ├── admin-safari.png
│ │ │ │ │ ├── blogPage.png
│ │ │ │ │ ├── landingPage.png
│ │ │ │ │ ├── landing.png
│ │ │ │ │ ├── loginPage.png
│ │ │ │ │ └── sidebarPage.png
│ │ │ │ └── startup-640x1096.png
│ │ │ ├── img
│ │ │ │ ├── 32.jpg
│ │ │ │ ├── 43.jpg
│ │ │ │ ├── a10.png
│ │ │ │ ├── a1.png
│ │ │ │ ├── a2.png
│ │ │ │ ├── a3.png
│ │ │ │ ├── a4.png
│ │ │ │ ├── a5.png
│ │ │ │ ├── a6.png
│ │ │ │ ├── a7.png
│ │ │ │ ├── a8.png
│ │ │ │ ├── a9.png
│ │ │ │ ├── lbbg.png
│ │ │ │ ├── login
│ │ │ │ │ ├── pic.jpg
│ │ │ │ │ └── pku_logo_red.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── syncfusion-icons-white.png
│ │ │ │ ├── user01.png
│ │ │ │ ├── user02.png
│ │ │ │ ├── user03.png
│ │ │ │ ├── user04.png
│ │ │ │ ├── user05.png
│ │ │ │ ├── user06.png
│ │ │ │ └── user07.png
│ │ │ └── js
│ │ │ ├── amazeui.min.js
│ │ │ ├── app.js
│ │ │ ├── echarts.min.js
│ │ │ ├── iscroll.js
│ │ │ ├── jquery
│ │ │ │ └── 1.9.1
│ │ │ │ ├── jquery.js
│ │ │ │ └── jquery.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── jquery.validation
│ │ │ └── 1.14.0
│ │ │ ├── additional-methods.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── messages_zh.js
│ │ │ └── validate-methods.js
│ │ ├── Files
│ │ │ ├── moban
│ │ │ │ ├── a.txt
│ │ │ │ ├── gzglbf.doc
│ │ │ │ ├── gzzlpgzb.doc
│ │ │ │ ├── pfxz.doc
│ │ │ │ ├── pjbz.doc
│ │ │ │ ├── szdjl.doc
│ │ │ │ ├── szqbg.doc
│ │ │ │ ├── tgzzqjcb.doc
│ │ │ │ ├── tktrws.doc
│ │ │ │ ├── tktsqb.doc
│ │ │ │ ├── xsktbg.doc
│ │ │ │ ├── zdjl.doc
│ │ │ │ └── zlpgbz.doc
│ │ │ ├── 刘继华
│ │ │ │ └── 刘倩
│ │ │ │ ├── 02授权的过程.png
│ │ │ │ ├── git学习笔记.docx
│ │ │ │ ├── logo.png
│ │ │ │ └── 说明.txt
│ │ │ ├── 王艳
│ │ │ │ └── 高海梅
│ │ │ │ └── chrome_child.dll
│ │ │ └── 王里平
│ │ │ └── 韩晋阳
│ │ │ ├── 02授权的过程.png
│ │ │ ├── Spring Security权限管理开发手册.pdf
│ │ │ ├── 新建 XLSX 工作表.xlsx
│ │ │ └── 新建文本文档.txt
│ │ ├── index.jsp
│ │ ├── lib
│ │ │ ├── datatables
│ │ │ │ └── 1.10.0
│ │ │ │ └── jquery.dataTables.min.js
│ │ │ ├── DD_belatedPNG_0.0.8a-min.js
│ │ │ ├── echarts
│ │ │ │ └── 3.4.0
│ │ │ │ └── echarts.common.min.js
│ │ │ ├── expressInstall.swf
│ │ │ ├── hcharts
│ │ │ │ └── Highcharts
│ │ │ │ └── 5.0.6
│ │ │ │ ├── js
│ │ │ │ │ ├── highcharts-3d.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── accessibility.js
│ │ │ │ │ │ ├── accessibility.src.js
│ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ ├── boost.js
│ │ │ │ │ │ ├── boost.src.js
│ │ │ │ │ │ ├── broken-axis.js
│ │ │ │ │ │ ├── broken-axis.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── gantt.js
│ │ │ │ │ │ ├── gantt.src.js
│ │ │ │ │ │ ├── grid-axis.js
│ │ │ │ │ │ ├── grid-axis.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ │ │ ├── offline-exporting.js
│ │ │ │ │ │ ├── offline-exporting.src.js
│ │ │ │ │ │ ├── overlapping-datalabels.js
│ │ │ │ │ │ ├── overlapping-datalabels.src.js
│ │ │ │ │ │ ├── series-label.js
│ │ │ │ │ │ ├── series-label.src.js
│ │ │ │ │ │ ├── solid-gauge.js
│ │ │ │ │ │ ├── solid-gauge.src.js
│ │ │ │ │ │ ├── treemap.js
│ │ │ │ │ │ ├── treemap.src.js
│ │ │ │ │ │ ├── xrange-series.js
│ │ │ │ │ │ └── xrange-series.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ ├── dark-green.js
│ │ │ │ │ ├── dark-unica.js
│ │ │ │ │ ├── gray.js
│ │ │ │ │ ├── grid.js
│ │ │ │ │ ├── grid-light.js
│ │ │ │ │ ├── sand-signika.js
│ │ │ │ │ └── skies.js
│ │ │ │ ├── license.pdf
│ │ │ │ └── readme.txt
│ │ │ ├── html5shiv.js
│ │ │ ├── Hui-iconfont
│ │ │ │ └── 1.0.8
│ │ │ │ ├── demo.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.min.css
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── jquery
│ │ │ │ └── 1.9.1
│ │ │ │ ├── jquery.js
│ │ │ │ └── jquery.min.js
│ │ │ ├── jquery.contextmenu
│ │ │ │ └── jquery.contextmenu.r2.js
│ │ │ ├── jquery.SuperSlide
│ │ │ │ └── 2.1.1
│ │ │ │ └── jquery.SuperSlide.min.js
│ │ │ ├── jquery.validation
│ │ │ │ └── 1.14.0
│ │ │ │ ├── additional-methods.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── messages_zh.js
│ │ │ │ └── validate-methods.js
│ │ │ ├── jselect-1.0.js
│ │ │ ├── layer
│ │ │ │ └── 2.4
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ ├── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ └── layer.css
│ │ │ ├── laypage
│ │ │ │ └── 1.2
│ │ │ │ ├── laypage.js
│ │ │ │ └── skin
│ │ │ │ └── laypage.css
│ │ │ ├── lightbox2
│ │ │ │ └── 2.8.1
│ │ │ │ ├── css
│ │ │ │ │ └── lightbox.css
│ │ │ │ ├── examples.html
│ │ │ │ ├── images
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── next.png
│ │ │ │ │ └── prev.png
│ │ │ │ └── js
│ │ │ │ ├── lightbox.js
│ │ │ │ ├── lightbox.min.js
│ │ │ │ ├── lightbox.min.map
│ │ │ │ ├── lightbox-plus-jquery.js
│ │ │ │ ├── lightbox-plus-jquery.min.js
│ │ │ │ └── lightbox-plus-jquery.min.map
│ │ │ ├── My97DatePicker
│ │ │ │ └── 4.8
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ ├── twoer
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ ├── datepicker-dev.css
│ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ └── img.png
│ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ └── whyGreen
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── WdatePicker.js
│ │ │ ├── nprogress
│ │ │ │ └── 0.2.0
│ │ │ │ ├── nprogress.css
│ │ │ │ ├── nprogress.js
│ │ │ │ ├── nprogress.min.css
│ │ │ │ └── nprogress.min.js
│ │ │ ├── respond.min.js
│ │ │ ├── squid.js
│ │ │ ├── swfobject.js
│ │ │ ├── webuploader
│ │ │ │ └── 0.1.5
│ │ │ │ ├── cropper
│ │ │ │ │ ├── cropper.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── uploader.js
│ │ │ │ ├── expressInstall.swf
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── icons.psd
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── progress.psd
│ │ │ │ │ └── success.png
│ │ │ │ ├── image-upload
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── upload.js
│ │ │ │ ├── md5-demo
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── script.js
│ │ │ │ ├── README.md
│ │ │ │ ├── requirejs
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── require.js
│ │ │ │ ├── server
│ │ │ │ │ ├── crossdomain.xml
│ │ │ │ │ ├── fileupload2.php
│ │ │ │ │ ├── fileupload.php
│ │ │ │ │ └── preview.php
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.fis.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.noimage.js
│ │ │ │ ├── webuploader.noimage.min.js
│ │ │ │ ├── webuploader.nolog.js
│ │ │ │ ├── webuploader.nolog.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── zTree
│ │ │ └── v3
│ │ │ ├── api
│ │ │ │ ├── API_cn.html
│ │ │ │ ├── apiCss
│ │ │ │ │ ├── api.js
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── common_ie6.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── apiMenu.gif
│ │ │ │ │ │ ├── apiMenu.png
│ │ │ │ │ │ ├── background.jpg
│ │ │ │ │ │ ├── chinese.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── contact-bg.png
│ │ │ │ │ │ ├── english.png
│ │ │ │ │ │ ├── header-bg.png
│ │ │ │ │ │ ├── lightbulb.png
│ │ │ │ │ │ ├── overlay_arrow.gif
│ │ │ │ │ │ ├── overlay_arrow.png
│ │ │ │ │ │ ├── overlay_bg.png
│ │ │ │ │ │ ├── overlay_close_IE6.gif
│ │ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ │ └── zTreeStandard.png
│ │ │ │ │ ├── jquery-1.6.2.min.js
│ │ │ │ │ ├── jquery.ztree.core-3.5.js
│ │ │ │ │ └── zTreeStyleForApi.css
│ │ │ │ ├── API_en.html
│ │ │ │ ├── cn
│ │ │ │ │ ├── fn.zTree.destroy.html
│ │ │ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ │ │ ├── fn.zTree.init.html
│ │ │ │ │ ├── fn.zTree._z.html
│ │ │ │ │ ├── setting.async.autoParam.html
│ │ │ │ │ ├── setting.async.contentType.html
│ │ │ │ │ ├── setting.async.dataFilter.html
│ │ │ │ │ ├── setting.async.dataType.html
│ │ │ │ │ ├── setting.async.enable.html
│ │ │ │ │ ├── setting.async.otherParam.html
│ │ │ │ │ ├── setting.async.type.html
│ │ │ │ │ ├── setting.async.url.html
│ │ │ │ │ ├── setting.callback.beforeAsync.html
│ │ │ │ │ ├── setting.callback.beforeCheck.html
│ │ │ │ │ ├── setting.callback.beforeClick.html
│ │ │ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ │ │ ├── setting.callback.beforeDrag.html
│ │ │ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ │ │ ├── setting.callback.beforeDrop.html
│ │ │ │ │ ├── setting.callback.beforeEditName.html
│ │ │ │ │ ├── setting.callback.beforeExpand.html
│ │ │ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ │ │ ├── setting.callback.beforeRemove.html
│ │ │ │ │ ├── setting.callback.beforeRename.html
│ │ │ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ │ │ ├── setting.callback.onAsyncError.html
│ │ │ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ │ │ ├── setting.callback.onCheck.html
│ │ │ │ │ ├── setting.callback.onClick.html
│ │ │ │ │ ├── setting.callback.onCollapse.html
│ │ │ │ │ ├── setting.callback.onDblClick.html
│ │ │ │ │ ├── setting.callback.onDrag.html
│ │ │ │ │ ├── setting.callback.onDragMove.html
│ │ │ │ │ ├── setting.callback.onDrop.html
│ │ │ │ │ ├── setting.callback.onExpand.html
│ │ │ │ │ ├── setting.callback.onMouseDown.html
│ │ │ │ │ ├── setting.callback.onMouseUp.html
│ │ │ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ │ │ ├── setting.callback.onRemove.html
│ │ │ │ │ ├── setting.callback.onRename.html
│ │ │ │ │ ├── setting.callback.onRightClick.html
│ │ │ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ │ │ ├── setting.check.chkboxType.html
│ │ │ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ │ │ ├── setting.check.chkStyle.html
│ │ │ │ │ ├── setting.check.enable.html
│ │ │ │ │ ├── setting.check.nocheckInherit.html
│ │ │ │ │ ├── setting.check.radioType.html
│ │ │ │ │ ├── setting.data.keep.leaf.html
│ │ │ │ │ ├── setting.data.keep.parent.html
│ │ │ │ │ ├── setting.data.key.checked.html
│ │ │ │ │ ├── setting.data.key.children.html
│ │ │ │ │ ├── setting.data.key.name.html
│ │ │ │ │ ├── setting.data.key.title.html
│ │ │ │ │ ├── setting.data.key.url.html
│ │ │ │ │ ├── setting.data.simpleData.enable.html
│ │ │ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ │ │ ├── setting.edit.drag.inner.html
│ │ │ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ │ │ ├── setting.edit.drag.isMove.html
│ │ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ │ │ ├── setting.edit.drag.next.html
│ │ │ │ │ ├── setting.edit.drag.prev.html
│ │ │ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ │ │ ├── setting.edit.enable.html
│ │ │ │ │ ├── setting.edit.removeTitle.html
│ │ │ │ │ ├── setting.edit.renameTitle.html
│ │ │ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ │ │ ├── setting.treeId.html
│ │ │ │ │ ├── setting.treeObj.html
│ │ │ │ │ ├── setting.view.addDiyDom.html
│ │ │ │ │ ├── setting.view.addHoverDom.html
│ │ │ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ │ │ ├── setting.view.dblClickExpand.html
│ │ │ │ │ ├── setting.view.expandSpeed.html
│ │ │ │ │ ├── setting.view.fontCss.html
│ │ │ │ │ ├── setting.view.nameIsHTML.html
│ │ │ │ │ ├── setting.view.removeHoverDom.html
│ │ │ │ │ ├── setting.view.selectedMulti.html
│ │ │ │ │ ├── setting.view.showIcon.html
│ │ │ │ │ ├── setting.view.showLine.html
│ │ │ │ │ ├── setting.view.showTitle.html
│ │ │ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ │ │ ├── treeNode.check_Child_State.html
│ │ │ │ │ ├── treeNode.checked.html
│ │ │ │ │ ├── treeNode.checkedOld.html
│ │ │ │ │ ├── treeNode.check_Focus.html
│ │ │ │ │ ├── treeNode.children.html
│ │ │ │ │ ├── treeNode.chkDisabled.html
│ │ │ │ │ ├── treeNode.click.html
│ │ │ │ │ ├── treeNode.diy.html
│ │ │ │ │ ├── treeNode.editNameFlag.html
│ │ │ │ │ ├── treeNode.getCheckStatus.html
│ │ │ │ │ ├── treeNode.getNextNode.html
│ │ │ │ │ ├── treeNode.getParentNode.html
│ │ │ │ │ ├── treeNode.getPreNode.html
│ │ │ │ │ ├── treeNode.halfCheck.html
│ │ │ │ │ ├── treeNode.iconClose.html
│ │ │ │ │ ├── treeNode.icon.html
│ │ │ │ │ ├── treeNode.iconOpen.html
│ │ │ │ │ ├── treeNode.iconSkin.html
│ │ │ │ │ ├── treeNode.isAjaxing.html
│ │ │ │ │ ├── treeNode.isFirstNode.html
│ │ │ │ │ ├── treeNode.isHidden.html
│ │ │ │ │ ├── treeNode.isHover.html
│ │ │ │ │ ├── treeNode.isLastNode.html
│ │ │ │ │ ├── treeNode.isParent.html
│ │ │ │ │ ├── treeNode.level.html
│ │ │ │ │ ├── treeNode.name.html
│ │ │ │ │ ├── treeNode.nocheck.html
│ │ │ │ │ ├── treeNode.open.html
│ │ │ │ │ ├── treeNode.parentTId.html
│ │ │ │ │ ├── treeNode.target.html
│ │ │ │ │ ├── treeNode.tId.html
│ │ │ │ │ ├── treeNode.url.html
│ │ │ │ │ ├── treeNode.zAsync.html
│ │ │ │ │ ├── zTreeObj.addNodes.html
│ │ │ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ │ │ ├── zTreeObj.checkNode.html
│ │ │ │ │ ├── zTreeObj.copyNode.html
│ │ │ │ │ ├── zTreeObj.destroy.html
│ │ │ │ │ ├── zTreeObj.editName.html
│ │ │ │ │ ├── zTreeObj.expandAll.html
│ │ │ │ │ ├── zTreeObj.expandNode.html
│ │ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ │ │ ├── zTreeObj.getNodes.html
│ │ │ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ │ │ ├── zTreeObj.hideNode.html
│ │ │ │ │ ├── zTreeObj.hideNodes.html
│ │ │ │ │ ├── zTreeObj.moveNode.html
│ │ │ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ │ │ ├── zTreeObj.refresh.html
│ │ │ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ │ │ ├── zTreeObj.removeNode.html
│ │ │ │ │ ├── zTreeObj.selectNode.html
│ │ │ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ │ │ ├── zTreeObj.setEditable.html
│ │ │ │ │ ├── zTreeObj.setting.html
│ │ │ │ │ ├── zTreeObj.showNode.html
│ │ │ │ │ ├── zTreeObj.showNodes.html
│ │ │ │ │ ├── zTreeObj.transformToArray.html
│ │ │ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ │ │ └── zTreeObj.updateNode.html
│ │ │ │ └── en
│ │ │ │ ├── fn.zTree.destroy.html
│ │ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ │ ├── fn.zTree.init.html
│ │ │ │ ├── fn.zTree._z.html
│ │ │ │ ├── setting.async.autoParam.html
│ │ │ │ ├── setting.async.contentType.html
│ │ │ │ ├── setting.async.dataFilter.html
│ │ │ │ ├── setting.async.dataType.html
│ │ │ │ ├── setting.async.enable.html
│ │ │ │ ├── setting.async.otherParam.html
│ │ │ │ ├── setting.async.type.html
│ │ │ │ ├── setting.async.url.html
│ │ │ │ ├── setting.callback.beforeAsync.html
│ │ │ │ ├── setting.callback.beforeCheck.html
│ │ │ │ ├── setting.callback.beforeClick.html
│ │ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ │ ├── setting.callback.beforeDrag.html
│ │ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ │ ├── setting.callback.beforeDrop.html
│ │ │ │ ├── setting.callback.beforeEditName.html
│ │ │ │ ├── setting.callback.beforeExpand.html
│ │ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ │ ├── setting.callback.beforeRemove.html
│ │ │ │ ├── setting.callback.beforeRename.html
│ │ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ │ ├── setting.callback.onAsyncError.html
│ │ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ │ ├── setting.callback.onCheck.html
│ │ │ │ ├── setting.callback.onClick.html
│ │ │ │ ├── setting.callback.onCollapse.html
│ │ │ │ ├── setting.callback.onDblClick.html
│ │ │ │ ├── setting.callback.onDrag.html
│ │ │ │ ├── setting.callback.onDragMove.html
│ │ │ │ ├── setting.callback.onDrop.html
│ │ │ │ ├── setting.callback.onExpand.html
│ │ │ │ ├── setting.callback.onMouseDown.html
│ │ │ │ ├── setting.callback.onMouseUp.html
│ │ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ │ ├── setting.callback.onRemove.html
│ │ │ │ ├── setting.callback.onRename.html
│ │ │ │ ├── setting.callback.onRightClick.html
│ │ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ │ ├── setting.check.chkboxType.html
│ │ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ │ ├── setting.check.chkStyle.html
│ │ │ │ ├── setting.check.enable.html
│ │ │ │ ├── setting.check.nocheckInherit.html
│ │ │ │ ├── setting.check.radioType.html
│ │ │ │ ├── setting.data.keep.leaf.html
│ │ │ │ ├── setting.data.keep.parent.html
│ │ │ │ ├── setting.data.key.checked.html
│ │ │ │ ├── setting.data.key.children.html
│ │ │ │ ├── setting.data.key.name.html
│ │ │ │ ├── setting.data.key.title.html
│ │ │ │ ├── setting.data.key.url.html
│ │ │ │ ├── setting.data.simpleData.enable.html
│ │ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ │ ├── setting.edit.drag.inner.html
│ │ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ │ ├── setting.edit.drag.isMove.html
│ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ │ ├── setting.edit.drag.next.html
│ │ │ │ ├── setting.edit.drag.prev.html
│ │ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ │ ├── setting.edit.enable.html
│ │ │ │ ├── setting.edit.removeTitle.html
│ │ │ │ ├── setting.edit.renameTitle.html
│ │ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ │ ├── setting.treeId.html
│ │ │ │ ├── setting.treeObj.html
│ │ │ │ ├── setting.view.addDiyDom.html
│ │ │ │ ├── setting.view.addHoverDom.html
│ │ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ │ ├── setting.view.dblClickExpand.html
│ │ │ │ ├── setting.view.expandSpeed.html
│ │ │ │ ├── setting.view.fontCss.html
│ │ │ │ ├── setting.view.nameIsHTML.html
│ │ │ │ ├── setting.view.removeHoverDom.html
│ │ │ │ ├── setting.view.selectedMulti.html
│ │ │ │ ├── setting.view.showIcon.html
│ │ │ │ ├── setting.view.showLine.html
│ │ │ │ ├── setting.view.showTitle.html
│ │ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ │ ├── treeNode.check_Child_State.html
│ │ │ │ ├── treeNode.checked.html
│ │ │ │ ├── treeNode.checkedOld.html
│ │ │ │ ├── treeNode.check_Focus.html
│ │ │ │ ├── treeNode.children.html
│ │ │ │ ├── treeNode.chkDisabled.html
│ │ │ │ ├── treeNode.click.html
│ │ │ │ ├── treeNode.diy.html
│ │ │ │ ├── treeNode.editNameFlag.html
│ │ │ │ ├── treeNode.getCheckStatus.html
│ │ │ │ ├── treeNode.getNextNode.html
│ │ │ │ ├── treeNode.getParentNode.html
│ │ │ │ ├── treeNode.getPreNode.html
│ │ │ │ ├── treeNode.halfCheck.html
│ │ │ │ ├── treeNode.iconClose.html
│ │ │ │ ├── treeNode.icon.html
│ │ │ │ ├── treeNode.iconOpen.html
│ │ │ │ ├── treeNode.iconSkin.html
│ │ │ │ ├── treeNode.isAjaxing.html
│ │ │ │ ├── treeNode.isFirstNode.html
│ │ │ │ ├── treeNode.isHidden.html
│ │ │ │ ├── treeNode.isHover.html
│ │ │ │ ├── treeNode.isLastNode.html
│ │ │ │ ├── treeNode.isParent.html
│ │ │ │ ├── treeNode.level.html
│ │ │ │ ├── treeNode.name.html
│ │ │ │ ├── treeNode.nocheck.html
│ │ │ │ ├── treeNode.open.html
│ │ │ │ ├── treeNode.parentTId.html
│ │ │ │ ├── treeNode.target.html
│ │ │ │ ├── treeNode.tId.html
│ │ │ │ ├── treeNode.url.html
│ │ │ │ ├── treeNode.zAsync.html
│ │ │ │ ├── zTreeObj.addNodes.html
│ │ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ │ ├── zTreeObj.checkNode.html
│ │ │ │ ├── zTreeObj.copyNode.html
│ │ │ │ ├── zTreeObj.destroy.html
│ │ │ │ ├── zTreeObj.editName.html
│ │ │ │ ├── zTreeObj.expandAll.html
│ │ │ │ ├── zTreeObj.expandNode.html
│ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ │ ├── zTreeObj.getNodes.html
│ │ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ │ ├── zTreeObj.hideNode.html
│ │ │ │ ├── zTreeObj.hideNodes.html
│ │ │ │ ├── zTreeObj.moveNode.html
│ │ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ │ ├── zTreeObj.refresh.html
│ │ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ │ ├── zTreeObj.removeNode.html
│ │ │ │ ├── zTreeObj.selectNode.html
│ │ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ │ ├── zTreeObj.setEditable.html
│ │ │ │ ├── zTreeObj.setting.html
│ │ │ │ ├── zTreeObj.showNode.html
│ │ │ │ ├── zTreeObj.showNodes.html
│ │ │ │ ├── zTreeObj.transformToArray.html
│ │ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ │ └── zTreeObj.updateNode.html
│ │ │ ├── css
│ │ │ │ ├── metroStyle
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ └── metro.png
│ │ │ │ │ └── metroStyle.css
│ │ │ │ └── zTreeStyle
│ │ │ │ ├── img
│ │ │ │ │ ├── diy
│ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ └── 9.png
│ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ └── zTreeStandard.png
│ │ │ │ └── zTreeStyle.css
│ │ │ └── js
│ │ │ ├── jquery.ztree.all-3.5.js
│ │ │ ├── jquery.ztree.all-3.5.min.js
│ │ │ ├── jquery.ztree.core-3.5.js
│ │ │ ├── jquery.ztree.core-3.5.min.js
│ │ │ ├── jquery.ztree.excheck-3.5.js
│ │ │ ├── jquery.ztree.excheck-3.5.min.js
│ │ │ ├── jquery.ztree.exedit-3.5.js
│ │ │ ├── jquery.ztree.exedit-3.5.min.js
│ │ │ ├── jquery.ztree.exedit.js
│ │ │ ├── jquery.ztree.exhide-3.5.js
│ │ │ └── jquery.ztree.exhide-3.5.min.js
│ │ ├── login.jsp
│ │ ├── static
│ │ │ ├── bootstrap.min.css
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── favicon.ico
│ │ │ ├── h-ui
│ │ │ │ ├── css
│ │ │ │ │ ├── H-ui.css
│ │ │ │ │ ├── H-ui.ie.css
│ │ │ │ │ ├── H-ui.min.css
│ │ │ │ │ └── H-ui.reset.css
│ │ │ │ ├── images
│ │ │ │ │ ├── acrossTab
│ │ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ │ ├── acrossTab-close.png
│ │ │ │ │ │ └── acrossTab.png
│ │ │ │ │ ├── dataTable
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ └── sort_desc.png
│ │ │ │ │ ├── dropDown
│ │ │ │ │ │ └── icon-jt.png
│ │ │ │ │ ├── face
│ │ │ │ │ │ ├── 201.gif
│ │ │ │ │ │ ├── 202.gif
│ │ │ │ │ │ ├── 203.gif
│ │ │ │ │ │ ├── 204.gif
│ │ │ │ │ │ ├── 205.gif
│ │ │ │ │ │ ├── 206.gif
│ │ │ │ │ │ ├── 207.gif
│ │ │ │ │ │ ├── 208.gif
│ │ │ │ │ │ ├── 209.gif
│ │ │ │ │ │ ├── 210.gif
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ └── 9.gif
│ │ │ │ │ ├── Hui-tags
│ │ │ │ │ │ └── empty.png
│ │ │ │ │ ├── iCheck
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ │ ├── minimal.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── iconpic-arrow.png
│ │ │ │ │ ├── jselect
│ │ │ │ │ │ └── iconpic-arrow-down2.png
│ │ │ │ │ ├── loading
│ │ │ │ │ │ ├── loading-b.gif
│ │ │ │ │ │ └── loading-s.gif
│ │ │ │ │ ├── rollpic
│ │ │ │ │ │ └── unslider-arrow.png
│ │ │ │ │ ├── star
│ │ │ │ │ │ ├── iconpic-star-S-default.png
│ │ │ │ │ │ └── iconpic-star-S.png
│ │ │ │ │ ├── steps
│ │ │ │ │ │ ├── step_arrow-active.png
│ │ │ │ │ │ ├── step_arrow.png
│ │ │ │ │ │ ├── step_bg-active.png
│ │ │ │ │ │ └── step_bg.png
│ │ │ │ │ ├── ucnter
│ │ │ │ │ │ ├── avatar-default.jpg
│ │ │ │ │ │ ├── avatar-default-S.gif
│ │ │ │ │ │ ├── avatar.png
│ │ │ │ │ │ └── noavatar_small.gif
│ │ │ │ │ ├── validform
│ │ │ │ │ │ ├── iconpic-error.png
│ │ │ │ │ │ ├── iconpic-right.png
│ │ │ │ │ │ └── iconpic-warning.png
│ │ │ │ │ └── verticalTab
│ │ │ │ │ ├── tab_bg.png
│ │ │ │ │ ├── tabNav-active.png
│ │ │ │ │ ├── tabNav-hover.png
│ │ │ │ │ ├── tabNav.png
│ │ │ │ │ ├── tabNav_right-active.png
│ │ │ │ │ ├── tabNav_right-hover.png
│ │ │ │ │ └── tabNav_right.png
│ │ │ │ └── js
│ │ │ │ ├── H-ui.js
│ │ │ │ └── H-ui.min.js
│ │ │ ├── h-ui.admin
│ │ │ │ ├── css
│ │ │ │ │ ├── H-ui.admin.css
│ │ │ │ │ ├── H-ui.login.css
│ │ │ │ │ └── style.css
│ │ │ │ ├── images
│ │ │ │ │ ├── acrossTab
│ │ │ │ │ │ └── acrossTab-2.png
│ │ │ │ │ ├── admin-login-bg.jpg
│ │ │ │ │ ├── admin-loginform-bg.png
│ │ │ │ │ ├── cn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── logo.png
│ │ │ │ │ └── um.gif
│ │ │ │ ├── js
│ │ │ │ │ ├── de_DE.txt
│ │ │ │ │ └── H-ui.admin.js
│ │ │ │ └── skin
│ │ │ │ ├── blue
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── default
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── green
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── orange
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── red
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ └── yellow
│ │ │ │ ├── acrossTab-bg.png
│ │ │ │ ├── acrossTab.png
│ │ │ │ ├── icon_arrow.png
│ │ │ │ └── skin.css
│ │ │ └── login
│ │ │ ├── DrawServlet
│ │ │ ├── ext-all-debug.js.下载
│ │ │ ├── ext-base.js.下载
│ │ │ ├── font-awesome.min.css
│ │ │ ├── jquery-1.10.2.min.js.下载
│ │ │ ├── login.css
│ │ │ └── OAuthLogin.js
│ │ └── WEB-INF
│ │ ├── jsp
│ │ │ ├── s_common.jsp
│ │ │ ├── s_grzl.jsp
│ │ │ ├── s_gzzqjcb.jsp
│ │ │ ├── s_index.jsp
│ │ │ ├── s_ktsms.jsp
│ │ │ ├── s_ktsqb.jsp
│ │ │ ├── s_mytopicinfo.jsp
│ │ │ ├── s_mytopic.jsp
│ │ │ ├── s_topicselect.jsp
│ │ │ ├── s_upktbg.jsp
│ │ │ ├── s_upzdjl.jsp
│ │ │ ├── s_upzqbg.jsp
│ │ │ ├── t_common.jsp
│ │ │ ├── t_grzl.jsp
│ │ │ ├── t_index.jsp
│ │ │ ├── t_scktrws.jsp
│ │ │ ├── t_studentlist.jsp
│ │ │ ├── t_topicselect.jsp
│ │ │ ├── t_xcgzzqjcb.jsp
│ │ │ ├── t_xcktsqs.jsp
│ │ │ ├── t_xsktbg.jsp
│ │ │ ├── t_xszdjl.jsp
│ │ │ └── t_xszqbg.jsp
│ │ ├── lib
│ │ │ ├── datatables
│ │ │ │ └── 1.10.0
│ │ │ │ └── jquery.dataTables.min.js
│ │ │ ├── DD_belatedPNG_0.0.8a-min.js
│ │ │ ├── echarts
│ │ │ │ └── 3.4.0
│ │ │ │ └── echarts.common.min.js
│ │ │ ├── expressInstall.swf
│ │ │ ├── hcharts
│ │ │ │ └── Highcharts
│ │ │ │ └── 5.0.6
│ │ │ │ ├── js
│ │ │ │ │ ├── highcharts-3d.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── accessibility.js
│ │ │ │ │ │ ├── accessibility.src.js
│ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ ├── boost.js
│ │ │ │ │ │ ├── boost.src.js
│ │ │ │ │ │ ├── broken-axis.js
│ │ │ │ │ │ ├── broken-axis.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── gantt.js
│ │ │ │ │ │ ├── gantt.src.js
│ │ │ │ │ │ ├── grid-axis.js
│ │ │ │ │ │ ├── grid-axis.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ │ │ ├── offline-exporting.js
│ │ │ │ │ │ ├── offline-exporting.src.js
│ │ │ │ │ │ ├── overlapping-datalabels.js
│ │ │ │ │ │ ├── overlapping-datalabels.src.js
│ │ │ │ │ │ ├── series-label.js
│ │ │ │ │ │ ├── series-label.src.js
│ │ │ │ │ │ ├── solid-gauge.js
│ │ │ │ │ │ ├── solid-gauge.src.js
│ │ │ │ │ │ ├── treemap.js
│ │ │ │ │ │ ├── treemap.src.js
│ │ │ │ │ │ ├── xrange-series.js
│ │ │ │ │ │ └── xrange-series.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ ├── dark-green.js
│ │ │ │ │ ├── dark-unica.js
│ │ │ │ │ ├── gray.js
│ │ │ │ │ ├── grid.js
│ │ │ │ │ ├── grid-light.js
│ │ │ │ │ ├── sand-signika.js
│ │ │ │ │ └── skies.js
│ │ │ │ ├── license.pdf
│ │ │ │ └── readme.txt
│ │ │ ├── html5shiv.js
│ │ │ ├── Hui-iconfont
│ │ │ │ └── 1.0.8
│ │ │ │ ├── demo.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.min.css
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── jquery
│ │ │ │ └── 1.9.1
│ │ │ │ ├── jquery.js
│ │ │ │ └── jquery.min.js
│ │ │ ├── jquery.contextmenu
│ │ │ │ └── jquery.contextmenu.r2.js
│ │ │ ├── jquery.SuperSlide
│ │ │ │ └── 2.1.1
│ │ │ │ └── jquery.SuperSlide.min.js
│ │ │ ├── jquery.validation
│ │ │ │ └── 1.14.0
│ │ │ │ ├── additional-methods.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── messages_zh.js
│ │ │ │ └── validate-methods.js
│ │ │ ├── jselect-1.0.js
│ │ │ ├── layer
│ │ │ │ └── 2.4
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ ├── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ └── layer.css
│ │ │ ├── laypage
│ │ │ │ └── 1.2
│ │ │ │ ├── laypage.js
│ │ │ │ └── skin
│ │ │ │ └── laypage.css
│ │ │ ├── lightbox2
│ │ │ │ └── 2.8.1
│ │ │ │ ├── css
│ │ │ │ │ └── lightbox.css
│ │ │ │ ├── examples.html
│ │ │ │ ├── images
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── next.png
│ │ │ │ │ └── prev.png
│ │ │ │ └── js
│ │ │ │ ├── lightbox.js
│ │ │ │ ├── lightbox.min.js
│ │ │ │ ├── lightbox.min.map
│ │ │ │ ├── lightbox-plus-jquery.js
│ │ │ │ ├── lightbox-plus-jquery.min.js
│ │ │ │ └── lightbox-plus-jquery.min.map
│ │ │ ├── My97DatePicker
│ │ │ │ └── 4.8
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ ├── twoer
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ ├── datepicker-dev.css
│ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ └── img.png
│ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ └── whyGreen
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── WdatePicker.js
│ │ │ ├── nprogress
│ │ │ │ └── 0.2.0
│ │ │ │ ├── nprogress.css
│ │ │ │ ├── nprogress.js
│ │ │ │ ├── nprogress.min.css
│ │ │ │ └── nprogress.min.js
│ │ │ ├── respond.min.js
│ │ │ ├── squid.js
│ │ │ ├── swfobject.js
│ │ │ ├── webuploader
│ │ │ │ └── 0.1.5
│ │ │ │ ├── cropper
│ │ │ │ │ ├── cropper.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── uploader.js
│ │ │ │ ├── expressInstall.swf
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── icons.psd
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── progress.psd
│ │ │ │ │ └── success.png
│ │ │ │ ├── image-upload
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── upload.js
│ │ │ │ ├── md5-demo
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── script.js
│ │ │ │ ├── README.md
│ │ │ │ ├── requirejs
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── require.js
│ │ │ │ ├── server
│ │ │ │ │ ├── crossdomain.xml
│ │ │ │ │ ├── fileupload2.php
│ │ │ │ │ ├── fileupload.php
│ │ │ │ │ └── preview.php
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.fis.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.noimage.js
│ │ │ │ ├── webuploader.noimage.min.js
│ │ │ │ ├── webuploader.nolog.js
│ │ │ │ ├── webuploader.nolog.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── zTree
│ │ │ └── v3
│ │ │ ├── api
│ │ │ │ ├── API_cn.html
│ │ │ │ ├── apiCss
│ │ │ │ │ ├── api.js
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── common_ie6.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── apiMenu.gif
│ │ │ │ │ │ ├── apiMenu.png
│ │ │ │ │ │ ├── background.jpg
│ │ │ │ │ │ ├── chinese.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── contact-bg.png
│ │ │ │ │ │ ├── english.png
│ │ │ │ │ │ ├── header-bg.png
│ │ │ │ │ │ ├── lightbulb.png
│ │ │ │ │ │ ├── overlay_arrow.gif
│ │ │ │ │ │ ├── overlay_arrow.png
│ │ │ │ │ │ ├── overlay_bg.png
│ │ │ │ │ │ ├── overlay_close_IE6.gif
│ │ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ │ └── zTreeStandard.png
│ │ │ │ │ ├── jquery-1.6.2.min.js
│ │ │ │ │ ├── jquery.ztree.core-3.5.js
│ │ │ │ │ └── zTreeStyleForApi.css
│ │ │ │ ├── API_en.html
│ │ │ │ ├── cn
│ │ │ │ │ ├── fn.zTree.destroy.html
│ │ │ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ │ │ ├── fn.zTree.init.html
│ │ │ │ │ ├── fn.zTree._z.html
│ │ │ │ │ ├── setting.async.autoParam.html
│ │ │ │ │ ├── setting.async.contentType.html
│ │ │ │ │ ├── setting.async.dataFilter.html
│ │ │ │ │ ├── setting.async.dataType.html
│ │ │ │ │ ├── setting.async.enable.html
│ │ │ │ │ ├── setting.async.otherParam.html
│ │ │ │ │ ├── setting.async.type.html
│ │ │ │ │ ├── setting.async.url.html
│ │ │ │ │ ├── setting.callback.beforeAsync.html
│ │ │ │ │ ├── setting.callback.beforeCheck.html
│ │ │ │ │ ├── setting.callback.beforeClick.html
│ │ │ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ │ │ ├── setting.callback.beforeDrag.html
│ │ │ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ │ │ ├── setting.callback.beforeDrop.html
│ │ │ │ │ ├── setting.callback.beforeEditName.html
│ │ │ │ │ ├── setting.callback.beforeExpand.html
│ │ │ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ │ │ ├── setting.callback.beforeRemove.html
│ │ │ │ │ ├── setting.callback.beforeRename.html
│ │ │ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ │ │ ├── setting.callback.onAsyncError.html
│ │ │ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ │ │ ├── setting.callback.onCheck.html
│ │ │ │ │ ├── setting.callback.onClick.html
│ │ │ │ │ ├── setting.callback.onCollapse.html
│ │ │ │ │ ├── setting.callback.onDblClick.html
│ │ │ │ │ ├── setting.callback.onDrag.html
│ │ │ │ │ ├── setting.callback.onDragMove.html
│ │ │ │ │ ├── setting.callback.onDrop.html
│ │ │ │ │ ├── setting.callback.onExpand.html
│ │ │ │ │ ├── setting.callback.onMouseDown.html
│ │ │ │ │ ├── setting.callback.onMouseUp.html
│ │ │ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ │ │ ├── setting.callback.onRemove.html
│ │ │ │ │ ├── setting.callback.onRename.html
│ │ │ │ │ ├── setting.callback.onRightClick.html
│ │ │ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ │ │ ├── setting.check.chkboxType.html
│ │ │ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ │ │ ├── setting.check.chkStyle.html
│ │ │ │ │ ├── setting.check.enable.html
│ │ │ │ │ ├── setting.check.nocheckInherit.html
│ │ │ │ │ ├── setting.check.radioType.html
│ │ │ │ │ ├── setting.data.keep.leaf.html
│ │ │ │ │ ├── setting.data.keep.parent.html
│ │ │ │ │ ├── setting.data.key.checked.html
│ │ │ │ │ ├── setting.data.key.children.html
│ │ │ │ │ ├── setting.data.key.name.html
│ │ │ │ │ ├── setting.data.key.title.html
│ │ │ │ │ ├── setting.data.key.url.html
│ │ │ │ │ ├── setting.data.simpleData.enable.html
│ │ │ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ │ │ ├── setting.edit.drag.inner.html
│ │ │ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ │ │ ├── setting.edit.drag.isMove.html
│ │ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ │ │ ├── setting.edit.drag.next.html
│ │ │ │ │ ├── setting.edit.drag.prev.html
│ │ │ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ │ │ ├── setting.edit.enable.html
│ │ │ │ │ ├── setting.edit.removeTitle.html
│ │ │ │ │ ├── setting.edit.renameTitle.html
│ │ │ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ │ │ ├── setting.treeId.html
│ │ │ │ │ ├── setting.treeObj.html
│ │ │ │ │ ├── setting.view.addDiyDom.html
│ │ │ │ │ ├── setting.view.addHoverDom.html
│ │ │ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ │ │ ├── setting.view.dblClickExpand.html
│ │ │ │ │ ├── setting.view.expandSpeed.html
│ │ │ │ │ ├── setting.view.fontCss.html
│ │ │ │ │ ├── setting.view.nameIsHTML.html
│ │ │ │ │ ├── setting.view.removeHoverDom.html
│ │ │ │ │ ├── setting.view.selectedMulti.html
│ │ │ │ │ ├── setting.view.showIcon.html
│ │ │ │ │ ├── setting.view.showLine.html
│ │ │ │ │ ├── setting.view.showTitle.html
│ │ │ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ │ │ ├── treeNode.check_Child_State.html
│ │ │ │ │ ├── treeNode.checked.html
│ │ │ │ │ ├── treeNode.checkedOld.html
│ │ │ │ │ ├── treeNode.check_Focus.html
│ │ │ │ │ ├── treeNode.children.html
│ │ │ │ │ ├── treeNode.chkDisabled.html
│ │ │ │ │ ├── treeNode.click.html
│ │ │ │ │ ├── treeNode.diy.html
│ │ │ │ │ ├── treeNode.editNameFlag.html
│ │ │ │ │ ├── treeNode.getCheckStatus.html
│ │ │ │ │ ├── treeNode.getNextNode.html
│ │ │ │ │ ├── treeNode.getParentNode.html
│ │ │ │ │ ├── treeNode.getPreNode.html
│ │ │ │ │ ├── treeNode.halfCheck.html
│ │ │ │ │ ├── treeNode.iconClose.html
│ │ │ │ │ ├── treeNode.icon.html
│ │ │ │ │ ├── treeNode.iconOpen.html
│ │ │ │ │ ├── treeNode.iconSkin.html
│ │ │ │ │ ├── treeNode.isAjaxing.html
│ │ │ │ │ ├── treeNode.isFirstNode.html
│ │ │ │ │ ├── treeNode.isHidden.html
│ │ │ │ │ ├── treeNode.isHover.html
│ │ │ │ │ ├── treeNode.isLastNode.html
│ │ │ │ │ ├── treeNode.isParent.html
│ │ │ │ │ ├── treeNode.level.html
│ │ │ │ │ ├── treeNode.name.html
│ │ │ │ │ ├── treeNode.nocheck.html
│ │ │ │ │ ├── treeNode.open.html
│ │ │ │ │ ├── treeNode.parentTId.html
│ │ │ │ │ ├── treeNode.target.html
│ │ │ │ │ ├── treeNode.tId.html
│ │ │ │ │ ├── treeNode.url.html
│ │ │ │ │ ├── treeNode.zAsync.html
│ │ │ │ │ ├── zTreeObj.addNodes.html
│ │ │ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ │ │ ├── zTreeObj.checkNode.html
│ │ │ │ │ ├── zTreeObj.copyNode.html
│ │ │ │ │ ├── zTreeObj.destroy.html
│ │ │ │ │ ├── zTreeObj.editName.html
│ │ │ │ │ ├── zTreeObj.expandAll.html
│ │ │ │ │ ├── zTreeObj.expandNode.html
│ │ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ │ │ ├── zTreeObj.getNodes.html
│ │ │ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ │ │ ├── zTreeObj.hideNode.html
│ │ │ │ │ ├── zTreeObj.hideNodes.html
│ │ │ │ │ ├── zTreeObj.moveNode.html
│ │ │ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ │ │ ├── zTreeObj.refresh.html
│ │ │ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ │ │ ├── zTreeObj.removeNode.html
│ │ │ │ │ ├── zTreeObj.selectNode.html
│ │ │ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ │ │ ├── zTreeObj.setEditable.html
│ │ │ │ │ ├── zTreeObj.setting.html
│ │ │ │ │ ├── zTreeObj.showNode.html
│ │ │ │ │ ├── zTreeObj.showNodes.html
│ │ │ │ │ ├── zTreeObj.transformToArray.html
│ │ │ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ │ │ └── zTreeObj.updateNode.html
│ │ │ │ └── en
│ │ │ │ ├── fn.zTree.destroy.html
│ │ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ │ ├── fn.zTree.init.html
│ │ │ │ ├── fn.zTree._z.html
│ │ │ │ ├── setting.async.autoParam.html
│ │ │ │ ├── setting.async.contentType.html
│ │ │ │ ├── setting.async.dataFilter.html
│ │ │ │ ├── setting.async.dataType.html
│ │ │ │ ├── setting.async.enable.html
│ │ │ │ ├── setting.async.otherParam.html
│ │ │ │ ├── setting.async.type.html
│ │ │ │ ├── setting.async.url.html
│ │ │ │ ├── setting.callback.beforeAsync.html
│ │ │ │ ├── setting.callback.beforeCheck.html
│ │ │ │ ├── setting.callback.beforeClick.html
│ │ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ │ ├── setting.callback.beforeDrag.html
│ │ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ │ ├── setting.callback.beforeDrop.html
│ │ │ │ ├── setting.callback.beforeEditName.html
│ │ │ │ ├── setting.callback.beforeExpand.html
│ │ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ │ ├── setting.callback.beforeRemove.html
│ │ │ │ ├── setting.callback.beforeRename.html
│ │ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ │ ├── setting.callback.onAsyncError.html
│ │ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ │ ├── setting.callback.onCheck.html
│ │ │ │ ├── setting.callback.onClick.html
│ │ │ │ ├── setting.callback.onCollapse.html
│ │ │ │ ├── setting.callback.onDblClick.html
│ │ │ │ ├── setting.callback.onDrag.html
│ │ │ │ ├── setting.callback.onDragMove.html
│ │ │ │ ├── setting.callback.onDrop.html
│ │ │ │ ├── setting.callback.onExpand.html
│ │ │ │ ├── setting.callback.onMouseDown.html
│ │ │ │ ├── setting.callback.onMouseUp.html
│ │ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ │ ├── setting.callback.onRemove.html
│ │ │ │ ├── setting.callback.onRename.html
│ │ │ │ ├── setting.callback.onRightClick.html
│ │ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ │ ├── setting.check.chkboxType.html
│ │ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ │ ├── setting.check.chkStyle.html
│ │ │ │ ├── setting.check.enable.html
│ │ │ │ ├── setting.check.nocheckInherit.html
│ │ │ │ ├── setting.check.radioType.html
│ │ │ │ ├── setting.data.keep.leaf.html
│ │ │ │ ├── setting.data.keep.parent.html
│ │ │ │ ├── setting.data.key.checked.html
│ │ │ │ ├── setting.data.key.children.html
│ │ │ │ ├── setting.data.key.name.html
│ │ │ │ ├── setting.data.key.title.html
│ │ │ │ ├── setting.data.key.url.html
│ │ │ │ ├── setting.data.simpleData.enable.html
│ │ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ │ ├── setting.edit.drag.inner.html
│ │ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ │ ├── setting.edit.drag.isMove.html
│ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ │ ├── setting.edit.drag.next.html
│ │ │ │ ├── setting.edit.drag.prev.html
│ │ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ │ ├── setting.edit.enable.html
│ │ │ │ ├── setting.edit.removeTitle.html
│ │ │ │ ├── setting.edit.renameTitle.html
│ │ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ │ ├── setting.treeId.html
│ │ │ │ ├── setting.treeObj.html
│ │ │ │ ├── setting.view.addDiyDom.html
│ │ │ │ ├── setting.view.addHoverDom.html
│ │ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ │ ├── setting.view.dblClickExpand.html
│ │ │ │ ├── setting.view.expandSpeed.html
│ │ │ │ ├── setting.view.fontCss.html
│ │ │ │ ├── setting.view.nameIsHTML.html
│ │ │ │ ├── setting.view.removeHoverDom.html
│ │ │ │ ├── setting.view.selectedMulti.html
│ │ │ │ ├── setting.view.showIcon.html
│ │ │ │ ├── setting.view.showLine.html
│ │ │ │ ├── setting.view.showTitle.html
│ │ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ │ ├── treeNode.check_Child_State.html
│ │ │ │ ├── treeNode.checked.html
│ │ │ │ ├── treeNode.checkedOld.html
│ │ │ │ ├── treeNode.check_Focus.html
│ │ │ │ ├── treeNode.children.html
│ │ │ │ ├── treeNode.chkDisabled.html
│ │ │ │ ├── treeNode.click.html
│ │ │ │ ├── treeNode.diy.html
│ │ │ │ ├── treeNode.editNameFlag.html
│ │ │ │ ├── treeNode.getCheckStatus.html
│ │ │ │ ├── treeNode.getNextNode.html
│ │ │ │ ├── treeNode.getParentNode.html
│ │ │ │ ├── treeNode.getPreNode.html
│ │ │ │ ├── treeNode.halfCheck.html
│ │ │ │ ├── treeNode.iconClose.html
│ │ │ │ ├── treeNode.icon.html
│ │ │ │ ├── treeNode.iconOpen.html
│ │ │ │ ├── treeNode.iconSkin.html
│ │ │ │ ├── treeNode.isAjaxing.html
│ │ │ │ ├── treeNode.isFirstNode.html
│ │ │ │ ├── treeNode.isHidden.html
│ │ │ │ ├── treeNode.isHover.html
│ │ │ │ ├── treeNode.isLastNode.html
│ │ │ │ ├── treeNode.isParent.html
│ │ │ │ ├── treeNode.level.html
│ │ │ │ ├── treeNode.name.html
│ │ │ │ ├── treeNode.nocheck.html
│ │ │ │ ├── treeNode.open.html
│ │ │ │ ├── treeNode.parentTId.html
│ │ │ │ ├── treeNode.target.html
│ │ │ │ ├── treeNode.tId.html
│ │ │ │ ├── treeNode.url.html
│ │ │ │ ├── treeNode.zAsync.html
│ │ │ │ ├── zTreeObj.addNodes.html
│ │ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ │ ├── zTreeObj.checkNode.html
│ │ │ │ ├── zTreeObj.copyNode.html
│ │ │ │ ├── zTreeObj.destroy.html
│ │ │ │ ├── zTreeObj.editName.html
│ │ │ │ ├── zTreeObj.expandAll.html
│ │ │ │ ├── zTreeObj.expandNode.html
│ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ │ ├── zTreeObj.getNodes.html
│ │ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ │ ├── zTreeObj.hideNode.html
│ │ │ │ ├── zTreeObj.hideNodes.html
│ │ │ │ ├── zTreeObj.moveNode.html
│ │ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ │ ├── zTreeObj.refresh.html
│ │ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ │ ├── zTreeObj.removeNode.html
│ │ │ │ ├── zTreeObj.selectNode.html
│ │ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ │ ├── zTreeObj.setEditable.html
│ │ │ │ ├── zTreeObj.setting.html
│ │ │ │ ├── zTreeObj.showNode.html
│ │ │ │ ├── zTreeObj.showNodes.html
│ │ │ │ ├── zTreeObj.transformToArray.html
│ │ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ │ └── zTreeObj.updateNode.html
│ │ │ ├── css
│ │ │ │ ├── metroStyle
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ └── metro.png
│ │ │ │ │ └── metroStyle.css
│ │ │ │ └── zTreeStyle
│ │ │ │ ├── img
│ │ │ │ │ ├── diy
│ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ └── 9.png
│ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ └── zTreeStandard.png
│ │ │ │ └── zTreeStyle.css
│ │ │ └── js
│ │ │ ├── jquery.ztree.all-3.5.js
│ │ │ ├── jquery.ztree.all-3.5.min.js
│ │ │ ├── jquery.ztree.core-3.5.js
│ │ │ ├── jquery.ztree.core-3.5.min.js
│ │ │ ├── jquery.ztree.excheck-3.5.js
│ │ │ ├── jquery.ztree.excheck-3.5.min.js
│ │ │ ├── jquery.ztree.exedit-3.5.js
│ │ │ ├── jquery.ztree.exedit-3.5.min.js
│ │ │ ├── jquery.ztree.exedit.js
│ │ │ ├── jquery.ztree.exhide-3.5.js
│ │ │ └── jquery.ztree.exhide-3.5.min.js
│ │ ├── static
│ │ │ ├── bootstrap.min.css
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── favicon.ico
│ │ │ ├── h-ui
│ │ │ │ ├── css
│ │ │ │ │ ├── H-ui.css
│ │ │ │ │ ├── H-ui.ie.css
│ │ │ │ │ ├── H-ui.min.css
│ │ │ │ │ └── H-ui.reset.css
│ │ │ │ ├── images
│ │ │ │ │ ├── acrossTab
│ │ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ │ ├── acrossTab-close.png
│ │ │ │ │ │ └── acrossTab.png
│ │ │ │ │ ├── dataTable
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ └── sort_desc.png
│ │ │ │ │ ├── dropDown
│ │ │ │ │ │ └── icon-jt.png
│ │ │ │ │ ├── face
│ │ │ │ │ │ ├── 201.gif
│ │ │ │ │ │ ├── 202.gif
│ │ │ │ │ │ ├── 203.gif
│ │ │ │ │ │ ├── 204.gif
│ │ │ │ │ │ ├── 205.gif
│ │ │ │ │ │ ├── 206.gif
│ │ │ │ │ │ ├── 207.gif
│ │ │ │ │ │ ├── 208.gif
│ │ │ │ │ │ ├── 209.gif
│ │ │ │ │ │ ├── 210.gif
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ └── 9.gif
│ │ │ │ │ ├── Hui-tags
│ │ │ │ │ │ └── empty.png
│ │ │ │ │ ├── iCheck
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ │ ├── minimal.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── iconpic-arrow.png
│ │ │ │ │ ├── jselect
│ │ │ │ │ │ └── iconpic-arrow-down2.png
│ │ │ │ │ ├── loading
│ │ │ │ │ │ ├── loading-b.gif
│ │ │ │ │ │ └── loading-s.gif
│ │ │ │ │ ├── rollpic
│ │ │ │ │ │ └── unslider-arrow.png
│ │ │ │ │ ├── star
│ │ │ │ │ │ ├── iconpic-star-S-default.png
│ │ │ │ │ │ └── iconpic-star-S.png
│ │ │ │ │ ├── steps
│ │ │ │ │ │ ├── step_arrow-active.png
│ │ │ │ │ │ ├── step_arrow.png
│ │ │ │ │ │ ├── step_bg-active.png
│ │ │ │ │ │ └── step_bg.png
│ │ │ │ │ ├── ucnter
│ │ │ │ │ │ ├── avatar-default.jpg
│ │ │ │ │ │ ├── avatar-default-S.gif
│ │ │ │ │ │ ├── avatar.png
│ │ │ │ │ │ └── noavatar_small.gif
│ │ │ │ │ ├── validform
│ │ │ │ │ │ ├── iconpic-error.png
│ │ │ │ │ │ ├── iconpic-right.png
│ │ │ │ │ │ └── iconpic-warning.png
│ │ │ │ │ └── verticalTab
│ │ │ │ │ ├── tab_bg.png
│ │ │ │ │ ├── tabNav-active.png
│ │ │ │ │ ├── tabNav-hover.png
│ │ │ │ │ ├── tabNav.png
│ │ │ │ │ ├── tabNav_right-active.png
│ │ │ │ │ ├── tabNav_right-hover.png
│ │ │ │ │ └── tabNav_right.png
│ │ │ │ └── js
│ │ │ │ ├── H-ui.js
│ │ │ │ └── H-ui.min.js
│ │ │ ├── h-ui.admin
│ │ │ │ ├── css
│ │ │ │ │ ├── H-ui.admin.css
│ │ │ │ │ ├── H-ui.login.css
│ │ │ │ │ └── style.css
│ │ │ │ ├── images
│ │ │ │ │ ├── acrossTab
│ │ │ │ │ │ └── acrossTab-2.png
│ │ │ │ │ ├── admin-login-bg.jpg
│ │ │ │ │ ├── admin-loginform-bg.png
│ │ │ │ │ ├── cn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── logo.png
│ │ │ │ │ └── um.gif
│ │ │ │ ├── js
│ │ │ │ │ ├── de_DE.txt
│ │ │ │ │ └── H-ui.admin.js
│ │ │ │ └── skin
│ │ │ │ ├── blue
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── default
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── green
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── orange
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ ├── red
│ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ └── skin.css
│ │ │ │ └── yellow
│ │ │ │ ├── acrossTab-bg.png
│ │ │ │ ├── acrossTab.png
│ │ │ │ ├── icon_arrow.png
│ │ │ │ └── skin.css
│ │ │ └── login
│ │ │ ├── DrawServlet
│ │ │ ├── ext-all-debug.js.下载
│ │ │ ├── ext-base.js.下载
│ │ │ ├── font-awesome.min.css
│ │ │ ├── jquery-1.10.2.min.js.下载
│ │ │ ├── login.css
│ │ │ └── OAuthLogin.js
│ │ ├── tld
│ │ │ └── commons.tld
│ │ └── web.xml
│ └── target
│ ├── classes
│ │ ├── conf
│ │ │ ├── db.properties
│ │ │ └── mybatis-config.xml
│ │ ├── llhc
│ │ │ ├── commom
│ │ │ │ ├── encode
│ │ │ │ │ ├── Md5Pwd.class
│ │ │ │ │ └── Md5PwdImpl.class
│ │ │ │ ├── FileUtils
│ │ │ │ │ └── FileDelete.class
│ │ │ │ ├── paginglabel
│ │ │ │ │ ├── NavigationTag.class
│ │ │ │ │ └── Page.class
│ │ │ │ ├── poi
│ │ │ │ │ └── ExcelUtil.class
│ │ │ │ ├── UUID
│ │ │ │ │ └── CommonsUtils.class
│ │ │ │ └── web
│ │ │ │ ├── Constants.class
│ │ │ │ └── session
│ │ │ │ ├── HttpSessionProvider.class
│ │ │ │ └── SessionProvider.class
│ │ │ ├── controller
│ │ │ │ ├── FileController.class
│ │ │ │ ├── JcaptchaImageCreater.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── StudentController.class
│ │ │ │ └── TeacherController.class
│ │ │ ├── dao
│ │ │ │ ├── NewMapper.class
│ │ │ │ ├── NewMapper.xml
│ │ │ │ ├── StudentMapper.class
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TbFileMapper.class
│ │ │ │ ├── TbFileMapper.xml
│ │ │ │ ├── TeacherMapper.class
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── TopicMapper.class
│ │ │ │ └── TopicMapper.xml
│ │ │ ├── interceptor
│ │ │ │ └── LoginInterceptor.class
│ │ │ ├── listener
│ │ │ │ └── SessionCounter.class
│ │ │ ├── pojo
│ │ │ │ ├── ExcelBean.class
│ │ │ │ ├── ExcelQueryVo.class
│ │ │ │ ├── MyStudentQueryVo.class
│ │ │ │ ├── New.class
│ │ │ │ ├── QueryVo.class
│ │ │ │ ├── Student.class
│ │ │ │ ├── StuQueryVo.class
│ │ │ │ ├── TbFile.class
│ │ │ │ ├── TeacherAndTopicAndStudentQueryVo.class
│ │ │ │ ├── Teacher.class
│ │ │ │ ├── Topic.class
│ │ │ │ ├── TopicExample$Criteria.class
│ │ │ │ ├── TopicExample$Criterion.class
│ │ │ │ ├── TopicExample$GeneratedCriteria.class
│ │ │ │ └── TopicExample.class
│ │ │ └── service
│ │ │ ├── FileService.class
│ │ │ ├── FileServiceImpl.class
│ │ │ ├── NewService.class
│ │ │ ├── NewServiceImpl.class
│ │ │ ├── StudentService.class
│ │ │ ├── StudentServiceImpl.class
│ │ │ ├── TeacherService.class
│ │ │ ├── TeacherServiceImpl.class
│ │ │ ├── TopicService.class
│ │ │ └── TopicServiceImpl.class
│ │ └── spring
│ │ ├── applicationContext-captcha.xml
│ │ ├── applicationContext-dao.xml
│ │ ├── applicationContext-service.xml
│ │ ├── applicationContext-trans.xml
│ │ ├── applicationContext-utils.xml
│ │ └── springmvc.xml
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ └── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── tomcat
│ ├── conf
│ │ ├── logging.properties
│ │ ├── tomcat-users.xml
│ │ └── web.xml
│ ├── logs
│ │ └── access_log.2019-03-31
│ └── work
│ └── Tomcat
│ └── localhost
│ └── _
│ └── org
│ └── apache
│ └── jsp
│ ├── login_jsp.class
│ ├── login_jsp.java
│ └── WEB_002dINF
│ └── jsp
│ ├── s_005findex_jsp.class
│ ├── s_005findex_jsp.java
│ ├── s_005fktsqb_jsp.class
│ ├── s_005fktsqb_jsp.java
│ ├── s_005fmytopicinfo_jsp.class
│ ├── s_005fmytopicinfo_jsp.java
│ ├── s_005fmytopic_jsp.class
│ ├── s_005fmytopic_jsp.java
│ ├── s_005ftopicselect_jsp.class
│ ├── s_005ftopicselect_jsp.java
│ ├── s_005fupzqbg_jsp.class
│ ├── s_005fupzqbg_jsp.java
│ ├── t_005findex_jsp.class
│ ├── t_005findex_jsp.java
│ ├── t_005fscktrws_jsp.class
│ ├── t_005fscktrws_jsp.java
│ ├── t_005fstudentlist_jsp.class
│ ├── t_005fstudentlist_jsp.java
│ ├── t_005ftopicselect_jsp.class
│ ├── t_005ftopicselect_jsp.java
│ ├── t_005fxcktsqs_jsp.class
│ └── t_005fxcktsqs_jsp.java
└── llhc-tms.sql
274 directories, 1763 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论