实例介绍
基于java的SpringMVC+mybatis+mysql的保险项目,主要是后台管理系统
【实例截图】
【核心代码】
be74bd47-c1e0-4f56-8539-fbaa8b7d6f94
└── AnKangBaoXian
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ └── cn
│ │ │ └── yunhe
│ │ │ ├── controller
│ │ │ │ ├── BaoxianguanliAction.java
│ │ │ │ ├── Erroraction.java
│ │ │ │ ├── FuwuguanliAction.java
│ │ │ │ ├── GuanliyuanguanliAction.java
│ │ │ │ ├── HeyanguanliAction.java
│ │ │ │ ├── JiaoyiguanliAction.java
│ │ │ │ ├── LipeiguanliAction.java
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── ToIndexAction.java
│ │ │ │ ├── XitongguanliAction.java
│ │ │ │ ├── YingxiaoguanliAction.java
│ │ │ │ ├── YonghuguanliAction1.java
│ │ │ │ ├── YonghuguanliAction.java
│ │ │ │ └── ZhaoHuiMimaAction.java
│ │ │ ├── dao
│ │ │ │ ├── CarsMapper.java
│ │ │ │ ├── Fw_ClaimantMapper.java
│ │ │ │ ├── Fw_DingDanMapper.java
│ │ │ │ ├── HeyanMapper.java
│ │ │ │ ├── IAdminMapper.java
│ │ │ │ ├── IBaoxianMapper.java
│ │ │ │ ├── IBillMapper.java
│ │ │ │ ├── IBusilogMapper.java
│ │ │ │ ├── IBuyInsurMapper.java
│ │ │ │ ├── IDeptMapper.java
│ │ │ │ ├── IInsurInformationBillMapper.java
│ │ │ │ ├── IInsurJiaoFeiMapper.java
│ │ │ │ ├── IPowerMapper.java
│ │ │ │ ├── IRoleMapper.java
│ │ │ │ ├── IUserNumberMapper.java
│ │ │ │ ├── IZhaoHuiMima.java
│ │ │ │ ├── LipeiMapper.java
│ │ │ │ ├── LoginMapper.java
│ │ │ │ ├── UserGuanliMapper.java
│ │ │ │ └── UsersMapper.java
│ │ │ ├── model
│ │ │ │ ├── Admin.java
│ │ │ │ ├── Busilog.java
│ │ │ │ ├── CarInsur.java
│ │ │ │ ├── CarInsurRecord.java
│ │ │ │ ├── Cars.java
│ │ │ │ ├── Claimant.java
│ │ │ │ ├── ClaiRecord.java
│ │ │ │ ├── Dept.java
│ │ │ │ ├── InserInclude.java
│ │ │ │ ├── InsurContract.java
│ │ │ │ ├── InsurPack.java
│ │ │ │ ├── JiaoBill.java
│ │ │ │ ├── LiPei.java
│ │ │ │ ├── LiPeiJieSuan.java
│ │ │ │ ├── Member.java
│ │ │ │ ├── PeiBill.java
│ │ │ │ ├── Power.java
│ │ │ │ ├── Renewal.java
│ │ │ │ ├── Result.java
│ │ │ │ ├── Role.java
│ │ │ │ ├── Surrender.java
│ │ │ │ ├── Survey.java
│ │ │ │ ├── UserNumber.java
│ │ │ │ └── Users.java
│ │ │ ├── service
│ │ │ │ ├── aspect
│ │ │ │ │ └── LogAspect.java
│ │ │ │ ├── CarsService.java
│ │ │ │ ├── Fw_ClaimantService.java
│ │ │ │ ├── Fw_DingDanService.java
│ │ │ │ ├── HeyanService.java
│ │ │ │ ├── IAdminService.java
│ │ │ │ ├── IBaoxianService.java
│ │ │ │ ├── IBillService.java
│ │ │ │ ├── IBusilogService.java
│ │ │ │ ├── IBuyInsurService.java
│ │ │ │ ├── IDeptService.java
│ │ │ │ ├── IInsurInformationBillService.java
│ │ │ │ ├── IInsurJiaoFeiService.java
│ │ │ │ ├── ILiPeiService.java
│ │ │ │ ├── ILoginService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AdminServiceImpl.java
│ │ │ │ │ ├── BaoxianServiceImpl.java
│ │ │ │ │ ├── BillServiceImpl.java
│ │ │ │ │ ├── BusilogServiceImpl.java
│ │ │ │ │ ├── BuyInsurServiceImpl.java
│ │ │ │ │ ├── CarsServiceImpl.java
│ │ │ │ │ ├── DeptServiceImpl.java
│ │ │ │ │ ├── Fw_ClaimantServiceImpl.java
│ │ │ │ │ ├── Fw_DingDanServiceImpl.java
│ │ │ │ │ ├── IHeyenServiceImpl.java
│ │ │ │ │ ├── InsurInformationBillServiceImpl.java
│ │ │ │ │ ├── InsurJiaoFeiServiceImpl.java
│ │ │ │ │ ├── LiPeiServiceImpl.java
│ │ │ │ │ ├── LoginServiceImpl.java
│ │ │ │ │ ├── PowerSerciceImpl.java
│ │ │ │ │ ├── RoleServiceImpl.java
│ │ │ │ │ ├── UserGuanliImpl.java
│ │ │ │ │ ├── UserNumberServiceImpl.java
│ │ │ │ │ ├── UsersServiceImpl.java
│ │ │ │ │ └── ZhaoHuiMimaServiceImpl.java
│ │ │ │ ├── IPowerService.java
│ │ │ │ ├── IRoleService.java
│ │ │ │ ├── IUserNumberService.java
│ │ │ │ ├── IZhaoHuiMimaService.java
│ │ │ │ ├── UserGuanliService.java
│ │ │ │ └── UsersService.java
│ │ │ ├── shiro
│ │ │ │ ├── CustomRolesAuthorizationFilter.java
│ │ │ │ ├── ShiroRealm.java
│ │ │ │ ├── ShiroTagFreeMarkerConfigurer.java
│ │ │ │ └── ShiroTags.java
│ │ │ ├── utils
│ │ │ │ ├── CommonDate.java
│ │ │ │ ├── CommonValidate.java
│ │ │ │ ├── Config.java
│ │ │ │ ├── EmailUtil.java
│ │ │ │ ├── FileUtil.java
│ │ │ │ ├── HttpUtil.java
│ │ │ │ ├── IndustrySMS.java
│ │ │ │ ├── NetUtil.java
│ │ │ │ ├── PeiFuJieSuanUtil.java
│ │ │ │ ├── RandomStringUtil.java
│ │ │ │ ├── Result.java
│ │ │ │ ├── StringUtil.java
│ │ │ │ ├── UploadUtil.java
│ │ │ │ └── WordDefined.java
│ │ │ └── websocket
│ │ │ ├── ChatServer.java
│ │ │ ├── HttpSessionConfigurator.java
│ │ │ └── VideoServer.java
│ │ ├── resources
│ │ │ ├── db.properties
│ │ │ ├── ehcache.xml
│ │ │ ├── log4j.properties
│ │ │ ├── mapper
│ │ │ │ ├── AdminMapper.xml
│ │ │ │ ├── BaoxianMapper.xml
│ │ │ │ ├── BillMapper.xml
│ │ │ │ ├── BusilogMapper.xml
│ │ │ │ ├── BuyInsurMapper.xml
│ │ │ │ ├── CarsMapper.xml
│ │ │ │ ├── DeptMapper.xml
│ │ │ │ ├── Fw_ClaimantMapper.xml
│ │ │ │ ├── Fw_DingDanMapper.xml
│ │ │ │ ├── HeyanMapper.xml
│ │ │ │ ├── InsurInformationBillMapper.xml
│ │ │ │ ├── InsurJiaoFeiMapper.xml
│ │ │ │ ├── IZhaoHuiMimaMapper.xml
│ │ │ │ ├── LiPeiMapper.xml
│ │ │ │ ├── LoginMapper.xml
│ │ │ │ ├── PowerMapper.xml
│ │ │ │ ├── roleMapper.xml
│ │ │ │ ├── UserGuanliMapper.xml
│ │ │ │ ├── UserNumberMapper.xml
│ │ │ │ └── UsersMapper.xml
│ │ │ ├── mybatis-config.xml
│ │ │ └── spring
│ │ │ ├── applicationContext.xml
│ │ │ ├── spring-MVC.xml
│ │ │ └── spring-mybatis.xml
│ │ ├── test
│ │ │ └── cn.yunhe.test
│ │ │ └── Logtest.java
│ │ └── webapp
│ │ ├── fw-jilian-sucai
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── city-picker.css
│ │ │ │ └── main.css
│ │ │ ├── images
│ │ │ │ └── drop-arrow.png
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── city-picker.data.js
│ │ │ ├── city-picker.js
│ │ │ ├── jquery.js
│ │ │ └── main.js
│ │ ├── include
│ │ │ ├── commonfile.jsp
│ │ │ ├── footer.jsp
│ │ │ ├── header.jsp
│ │ │ └── sidebar.jsp
│ │ ├── index.jsp
│ │ ├── lay.jsp
│ │ ├── layui
│ │ │ ├── css
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules
│ │ │ │ ├── code.css
│ │ │ │ ├── laydate
│ │ │ │ │ └── default
│ │ │ │ │ └── laydate.css
│ │ │ │ └── layer
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── font
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ └── face
│ │ │ │ ├── 0.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.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
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ ├── lay
│ │ │ │ └── modules
│ │ │ │ ├── carousel.js
│ │ │ │ ├── code.js
│ │ │ │ ├── element.js
│ │ │ │ ├── flow.js
│ │ │ │ ├── form.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── laydate.js
│ │ │ │ ├── layedit.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── table.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ ├── layui.all.js
│ │ │ └── layui.js
│ │ ├── lib
│ │ │ ├── datatables
│ │ │ │ └── 1.10.0
│ │ │ │ └── jquery.dataTables.min.js
│ │ │ ├── DD_belatedPNG_0.0.8a-min.js
│ │ │ ├── duanxin
│ │ │ │ └── duanxin.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
│ │ │ ├── ueditor
│ │ │ │ └── 1.4.3
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── attachment
│ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── background
│ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ └── charts5.png
│ │ │ │ │ ├── emotion
│ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ │ ├── gmap
│ │ │ │ │ │ └── gmap.html
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ └── help.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── insertframe
│ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── show.html
│ │ │ │ │ ├── music
│ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ └── music.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ ├── scrawl
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ ├── scrawl.css
│ │ │ │ │ │ ├── scrawl.html
│ │ │ │ │ │ └── scrawl.js
│ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── snapscreen.html
│ │ │ │ │ ├── spechars
│ │ │ │ │ │ ├── spechars.html
│ │ │ │ │ │ └── spechars.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ ├── dragicon.png
│ │ │ │ │ │ ├── edittable.css
│ │ │ │ │ │ ├── edittable.html
│ │ │ │ │ │ ├── edittable.js
│ │ │ │ │ │ ├── edittd.html
│ │ │ │ │ │ └── edittip.html
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ └── template.js
│ │ │ │ │ ├── video
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── webapp
│ │ │ │ │ │ └── webapp.html
│ │ │ │ │ └── wordimage
│ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ ├── tangram.js
│ │ │ │ │ ├── wordimage.html
│ │ │ │ │ └── wordimage.js
│ │ │ │ ├── index.html
│ │ │ │ ├── jsp
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.jsp
│ │ │ │ │ └── src
│ │ │ │ │ └── com
│ │ │ │ │ └── baidu
│ │ │ │ │ └── ueditor
│ │ │ │ │ ├── ActionEnter.java
│ │ │ │ │ ├── ConfigManager.java
│ │ │ │ │ ├── define
│ │ │ │ │ │ ├── ActionMap.java
│ │ │ │ │ │ ├── ActionState.java
│ │ │ │ │ │ ├── AppInfo.java
│ │ │ │ │ │ ├── BaseState.java
│ │ │ │ │ │ ├── FileType.java
│ │ │ │ │ │ ├── MIMEType.java
│ │ │ │ │ │ ├── MultiState.java
│ │ │ │ │ │ └── State.java
│ │ │ │ │ ├── Encoder.java
│ │ │ │ │ ├── hunter
│ │ │ │ │ │ ├── FileManager.java
│ │ │ │ │ │ └── ImageHunter.java
│ │ │ │ │ ├── PathFormat.java
│ │ │ │ │ └── upload
│ │ │ │ │ ├── Base64Uploader.java
│ │ │ │ │ ├── BinaryUploader.java
│ │ │ │ │ ├── StorageManager.java
│ │ │ │ │ └── Uploader.java
│ │ │ │ ├── lang
│ │ │ │ │ ├── en
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── net
│ │ │ │ │ ├── App_Code
│ │ │ │ │ │ ├── Config.cs
│ │ │ │ │ │ ├── ConfigHandler.cs
│ │ │ │ │ │ ├── CrawlerHandler.cs
│ │ │ │ │ │ ├── Handler.cs
│ │ │ │ │ │ ├── ListFileHandler.cs
│ │ │ │ │ │ ├── NotSupportedHandler.cs
│ │ │ │ │ │ ├── PathFormater.cs
│ │ │ │ │ │ └── UploadHandler.cs
│ │ │ │ │ ├── Bin
│ │ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.ashx
│ │ │ │ │ ├── net.sln
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── Web.config
│ │ │ │ ├── php
│ │ │ │ │ ├── action_crawler.php
│ │ │ │ │ ├── action_list.php
│ │ │ │ │ ├── action_upload.php
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.php
│ │ │ │ │ └── Uploader.class.php
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── codemirror
│ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ ├── highcharts
│ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ │ ├── highcharts.js
│ │ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ │ └── themes
│ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ └── skies.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ └── shCore.js
│ │ │ │ │ ├── video-js
│ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ ├── video.dev.js
│ │ │ │ │ │ ├── video.js
│ │ │ │ │ │ ├── video-js.css
│ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ └── video-js.swf
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.js
│ │ │ │ ├── ueditor.all.min.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ ├── ueditor.parse.js
│ │ │ │ └── ueditor.parse.min.js
│ │ │ ├── vue
│ │ │ │ └── vue.min.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
│ │ ├── mimazhaohui.jsp
│ │ ├── querenzhaohui.jsp
│ │ ├── shiJianZhou
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── images
│ │ │ │ ├── bg_1.png
│ │ │ │ └── log
│ │ │ │ ├── circle.png
│ │ │ │ ├── clock.png
│ │ │ │ ├── content-bg.png
│ │ │ │ ├── light.png
│ │ │ │ ├── light-top.png
│ │ │ │ ├── line-bg.png
│ │ │ │ └── release-bg.png
│ │ │ └── js
│ │ │ └── jquery.min.js
│ │ ├── static
│ │ │ ├── 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
│ │ │ ├── plugins
│ │ │ │ ├── amaze
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── admin.css
│ │ │ │ │ │ ├── amazeui.css
│ │ │ │ │ │ ├── amazeui.flat.css
│ │ │ │ │ │ ├── amazeui.flat.min.css
│ │ │ │ │ │ ├── amazeui.min.css
│ │ │ │ │ │ └── app.css
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── favicon.png
│ │ │ │ │ │ └── startup-640x1096.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── amazeui.ie8polyfill.js
│ │ │ │ │ ├── amazeui.ie8polyfill.min.js
│ │ │ │ │ ├── amazeui.js
│ │ │ │ │ ├── amazeui.min.js
│ │ │ │ │ ├── amazeui.widgets.helper.js
│ │ │ │ │ ├── amazeui.widgets.helper.min.js
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── handlebars.min.js
│ │ │ │ │ └── jquery.min.js
│ │ │ │ ├── contextjs
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── context.standalone.css
│ │ │ │ │ └── js
│ │ │ │ │ └── context.js
│ │ │ │ ├── jquery
│ │ │ │ │ └── jquery-2.1.4.min.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── extend
│ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── skin
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ └── loading-2.gif
│ │ │ │ │ ├── layer.css
│ │ │ │ │ └── layer.ext.css
│ │ │ │ ├── laypage
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ └── skin
│ │ │ │ │ └── laypage.css
│ │ │ │ └── sockjs
│ │ │ │ └── sockjs.js
│ │ │ └── source
│ │ │ ├── css
│ │ │ │ ├── login.css
│ │ │ │ └── mosto.css
│ │ │ ├── img
│ │ │ │ ├── adm.png
│ │ │ │ ├── avtar.png
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.png
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── close.png
│ │ │ │ ├── default_head.jpg
│ │ │ │ ├── key.png
│ │ │ │ └── robot.jpg
│ │ │ └── js
│ │ │ ├── ai2.js
│ │ │ ├── ai2.min.js
│ │ │ ├── board.js
│ │ │ ├── jcanvas.min.js
│ │ │ └── jquery.min.js
│ │ ├── temp
│ │ │ ├── 200x150.jpg
│ │ │ ├── big
│ │ │ │ ├── chai.jpg
│ │ │ │ ├── chufang.jpg
│ │ │ │ ├── keting2.jpg
│ │ │ │ ├── keting3.jpg
│ │ │ │ ├── keting4.jpg
│ │ │ │ ├── keting.jpg
│ │ │ │ ├── shouju.jpg
│ │ │ │ ├── shufang.jpg
│ │ │ │ ├── weishengjian2.jpg
│ │ │ │ ├── weishengjian.jpg
│ │ │ │ ├── woshi.jpg
│ │ │ │ └── youyongchi.jpg
│ │ │ ├── brand
│ │ │ │ ├── ambio.jpg
│ │ │ │ ├── dongpeng.jpeg
│ │ │ │ └── shengxiang.jpg
│ │ │ ├── product
│ │ │ │ └── Thumb
│ │ │ │ ├── 5345.jpg
│ │ │ │ └── 6204.jpg
│ │ │ ├── Thumb
│ │ │ │ ├── chai.jpg
│ │ │ │ ├── chufang.jpg
│ │ │ │ ├── keting2.jpg
│ │ │ │ ├── keting3.jpg
│ │ │ │ ├── keting4.jpg
│ │ │ │ ├── keting.jpg
│ │ │ │ ├── shouju.jpg
│ │ │ │ ├── shufang.jpg
│ │ │ │ ├── weishengjian2.jpg
│ │ │ │ ├── weishengjian.jpg
│ │ │ │ ├── woshi.jpg
│ │ │ │ └── youyongchi.jpg
│ │ │ └── yonghu
│ │ │ ├── 2345_image_file_copy_1.jpg
│ │ │ ├── 2345截图20180110154312.png
│ │ │ ├── 2345截图20180110201906.png
│ │ │ ├── 2345截图20180110204914.png
│ │ │ ├── 2345截图20180111091534.png
│ │ │ ├── 2345截图20180111150816.png
│ │ │ ├── arrow.png
│ │ │ ├── icons.png
│ │ │ ├── mainct_bg.png
│ │ │ ├── mainct_tit.png
│ │ │ ├── ti1mg.jpg
│ │ │ └── topbg.jpg
│ │ ├── uploadsFile
│ │ │ ├── 105.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 2631.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3966.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 8.jpg
│ │ │ ├── 9.jpg
│ │ │ ├── baomai3.jpg
│ │ │ ├── baomai8.jpg
│ │ │ ├── baoma.jpg
│ │ │ ├── B京A58984.txt
│ │ │ ├── B豫A563987.txt
│ │ │ ├── B豫A66655.txt
│ │ │ ├── B豫A77889.docx
│ │ │ ├── cxy2.png
│ │ │ ├── cxy.jpg
│ │ │ ├── dazhong.jpg
│ │ │ ├── ghs.png
│ │ │ ├── linux.jpg
│ │ │ ├── logo.png
│ │ │ ├── L豫A77889.docx
│ │ │ ├── mazida.jpg
│ │ │ ├── shijie.jpg
│ │ │ ├── suanguo.jpg
│ │ │ ├── x-banner1.jpg
│ │ │ ├── xiyouji.jpg
│ │ │ ├── xy.png
│ │ │ ├── 商业险保险单.docx
│ │ │ ├── 奔驰.jpg
│ │ │ ├── 暂无有效文件.txt
│ │ │ ├── 机动车交通事故责任强制保险单.docx
│ │ │ └── 理赔申请书.docx
│ │ ├── webappupload
│ │ │ ├── admin
│ │ │ │ └── admin.jpg
│ │ │ └── Amayadream
│ │ │ └── Amayadream.jpg
│ │ ├── WEB-INF
│ │ │ ├── ftl
│ │ │ │ ├── admin-add.ftl
│ │ │ │ ├── admin-edit.ftl
│ │ │ │ ├── admin-list.ftl
│ │ │ │ ├── admin-power-add.ftl
│ │ │ │ ├── admin-power-edit.ftl
│ │ │ │ ├── admin-power.ftl
│ │ │ │ ├── admin-role-add.ftl
│ │ │ │ ├── admin-role-edit.ftl
│ │ │ │ ├── admin-role.ftl
│ │ │ │ ├── admin-xiangqing.ftl
│ │ │ │ ├── admin-zaixian.ftl
│ │ │ │ ├── article-list.ftl
│ │ │ │ ├── baoanxinxi-list.ftl
│ │ │ │ ├── baoxiandan-bill.ftl
│ │ │ │ ├── baoxiandan-heyan.ftl
│ │ │ │ ├── baoxiandan-info.ftl
│ │ │ │ ├── baoxiandan-list.ftl
│ │ │ │ ├── baoxian-heyan.ftl
│ │ │ │ ├── baoxian-jiaofei.ftl
│ │ │ │ ├── baoxian-xinix.ftl
│ │ │ │ ├── car-add.ftl
│ │ │ │ ├── car-edit.ftl
│ │ │ │ ├── car-heyan.ftl
│ │ │ │ ├── car-list.ftl
│ │ │ │ ├── chexianjisuan.ftl
│ │ │ │ ├── cheXianJs.ftl
│ │ │ │ ├── error
│ │ │ │ │ ├── 401.ftl
│ │ │ │ │ └── 404.ftl
│ │ │ │ ├── index.ftl
│ │ │ │ ├── lipeidan-add.ftl
│ │ │ │ ├── lipeidan-info.ftl
│ │ │ │ ├── lipeidan-list.ftl
│ │ │ │ ├── lipei-heyan.ftl
│ │ │ │ ├── lipei-jiesuan.ftl
│ │ │ │ ├── lipeijiludan-list.ftl
│ │ │ │ ├── map.ftl
│ │ │ │ ├── member-add.ftl
│ │ │ │ ├── member-del.ftl
│ │ │ │ ├── member-list.ftl
│ │ │ │ ├── member-record-browse.ftl
│ │ │ │ ├── member-record-download.ftl
│ │ │ │ ├── member-record-share.ftl
│ │ │ │ ├── member-show.ftl
│ │ │ │ ├── personal-edit.ftl
│ │ │ │ ├── picture-add.ftl
│ │ │ │ ├── picture-list.ftl
│ │ │ │ ├── product-add.ftl
│ │ │ │ ├── system-log.ftl
│ │ │ │ ├── tuibao-heyan.ftl
│ │ │ │ ├── tuibao-list.ftl
│ │ │ │ ├── user-edit.ftl
│ │ │ │ ├── user-heyan.ftl
│ │ │ │ ├── user-msg.ftl
│ │ │ │ ├── user-xiangqing.ftl
│ │ │ │ ├── welcome.ftl
│ │ │ │ ├── xuBao.ftl
│ │ │ │ ├── xuBao-heyan.ftl
│ │ │ │ ├── xubao-list.ftl
│ │ │ │ ├── xunbao_2.ftl
│ │ │ │ ├── yingxiao-add.ftl
│ │ │ │ ├── zhidian-add.ftl
│ │ │ │ ├── zhidian-edit.ftl
│ │ │ │ └── zhidian.ftl
│ │ │ └── web.xml
│ │ └── yanzhengma
│ │ ├── drag.css
│ │ └── drag.js
│ └── test
│ └── cn
│ └── yunhe
│ └── test
│ └── Demo1.java
├── target
│ ├── classes
│ │ ├── cn
│ │ │ └── yunhe
│ │ │ ├── controller
│ │ │ │ ├── BaoxianguanliAction.class
│ │ │ │ ├── Erroraction.class
│ │ │ │ ├── FuwuguanliAction.class
│ │ │ │ ├── GuanliyuanguanliAction.class
│ │ │ │ ├── HeyanguanliAction.class
│ │ │ │ ├── JiaoyiguanliAction.class
│ │ │ │ ├── LipeiguanliAction.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── ToIndexAction.class
│ │ │ │ ├── XitongguanliAction.class
│ │ │ │ ├── YingxiaoguanliAction.class
│ │ │ │ ├── YonghuguanliAction1.class
│ │ │ │ ├── YonghuguanliAction.class
│ │ │ │ └── ZhaoHuiMimaAction.class
│ │ │ ├── dao
│ │ │ │ ├── CarsMapper.class
│ │ │ │ ├── Fw_ClaimantMapper.class
│ │ │ │ ├── Fw_DingDanMapper.class
│ │ │ │ ├── HeyanMapper.class
│ │ │ │ ├── IAdminMapper.class
│ │ │ │ ├── IBaoxianMapper.class
│ │ │ │ ├── IBillMapper.class
│ │ │ │ ├── IBusilogMapper.class
│ │ │ │ ├── IBuyInsurMapper.class
│ │ │ │ ├── IDeptMapper.class
│ │ │ │ ├── IInsurInformationBillMapper.class
│ │ │ │ ├── IInsurJiaoFeiMapper.class
│ │ │ │ ├── IPowerMapper.class
│ │ │ │ ├── IRoleMapper.class
│ │ │ │ ├── IUserNumberMapper.class
│ │ │ │ ├── IZhaoHuiMima.class
│ │ │ │ ├── LipeiMapper.class
│ │ │ │ ├── LoginMapper.class
│ │ │ │ ├── UserGuanliMapper.class
│ │ │ │ └── UsersMapper.class
│ │ │ ├── model
│ │ │ │ ├── Admin.class
│ │ │ │ ├── Busilog.class
│ │ │ │ ├── CarInsur.class
│ │ │ │ ├── CarInsurRecord.class
│ │ │ │ ├── Cars.class
│ │ │ │ ├── Claimant.class
│ │ │ │ ├── ClaiRecord.class
│ │ │ │ ├── Dept.class
│ │ │ │ ├── InserInclude.class
│ │ │ │ ├── InsurContract.class
│ │ │ │ ├── InsurPack.class
│ │ │ │ ├── JiaoBill.class
│ │ │ │ ├── LiPei.class
│ │ │ │ ├── LiPeiJieSuan.class
│ │ │ │ ├── Member.class
│ │ │ │ ├── PeiBill.class
│ │ │ │ ├── Power.class
│ │ │ │ ├── Renewal.class
│ │ │ │ ├── Result.class
│ │ │ │ ├── Role.class
│ │ │ │ ├── Surrender.class
│ │ │ │ ├── Survey.class
│ │ │ │ ├── UserNumber.class
│ │ │ │ └── Users.class
│ │ │ ├── service
│ │ │ │ ├── aspect
│ │ │ │ │ └── LogAspect.class
│ │ │ │ ├── CarsService.class
│ │ │ │ ├── Fw_ClaimantService.class
│ │ │ │ ├── Fw_DingDanService.class
│ │ │ │ ├── HeyanService.class
│ │ │ │ ├── IAdminService.class
│ │ │ │ ├── IBaoxianService.class
│ │ │ │ ├── IBillService.class
│ │ │ │ ├── IBusilogService.class
│ │ │ │ ├── IBuyInsurService.class
│ │ │ │ ├── IDeptService.class
│ │ │ │ ├── IInsurInformationBillService.class
│ │ │ │ ├── IInsurJiaoFeiService.class
│ │ │ │ ├── ILiPeiService.class
│ │ │ │ ├── ILoginService.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── AdminServiceImpl.class
│ │ │ │ │ ├── BaoxianServiceImpl.class
│ │ │ │ │ ├── BillServiceImpl.class
│ │ │ │ │ ├── BusilogServiceImpl.class
│ │ │ │ │ ├── BuyInsurServiceImpl.class
│ │ │ │ │ ├── CarsServiceImpl.class
│ │ │ │ │ ├── DeptServiceImpl.class
│ │ │ │ │ ├── Fw_ClaimantServiceImpl.class
│ │ │ │ │ ├── Fw_DingDanServiceImpl.class
│ │ │ │ │ ├── IHeyenServiceImpl.class
│ │ │ │ │ ├── InsurInformationBillServiceImpl.class
│ │ │ │ │ ├── InsurJiaoFeiServiceImpl.class
│ │ │ │ │ ├── LiPeiServiceImpl.class
│ │ │ │ │ ├── LoginServiceImpl.class
│ │ │ │ │ ├── PowerSerciceImpl.class
│ │ │ │ │ ├── RoleServiceImpl.class
│ │ │ │ │ ├── UserGuanliImpl.class
│ │ │ │ │ ├── UserNumberServiceImpl.class
│ │ │ │ │ ├── UsersServiceImpl.class
│ │ │ │ │ └── ZhaoHuiMimaServiceImpl.class
│ │ │ │ ├── IPowerService.class
│ │ │ │ ├── IRoleService.class
│ │ │ │ ├── IUserNumberService.class
│ │ │ │ ├── IZhaoHuiMimaService.class
│ │ │ │ ├── UserGuanliService.class
│ │ │ │ └── UsersService.class
│ │ │ ├── shiro
│ │ │ │ ├── CustomRolesAuthorizationFilter.class
│ │ │ │ ├── ShiroRealm.class
│ │ │ │ ├── ShiroTagFreeMarkerConfigurer.class
│ │ │ │ └── ShiroTags.class
│ │ │ ├── utils
│ │ │ │ ├── CommonDate.class
│ │ │ │ ├── CommonValidate.class
│ │ │ │ ├── Config.class
│ │ │ │ ├── EmailUtil$1.class
│ │ │ │ ├── EmailUtil.class
│ │ │ │ ├── FileUtil.class
│ │ │ │ ├── HttpUtil.class
│ │ │ │ ├── IndustrySMS.class
│ │ │ │ ├── NetUtil.class
│ │ │ │ ├── PeiFuJieSuanUtil.class
│ │ │ │ ├── RandomStringUtil.class
│ │ │ │ ├── Result.class
│ │ │ │ ├── StringUtil.class
│ │ │ │ ├── UploadUtil.class
│ │ │ │ └── WordDefined.class
│ │ │ └── websocket
│ │ │ ├── ChatServer.class
│ │ │ ├── HttpSessionConfigurator.class
│ │ │ └── VideoServer.class
│ │ ├── db.properties
│ │ ├── ehcache.xml
│ │ ├── log4j.properties
│ │ ├── mapper
│ │ │ ├── AdminMapper.xml
│ │ │ ├── BaoxianMapper.xml
│ │ │ ├── BillMapper.xml
│ │ │ ├── BusilogMapper.xml
│ │ │ ├── BuyInsurMapper.xml
│ │ │ ├── CarsMapper.xml
│ │ │ ├── DeptMapper.xml
│ │ │ ├── Fw_ClaimantMapper.xml
│ │ │ ├── Fw_DingDanMapper.xml
│ │ │ ├── HeyanMapper.xml
│ │ │ ├── InsurInformationBillMapper.xml
│ │ │ ├── InsurJiaoFeiMapper.xml
│ │ │ ├── IZhaoHuiMimaMapper.xml
│ │ │ ├── LiPeiMapper.xml
│ │ │ ├── LoginMapper.xml
│ │ │ ├── PowerMapper.xml
│ │ │ ├── roleMapper.xml
│ │ │ ├── UserGuanliMapper.xml
│ │ │ ├── UserNumberMapper.xml
│ │ │ └── UsersMapper.xml
│ │ ├── mybatis-config.xml
│ │ └── spring
│ │ ├── applicationContext.xml
│ │ ├── spring-MVC.xml
│ │ └── spring-mybatis.xml
│ ├── m2e-wtp
│ │ └── web-resources
│ │ └── META-INF
│ │ ├── MANIFEST.MF
│ │ └── maven
│ │ └── cn.yun
│ │ └── ssmzhenghe
│ │ ├── pom.properties
│ │ └── pom.xml
│ ├── maven-archiver
│ │ └── pom.properties
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ └── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ ├── ssmzhenghe
│ │ ├── fw-jilian-sucai
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── city-picker.css
│ │ │ │ └── main.css
│ │ │ ├── images
│ │ │ │ └── drop-arrow.png
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── city-picker.data.js
│ │ │ ├── city-picker.js
│ │ │ ├── jquery.js
│ │ │ └── main.js
│ │ ├── include
│ │ │ ├── commonfile.jsp
│ │ │ ├── footer.jsp
│ │ │ ├── header.jsp
│ │ │ └── sidebar.jsp
│ │ ├── index.jsp
│ │ ├── lay.jsp
│ │ ├── layui
│ │ │ ├── css
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules
│ │ │ │ ├── code.css
│ │ │ │ ├── laydate
│ │ │ │ │ └── default
│ │ │ │ │ └── laydate.css
│ │ │ │ └── layer
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── font
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ └── face
│ │ │ │ ├── 0.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.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
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ ├── lay
│ │ │ │ └── modules
│ │ │ │ ├── carousel.js
│ │ │ │ ├── code.js
│ │ │ │ ├── element.js
│ │ │ │ ├── flow.js
│ │ │ │ ├── form.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── laydate.js
│ │ │ │ ├── layedit.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── table.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ ├── layui.all.js
│ │ │ └── layui.js
│ │ ├── lib
│ │ │ ├── datatables
│ │ │ │ └── 1.10.0
│ │ │ │ └── jquery.dataTables.min.js
│ │ │ ├── DD_belatedPNG_0.0.8a-min.js
│ │ │ ├── duanxin
│ │ │ │ └── duanxin.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
│ │ │ ├── ueditor
│ │ │ │ └── 1.4.3
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── attachment
│ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── background
│ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ └── charts5.png
│ │ │ │ │ ├── emotion
│ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ │ ├── gmap
│ │ │ │ │ │ └── gmap.html
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ └── help.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── insertframe
│ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── show.html
│ │ │ │ │ ├── music
│ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ └── music.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ ├── scrawl
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ ├── scrawl.css
│ │ │ │ │ │ ├── scrawl.html
│ │ │ │ │ │ └── scrawl.js
│ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── snapscreen.html
│ │ │ │ │ ├── spechars
│ │ │ │ │ │ ├── spechars.html
│ │ │ │ │ │ └── spechars.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ ├── dragicon.png
│ │ │ │ │ │ ├── edittable.css
│ │ │ │ │ │ ├── edittable.html
│ │ │ │ │ │ ├── edittable.js
│ │ │ │ │ │ ├── edittd.html
│ │ │ │ │ │ └── edittip.html
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ └── template.js
│ │ │ │ │ ├── video
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── webapp
│ │ │ │ │ │ └── webapp.html
│ │ │ │ │ └── wordimage
│ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ ├── tangram.js
│ │ │ │ │ ├── wordimage.html
│ │ │ │ │ └── wordimage.js
│ │ │ │ ├── index.html
│ │ │ │ ├── jsp
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.jsp
│ │ │ │ │ └── src
│ │ │ │ │ └── com
│ │ │ │ │ └── baidu
│ │ │ │ │ └── ueditor
│ │ │ │ │ ├── ActionEnter.java
│ │ │ │ │ ├── ConfigManager.java
│ │ │ │ │ ├── define
│ │ │ │ │ │ ├── ActionMap.java
│ │ │ │ │ │ ├── ActionState.java
│ │ │ │ │ │ ├── AppInfo.java
│ │ │ │ │ │ ├── BaseState.java
│ │ │ │ │ │ ├── FileType.java
│ │ │ │ │ │ ├── MIMEType.java
│ │ │ │ │ │ ├── MultiState.java
│ │ │ │ │ │ └── State.java
│ │ │ │ │ ├── Encoder.java
│ │ │ │ │ ├── hunter
│ │ │ │ │ │ ├── FileManager.java
│ │ │ │ │ │ └── ImageHunter.java
│ │ │ │ │ ├── PathFormat.java
│ │ │ │ │ └── upload
│ │ │ │ │ ├── Base64Uploader.java
│ │ │ │ │ ├── BinaryUploader.java
│ │ │ │ │ ├── StorageManager.java
│ │ │ │ │ └── Uploader.java
│ │ │ │ ├── lang
│ │ │ │ │ ├── en
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── net
│ │ │ │ │ ├── App_Code
│ │ │ │ │ │ ├── Config.cs
│ │ │ │ │ │ ├── ConfigHandler.cs
│ │ │ │ │ │ ├── CrawlerHandler.cs
│ │ │ │ │ │ ├── Handler.cs
│ │ │ │ │ │ ├── ListFileHandler.cs
│ │ │ │ │ │ ├── NotSupportedHandler.cs
│ │ │ │ │ │ ├── PathFormater.cs
│ │ │ │ │ │ └── UploadHandler.cs
│ │ │ │ │ ├── Bin
│ │ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.ashx
│ │ │ │ │ ├── net.sln
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── Web.config
│ │ │ │ ├── php
│ │ │ │ │ ├── action_crawler.php
│ │ │ │ │ ├── action_list.php
│ │ │ │ │ ├── action_upload.php
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.php
│ │ │ │ │ └── Uploader.class.php
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── codemirror
│ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ ├── highcharts
│ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ │ ├── highcharts.js
│ │ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ │ └── themes
│ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ └── skies.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ └── shCore.js
│ │ │ │ │ ├── video-js
│ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ ├── video.dev.js
│ │ │ │ │ │ ├── video.js
│ │ │ │ │ │ ├── video-js.css
│ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ └── video-js.swf
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.js
│ │ │ │ ├── ueditor.all.min.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ ├── ueditor.parse.js
│ │ │ │ └── ueditor.parse.min.js
│ │ │ ├── vue
│ │ │ │ └── vue.min.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
│ │ ├── mimazhaohui.jsp
│ │ ├── querenzhaohui.jsp
│ │ ├── shiJianZhou
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── images
│ │ │ │ ├── bg_1.png
│ │ │ │ └── log
│ │ │ │ ├── circle.png
│ │ │ │ ├── clock.png
│ │ │ │ ├── content-bg.png
│ │ │ │ ├── light.png
│ │ │ │ ├── light-top.png
│ │ │ │ ├── line-bg.png
│ │ │ │ └── release-bg.png
│ │ │ └── js
│ │ │ └── jquery.min.js
│ │ ├── static
│ │ │ ├── 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
│ │ │ ├── plugins
│ │ │ │ ├── amaze
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── admin.css
│ │ │ │ │ │ ├── amazeui.css
│ │ │ │ │ │ ├── amazeui.flat.css
│ │ │ │ │ │ ├── amazeui.flat.min.css
│ │ │ │ │ │ ├── amazeui.min.css
│ │ │ │ │ │ └── app.css
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── favicon.png
│ │ │ │ │ │ └── startup-640x1096.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── amazeui.ie8polyfill.js
│ │ │ │ │ ├── amazeui.ie8polyfill.min.js
│ │ │ │ │ ├── amazeui.js
│ │ │ │ │ ├── amazeui.min.js
│ │ │ │ │ ├── amazeui.widgets.helper.js
│ │ │ │ │ ├── amazeui.widgets.helper.min.js
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── handlebars.min.js
│ │ │ │ │ └── jquery.min.js
│ │ │ │ ├── contextjs
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── context.standalone.css
│ │ │ │ │ └── js
│ │ │ │ │ └── context.js
│ │ │ │ ├── jquery
│ │ │ │ │ └── jquery-2.1.4.min.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── extend
│ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── skin
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ └── loading-2.gif
│ │ │ │ │ ├── layer.css
│ │ │ │ │ └── layer.ext.css
│ │ │ │ ├── laypage
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ └── skin
│ │ │ │ │ └── laypage.css
│ │ │ │ └── sockjs
│ │ │ │ └── sockjs.js
│ │ │ └── source
│ │ │ ├── css
│ │ │ │ ├── login.css
│ │ │ │ └── mosto.css
│ │ │ ├── img
│ │ │ │ ├── adm.png
│ │ │ │ ├── avtar.png
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.png
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── close.png
│ │ │ │ ├── default_head.jpg
│ │ │ │ ├── key.png
│ │ │ │ └── robot.jpg
│ │ │ └── js
│ │ │ ├── ai2.js
│ │ │ ├── ai2.min.js
│ │ │ ├── board.js
│ │ │ ├── jcanvas.min.js
│ │ │ └── jquery.min.js
│ │ ├── temp
│ │ │ ├── 200x150.jpg
│ │ │ ├── big
│ │ │ │ ├── chai.jpg
│ │ │ │ ├── chufang.jpg
│ │ │ │ ├── keting2.jpg
│ │ │ │ ├── keting3.jpg
│ │ │ │ ├── keting4.jpg
│ │ │ │ ├── keting.jpg
│ │ │ │ ├── shouju.jpg
│ │ │ │ ├── shufang.jpg
│ │ │ │ ├── weishengjian2.jpg
│ │ │ │ ├── weishengjian.jpg
│ │ │ │ ├── woshi.jpg
│ │ │ │ └── youyongchi.jpg
│ │ │ ├── brand
│ │ │ │ ├── ambio.jpg
│ │ │ │ ├── dongpeng.jpeg
│ │ │ │ └── shengxiang.jpg
│ │ │ ├── product
│ │ │ │ └── Thumb
│ │ │ │ ├── 5345.jpg
│ │ │ │ └── 6204.jpg
│ │ │ ├── Thumb
│ │ │ │ ├── chai.jpg
│ │ │ │ ├── chufang.jpg
│ │ │ │ ├── keting2.jpg
│ │ │ │ ├── keting3.jpg
│ │ │ │ ├── keting4.jpg
│ │ │ │ ├── keting.jpg
│ │ │ │ ├── shouju.jpg
│ │ │ │ ├── shufang.jpg
│ │ │ │ ├── weishengjian2.jpg
│ │ │ │ ├── weishengjian.jpg
│ │ │ │ ├── woshi.jpg
│ │ │ │ └── youyongchi.jpg
│ │ │ └── yonghu
│ │ │ ├── 2345_image_file_copy_1.jpg
│ │ │ ├── 2345截图20180110154312.png
│ │ │ ├── 2345截图20180110201906.png
│ │ │ ├── 2345截图20180110204914.png
│ │ │ ├── 2345截图20180111091534.png
│ │ │ ├── 2345截图20180111150816.png
│ │ │ ├── arrow.png
│ │ │ ├── icons.png
│ │ │ ├── mainct_bg.png
│ │ │ ├── mainct_tit.png
│ │ │ ├── ti1mg.jpg
│ │ │ └── topbg.jpg
│ │ ├── uploadsFile
│ │ │ ├── 105.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 2631.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3966.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 8.jpg
│ │ │ ├── 9.jpg
│ │ │ ├── baomai3.jpg
│ │ │ ├── baomai8.jpg
│ │ │ ├── baoma.jpg
│ │ │ ├── B京A58984.txt
│ │ │ ├── B豫A563987.txt
│ │ │ ├── B豫A66655.txt
│ │ │ ├── B豫A77889.docx
│ │ │ ├── cxy2.png
│ │ │ ├── cxy.jpg
│ │ │ ├── dazhong.jpg
│ │ │ ├── ghs.png
│ │ │ ├── linux.jpg
│ │ │ ├── logo.png
│ │ │ ├── L豫A77889.docx
│ │ │ ├── mazida.jpg
│ │ │ ├── shijie.jpg
│ │ │ ├── suanguo.jpg
│ │ │ ├── x-banner1.jpg
│ │ │ ├── xiyouji.jpg
│ │ │ ├── xy.png
│ │ │ ├── 商业险保险单.docx
│ │ │ ├── 奔驰.jpg
│ │ │ ├── 暂无有效文件.txt
│ │ │ ├── 机动车交通事故责任强制保险单.docx
│ │ │ └── 理赔申请书.docx
│ │ ├── webappupload
│ │ │ ├── admin
│ │ │ │ └── admin.jpg
│ │ │ └── Amayadream
│ │ │ └── Amayadream.jpg
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── cn
│ │ │ │ │ └── yunhe
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── BaoxianguanliAction.class
│ │ │ │ │ │ ├── Erroraction.class
│ │ │ │ │ │ ├── FuwuguanliAction.class
│ │ │ │ │ │ ├── GuanliyuanguanliAction.class
│ │ │ │ │ │ ├── HeyanguanliAction.class
│ │ │ │ │ │ ├── JiaoyiguanliAction.class
│ │ │ │ │ │ ├── LipeiguanliAction.class
│ │ │ │ │ │ ├── LoginController.class
│ │ │ │ │ │ ├── ToIndexAction.class
│ │ │ │ │ │ ├── XitongguanliAction.class
│ │ │ │ │ │ ├── YingxiaoguanliAction.class
│ │ │ │ │ │ ├── YonghuguanliAction1.class
│ │ │ │ │ │ ├── YonghuguanliAction.class
│ │ │ │ │ │ └── ZhaoHuiMimaAction.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── CarsMapper.class
│ │ │ │ │ │ ├── Fw_ClaimantMapper.class
│ │ │ │ │ │ ├── Fw_DingDanMapper.class
│ │ │ │ │ │ ├── HeyanMapper.class
│ │ │ │ │ │ ├── IAdminMapper.class
│ │ │ │ │ │ ├── IBaoxianMapper.class
│ │ │ │ │ │ ├── IBillMapper.class
│ │ │ │ │ │ ├── IBusilogMapper.class
│ │ │ │ │ │ ├── IBuyInsurMapper.class
│ │ │ │ │ │ ├── IDeptMapper.class
│ │ │ │ │ │ ├── IInsurInformationBillMapper.class
│ │ │ │ │ │ ├── IInsurJiaoFeiMapper.class
│ │ │ │ │ │ ├── IPowerMapper.class
│ │ │ │ │ │ ├── IRoleMapper.class
│ │ │ │ │ │ ├── IUserNumberMapper.class
│ │ │ │ │ │ ├── IZhaoHuiMima.class
│ │ │ │ │ │ ├── LipeiMapper.class
│ │ │ │ │ │ ├── LoginMapper.class
│ │ │ │ │ │ ├── UserGuanliMapper.class
│ │ │ │ │ │ └── UsersMapper.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── Admin.class
│ │ │ │ │ │ ├── Busilog.class
│ │ │ │ │ │ ├── CarInsur.class
│ │ │ │ │ │ ├── CarInsurRecord.class
│ │ │ │ │ │ ├── Cars.class
│ │ │ │ │ │ ├── Claimant.class
│ │ │ │ │ │ ├── ClaiRecord.class
│ │ │ │ │ │ ├── Dept.class
│ │ │ │ │ │ ├── InserInclude.class
│ │ │ │ │ │ ├── InsurContract.class
│ │ │ │ │ │ ├── InsurPack.class
│ │ │ │ │ │ ├── JiaoBill.class
│ │ │ │ │ │ ├── LiPei.class
│ │ │ │ │ │ ├── LiPeiJieSuan.class
│ │ │ │ │ │ ├── Member.class
│ │ │ │ │ │ ├── PeiBill.class
│ │ │ │ │ │ ├── Power.class
│ │ │ │ │ │ ├── Renewal.class
│ │ │ │ │ │ ├── Result.class
│ │ │ │ │ │ ├── Role.class
│ │ │ │ │ │ ├── Surrender.class
│ │ │ │ │ │ ├── Survey.class
│ │ │ │ │ │ ├── UserNumber.class
│ │ │ │ │ │ └── Users.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── aspect
│ │ │ │ │ │ │ └── LogAspect.class
│ │ │ │ │ │ ├── CarsService.class
│ │ │ │ │ │ ├── Fw_ClaimantService.class
│ │ │ │ │ │ ├── Fw_DingDanService.class
│ │ │ │ │ │ ├── HeyanService.class
│ │ │ │ │ │ ├── IAdminService.class
│ │ │ │ │ │ ├── IBaoxianService.class
│ │ │ │ │ │ ├── IBillService.class
│ │ │ │ │ │ ├── IBusilogService.class
│ │ │ │ │ │ ├── IBuyInsurService.class
│ │ │ │ │ │ ├── IDeptService.class
│ │ │ │ │ │ ├── IInsurInformationBillService.class
│ │ │ │ │ │ ├── IInsurJiaoFeiService.class
│ │ │ │ │ │ ├── ILiPeiService.class
│ │ │ │ │ │ ├── ILoginService.class
│ │ │ │ │ │ ├── impl
│ │ │ │ │ │ │ ├── AdminServiceImpl.class
│ │ │ │ │ │ │ ├── BaoxianServiceImpl.class
│ │ │ │ │ │ │ ├── BillServiceImpl.class
│ │ │ │ │ │ │ ├── BusilogServiceImpl.class
│ │ │ │ │ │ │ ├── BuyInsurServiceImpl.class
│ │ │ │ │ │ │ ├── CarsServiceImpl.class
│ │ │ │ │ │ │ ├── DeptServiceImpl.class
│ │ │ │ │ │ │ ├── Fw_ClaimantServiceImpl.class
│ │ │ │ │ │ │ ├── Fw_DingDanServiceImpl.class
│ │ │ │ │ │ │ ├── IHeyenServiceImpl.class
│ │ │ │ │ │ │ ├── InsurInformationBillServiceImpl.class
│ │ │ │ │ │ │ ├── InsurJiaoFeiServiceImpl.class
│ │ │ │ │ │ │ ├── LiPeiServiceImpl.class
│ │ │ │ │ │ │ ├── LoginServiceImpl.class
│ │ │ │ │ │ │ ├── PowerSerciceImpl.class
│ │ │ │ │ │ │ ├── RoleServiceImpl.class
│ │ │ │ │ │ │ ├── UserGuanliImpl.class
│ │ │ │ │ │ │ ├── UserNumberServiceImpl.class
│ │ │ │ │ │ │ ├── UsersServiceImpl.class
│ │ │ │ │ │ │ └── ZhaoHuiMimaServiceImpl.class
│ │ │ │ │ │ ├── IPowerService.class
│ │ │ │ │ │ ├── IRoleService.class
│ │ │ │ │ │ ├── IUserNumberService.class
│ │ │ │ │ │ ├── IZhaoHuiMimaService.class
│ │ │ │ │ │ ├── UserGuanliService.class
│ │ │ │ │ │ └── UsersService.class
│ │ │ │ │ ├── shiro
│ │ │ │ │ │ ├── CustomRolesAuthorizationFilter.class
│ │ │ │ │ │ ├── ShiroRealm.class
│ │ │ │ │ │ ├── ShiroTagFreeMarkerConfigurer.class
│ │ │ │ │ │ └── ShiroTags.class
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── CommonDate.class
│ │ │ │ │ │ ├── CommonValidate.class
│ │ │ │ │ │ ├── Config.class
│ │ │ │ │ │ ├── EmailUtil$1.class
│ │ │ │ │ │ ├── EmailUtil.class
│ │ │ │ │ │ ├── FileUtil.class
│ │ │ │ │ │ ├── HttpUtil.class
│ │ │ │ │ │ ├── IndustrySMS.class
│ │ │ │ │ │ ├── NetUtil.class
│ │ │ │ │ │ ├── PeiFuJieSuanUtil.class
│ │ │ │ │ │ ├── RandomStringUtil.class
│ │ │ │ │ │ ├── Result.class
│ │ │ │ │ │ ├── StringUtil.class
│ │ │ │ │ │ ├── UploadUtil.class
│ │ │ │ │ │ └── WordDefined.class
│ │ │ │ │ └── websocket
│ │ │ │ │ ├── ChatServer.class
│ │ │ │ │ ├── HttpSessionConfigurator.class
│ │ │ │ │ └── VideoServer.class
│ │ │ │ ├── db.properties
│ │ │ │ ├── ehcache.xml
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── mapper
│ │ │ │ │ ├── AdminMapper.xml
│ │ │ │ │ ├── BaoxianMapper.xml
│ │ │ │ │ ├── BillMapper.xml
│ │ │ │ │ ├── BusilogMapper.xml
│ │ │ │ │ ├── BuyInsurMapper.xml
│ │ │ │ │ ├── CarsMapper.xml
│ │ │ │ │ ├── DeptMapper.xml
│ │ │ │ │ ├── Fw_ClaimantMapper.xml
│ │ │ │ │ ├── Fw_DingDanMapper.xml
│ │ │ │ │ ├── HeyanMapper.xml
│ │ │ │ │ ├── InsurInformationBillMapper.xml
│ │ │ │ │ ├── InsurJiaoFeiMapper.xml
│ │ │ │ │ ├── IZhaoHuiMimaMapper.xml
│ │ │ │ │ ├── LiPeiMapper.xml
│ │ │ │ │ ├── LoginMapper.xml
│ │ │ │ │ ├── PowerMapper.xml
│ │ │ │ │ ├── roleMapper.xml
│ │ │ │ │ ├── UserGuanliMapper.xml
│ │ │ │ │ ├── UserNumberMapper.xml
│ │ │ │ │ └── UsersMapper.xml
│ │ │ │ ├── mybatis-config.xml
│ │ │ │ └── spring
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── spring-MVC.xml
│ │ │ │ └── spring-mybatis.xml
│ │ │ ├── ftl
│ │ │ │ ├── admin-add.ftl
│ │ │ │ ├── admin-edit.ftl
│ │ │ │ ├── admin-list.ftl
│ │ │ │ ├── admin-power-add.ftl
│ │ │ │ ├── admin-power-edit.ftl
│ │ │ │ ├── admin-power.ftl
│ │ │ │ ├── admin-role-add.ftl
│ │ │ │ ├── admin-role-edit.ftl
│ │ │ │ ├── admin-role.ftl
│ │ │ │ ├── admin-xiangqing.ftl
│ │ │ │ ├── admin-zaixian.ftl
│ │ │ │ ├── article-list.ftl
│ │ │ │ ├── baoanxinxi-list.ftl
│ │ │ │ ├── baoxiandan-bill.ftl
│ │ │ │ ├── baoxiandan-heyan.ftl
│ │ │ │ ├── baoxiandan-info.ftl
│ │ │ │ ├── baoxiandan-list.ftl
│ │ │ │ ├── baoxian-heyan.ftl
│ │ │ │ ├── baoxian-jiaofei.ftl
│ │ │ │ ├── baoxian-xinix.ftl
│ │ │ │ ├── car-add.ftl
│ │ │ │ ├── car-edit.ftl
│ │ │ │ ├── car-heyan.ftl
│ │ │ │ ├── car-list.ftl
│ │ │ │ ├── chexianjisuan.ftl
│ │ │ │ ├── cheXianJs.ftl
│ │ │ │ ├── error
│ │ │ │ │ ├── 401.ftl
│ │ │ │ │ └── 404.ftl
│ │ │ │ ├── index.ftl
│ │ │ │ ├── lipeidan-add.ftl
│ │ │ │ ├── lipeidan-info.ftl
│ │ │ │ ├── lipeidan-list.ftl
│ │ │ │ ├── lipei-heyan.ftl
│ │ │ │ ├── lipei-jiesuan.ftl
│ │ │ │ ├── lipeijiludan-list.ftl
│ │ │ │ ├── map.ftl
│ │ │ │ ├── member-add.ftl
│ │ │ │ ├── member-del.ftl
│ │ │ │ ├── member-list.ftl
│ │ │ │ ├── member-record-browse.ftl
│ │ │ │ ├── member-record-download.ftl
│ │ │ │ ├── member-record-share.ftl
│ │ │ │ ├── member-show.ftl
│ │ │ │ ├── personal-edit.ftl
│ │ │ │ ├── picture-add.ftl
│ │ │ │ ├── picture-list.ftl
│ │ │ │ ├── product-add.ftl
│ │ │ │ ├── system-log.ftl
│ │ │ │ ├── tuibao-heyan.ftl
│ │ │ │ ├── tuibao-list.ftl
│ │ │ │ ├── user-edit.ftl
│ │ │ │ ├── user-heyan.ftl
│ │ │ │ ├── user-msg.ftl
│ │ │ │ ├── user-xiangqing.ftl
│ │ │ │ ├── welcome.ftl
│ │ │ │ ├── xuBao.ftl
│ │ │ │ ├── xuBao-heyan.ftl
│ │ │ │ ├── xubao-list.ftl
│ │ │ │ ├── xunbao_2.ftl
│ │ │ │ ├── yingxiao-add.ftl
│ │ │ │ ├── zhidian-add.ftl
│ │ │ │ ├── zhidian-edit.ftl
│ │ │ │ └── zhidian.ftl
│ │ │ ├── lib
│ │ │ │ ├── activation-1.1.jar
│ │ │ │ ├── aopalliance-1.0.jar
│ │ │ │ ├── asm-1.5.3.jar
│ │ │ │ ├── asm-util-1.3.4.jar
│ │ │ │ ├── aspectjweaver-1.6.11.jar
│ │ │ │ ├── aspectwerkz-core-0.8.1.jar
│ │ │ │ ├── c3p0-0.9.1.1.jar
│ │ │ │ ├── cglib-2.1.jar
│ │ │ │ ├── classmate-1.0.0.jar
│ │ │ │ ├── commons-beanutils-1.8.3.jar
│ │ │ │ ├── commons-codec-1.10.jar
│ │ │ │ ├── commons-collections4-4.1.jar
│ │ │ │ ├── commons-dbcp-1.2.2.jar
│ │ │ │ ├── commons-fileupload-1.3.2.jar
│ │ │ │ ├── commons-io-2.4.jar
│ │ │ │ ├── commons-logging-1.2.jar
│ │ │ │ ├── commons-pool-1.3.jar
│ │ │ │ ├── core-3.1.0.jar
│ │ │ │ ├── druid-1.0.26.jar
│ │ │ │ ├── ehcache-core-2.4.3.jar
│ │ │ │ ├── fastjson-1.2.7.jar
│ │ │ │ ├── filters-2.0.235.jar
│ │ │ │ ├── freemarker-2.3.23.jar
│ │ │ │ ├── guice-3.0.jar
│ │ │ │ ├── guice-multibindings-3.0.jar
│ │ │ │ ├── hamcrest-core-1.3.jar
│ │ │ │ ├── hibernate-validator-5.1.0.Final.jar
│ │ │ │ ├── jackson-annotations-2.2.3.jar
│ │ │ │ ├── jackson-core-2.2.3.jar
│ │ │ │ ├── jackson-core-asl-1.9.13.jar
│ │ │ │ ├── jackson-databind-2.2.3.jar
│ │ │ │ ├── jackson-mapper-asl-1.9.13.jar
│ │ │ │ ├── java-image-scaling-0.8.6.jar
│ │ │ │ ├── javase-3.1.0.jar
│ │ │ │ ├── javax.inject-1.jar
│ │ │ │ ├── javax.mail-1.5.2.jar
│ │ │ │ ├── javax.mail-api-1.4.5.jar
│ │ │ │ ├── javax.servlet-jstl-1.2.jar
│ │ │ │ ├── jboss-logging-3.1.3.GA.jar
│ │ │ │ ├── json-20150729.jar
│ │ │ │ ├── jsqlparser-0.9.1.jar
│ │ │ │ ├── jstl-jstl-1.2.jar
│ │ │ │ ├── junit-4.11.jar
│ │ │ │ ├── jxl-2.6.12.jar
│ │ │ │ ├── log4j-1.2.17.jar
│ │ │ │ ├── log4j-api-2.5.jar
│ │ │ │ ├── log4j-core-2.5.jar
│ │ │ │ ├── log4j-jul-2.5.jar
│ │ │ │ ├── log4j-slf4j-impl-2.5.jar
│ │ │ │ ├── log4j-web-2.5.jar
│ │ │ │ ├── mybatis-3.4.1.jar
│ │ │ │ ├── mybatis-spring-1.3.0.jar
│ │ │ │ ├── mysql-connector-java-5.1.25.jar
│ │ │ │ ├── pagehelper-4.0.0.jar
│ │ │ │ ├── poi-3.15.jar
│ │ │ │ ├── quartz-2.2.1.jar
│ │ │ │ ├── shiro-all-1.3.2.jar
│ │ │ │ ├── shiro-core-1.2.5.jar
│ │ │ │ ├── shiro-freemarker-tags-0.1.jar
│ │ │ │ ├── shiro-guice-1.3.2.jar
│ │ │ │ ├── slf4j-api-1.6.1.jar
│ │ │ │ ├── slf4j-simple-1.6.1.jar
│ │ │ │ ├── spring-aop-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-beans-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-context-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-context-support-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-core-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-expression-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-integration-core-4.0.5.RELEASE.jar
│ │ │ │ ├── spring-integration-mail-4.0.5.RELEASE.jar
│ │ │ │ ├── spring-jdbc-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-messaging-4.2.4.RELEASE.jar
│ │ │ │ ├── spring-oxm-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-retry-1.1.1.RELEASE.jar
│ │ │ │ ├── spring-test-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-tx-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-web-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-webmvc-4.3.3.RELEASE.jar
│ │ │ │ ├── spring-websocket-4.2.4.RELEASE.jar
│ │ │ │ └── validation-api-1.1.0.Final.jar
│ │ │ └── web.xml
│ │ └── yanzhengma
│ │ ├── drag.css
│ │ └── drag.js
│ ├── ssmzhenghe.war
│ └── tomcat
│ ├── conf
│ │ ├── logging.properties
│ │ ├── tomcat-users.xml
│ │ └── web.xml
│ ├── logs
│ │ ├── access_log.2018-04-27
│ │ └── access_log.2018-04-28
│ └── work
│ └── Tomcat
│ └── localhost
│ └── ankangbaoxian
│ └── org
│ └── apache
│ └── jsp
│ ├── login_jsp.class
│ └── login_jsp.java
└── 材料
├── ankang.sql
└── 功能模块人员分工【项目二组】.xlsx
524 directories, 3360 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论