在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于SpringMVC MyBatis开发的bootstrap风格OA源码

基于SpringMVC MyBatis开发的bootstrap风格OA源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:45.56M
  • 下载次数:4
  • 浏览次数:74
  • 发布时间:2021-03-06
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
基本功能以完善,可根据自己需要进行修改。页面是基于bootstrap开发的。
【实例截图】
【核心代码】
5af4b367-d85f-42ba-8a8e-fe96211e4e96
└── OA
├── oa
│   ├── src
│   │   ├── com
│   │   │   └── ys
│   │   │   └── oa
│   │   │   ├── action
│   │   │   │   ├── announcement
│   │   │   │   │   └── AnnouncementAction.java
│   │   │   │   ├── authority
│   │   │   │   │   ├── DepartmentAuthorityAction.java
│   │   │   │   │   ├── PositiontAuthorityAction.java
│   │   │   │   │   └── UserAuthorityAction.java
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyControlAction.java
│   │   │   │   ├── department
│   │   │   │   │   └── DepartmentControlAction.java
│   │   │   │   ├── fileAction
│   │   │   │   │   ├── FileDownloadController.java
│   │   │   │   │   └── FileUploadController.java
│   │   │   │   ├── login
│   │   │   │   │   └── LoginAction.java
│   │   │   │   ├── post
│   │   │   │   │   └── PositionControlAction.java
│   │   │   │   ├── test
│   │   │   │   │   ├── DocConverter.java
│   │   │   │   │   └── Test.java
│   │   │   │   ├── travelPhotos
│   │   │   │   │   └── TravelPhotosAction.java
│   │   │   │   ├── user
│   │   │   │   │   └── UserControlAction.java
│   │   │   │   ├── workflow
│   │   │   │   │   └── CustomWorkflowAction.java
│   │   │   │   └── ztree
│   │   │   │   └── TreeAction.java
│   │   │   ├── dao
│   │   │   │   ├── announcement
│   │   │   │   │   ├── IAnnouncementMapper.java
│   │   │   │   │   └── IAnnouncementMapper.xml
│   │   │   │   ├── authority
│   │   │   │   │   ├── IDepartmentAuthority.java
│   │   │   │   │   ├── IDepartmentAuthority.xml
│   │   │   │   │   ├── IPositiontAuthority.java
│   │   │   │   │   ├── IPositiontAuthority.xml
│   │   │   │   │   ├── IUserAuthority.java
│   │   │   │   │   └── IUserAuthority.xml
│   │   │   │   ├── company
│   │   │   │   │   ├── ICompanyMapper.java
│   │   │   │   │   └── ICompanyMapper.xml
│   │   │   │   ├── department
│   │   │   │   │   ├── IDepartmentMapper.java
│   │   │   │   │   └── IDepartmentMapper.xml
│   │   │   │   ├── menu
│   │   │   │   │   ├── IMenuMapper.java
│   │   │   │   │   └── IMenuMapper.xml
│   │   │   │   ├── post
│   │   │   │   │   ├── IPositionMapper.java
│   │   │   │   │   └── IPositionMapper.xml
│   │   │   │   ├── system
│   │   │   │   │   ├── ISystemMapper.java
│   │   │   │   │   └── ISystemMapper.xml
│   │   │   │   ├── user
│   │   │   │   │   ├── IUserMapper.java
│   │   │   │   │   └── IUserMapper.xml
│   │   │   │   └── workflow
│   │   │   │   ├── IProcessMapper.java
│   │   │   │   └── IWorkflowMapper.java
│   │   │   ├── entity
│   │   │   │   ├── announcement
│   │   │   │   │   └── AnnouncementEntity.java
│   │   │   │   ├── authority
│   │   │   │   │   └── DepartmentAuthority.java
│   │   │   │   ├── base
│   │   │   │   │   └── BaseEntity.java
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyEntity.java
│   │   │   │   ├── department
│   │   │   │   │   └── DepartmentEntity.java
│   │   │   │   ├── menu
│   │   │   │   │   └── MenuEntity.java
│   │   │   │   ├── post
│   │   │   │   │   └── PositionEntity.java
│   │   │   │   ├── system
│   │   │   │   │   └── SystemEntity.java
│   │   │   │   ├── user
│   │   │   │   │   └── UserEntity.java
│   │   │   │   └── workflow
│   │   │   │   ├── ProcessEntity.java
│   │   │   │   └── WorkflowEntity.java
│   │   │   ├── filter
│   │   │   │   └── sessionFilter
│   │   │   │   └── MyHandlerInterceptor.java
│   │   │   ├── pageInfo
│   │   │   │   ├── PageModel.java
│   │   │   │   └── PageQuery.java
│   │   │   └── util
│   │   │   ├── ImageTransfer.java
│   │   │   ├── ImgUpload.java
│   │   │   ├── ImpProgressListener.java
│   │   │   ├── ProgressCommonsMultipartResolver.java
│   │   │   └── ProgressEntity.java
│   │   └── conf
│   │   ├── codeifAction.xml
│   │   ├── jdbc.properties
│   │   ├── log4j.properties
│   │   ├── mybatis-config.xml
│   │   ├── spring-mvc.xml
│   │   ├── spring-mybatis.xml
│   │   └── spring.xml
│   └── WebRoot
│   ├── 11.swf
│   ├── 123.swf
│   ├── FlexPaperViewer.swf
│   ├── images
│   │   ├── back_disabled.png
│   │   ├── back_enabled_hover.png
│   │   ├── back_enabled.png
│   │   ├── background.jpg
│   │   ├── closeBox1111.png
│   │   ├── closeBox.png
│   │   ├── email1.png
│   │   ├── email2.png
│   │   ├── email3.png
│   │   ├── email4.png
│   │   ├── favicon.ico
│   │   ├── forward_disabled.png
│   │   ├── forward_enabled_hover.png
│   │   ├── forward_enabled.png
│   │   ├── gallery
│   │   │   ├── image-1.jpg
│   │   │   ├── image-2.jpg
│   │   │   ├── image-3.jpg
│   │   │   ├── image-4.jpg
│   │   │   ├── image-5.jpg
│   │   │   ├── image-6.jpg
│   │   │   ├── thumb-1.jpg
│   │   │   ├── thumb-2.jpg
│   │   │   ├── thumb-3.jpg
│   │   │   ├── thumb-4.jpg
│   │   │   ├── thumb-5.jpg
│   │   │   └── thumb-6.jpg
│   │   ├── head.jpg
│   │   ├── lightbox.png
│   │   ├── loading_big.gif
│   │   ├── logo-.png
│   │   ├── photo.jpg
│   │   ├── sort_asc_disabled.png
│   │   ├── sort_asc.png
│   │   ├── sort_both.png
│   │   ├── sort_desc_disabled.png
│   │   ├── sort_desc.png
│   │   ├── spinner.gif
│   │   ├── spritemap@2x.png
│   │   ├── spritemap.png
│   │   └── titleImg.png
│   ├── index.jsp
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── resources
│   │   ├── assets
│   │   │   ├── avatars
│   │   │   │   ├── avatar1.png
│   │   │   │   ├── avatar2.png
│   │   │   │   ├── avatar3.png
│   │   │   │   ├── avatar4.png
│   │   │   │   ├── avatar5.png
│   │   │   │   ├── avatar.png
│   │   │   │   ├── profile-pic.jpg
│   │   │   │   └── user.jpg
│   │   │   ├── css
│   │   │   │   ├── ace.css
│   │   │   │   ├── ace-fonts.css
│   │   │   │   ├── ace-ie.css
│   │   │   │   ├── ace.onpage-help.css
│   │   │   │   ├── ace-part2.css
│   │   │   │   ├── ace-rtl.css
│   │   │   │   ├── ace-skins.css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap-datetimepicker.css
│   │   │   │   ├── bootstrap-duallistbox.css
│   │   │   │   ├── bootstrap-editable.css
│   │   │   │   ├── bootstrap-multiselect.css
│   │   │   │   ├── bootstrap-timepicker.css
│   │   │   │   ├── chosen.css
│   │   │   │   ├── chosen-sprite@2x.png
│   │   │   │   ├── chosen-sprite.png
│   │   │   │   ├── colorbox.css
│   │   │   │   ├── colorpicker.css
│   │   │   │   ├── datepicker.css
│   │   │   │   ├── daterangepicker.css
│   │   │   │   ├── dropzone.css
│   │   │   │   ├── font-awesome.css
│   │   │   │   ├── fullcalendar.css
│   │   │   │   ├── fullcalendar.print.css
│   │   │   │   ├── images
│   │   │   │   │   ├── border1.png
│   │   │   │   │   ├── border2.png
│   │   │   │   │   ├── border.png
│   │   │   │   │   ├── controls.png
│   │   │   │   │   ├── ie6
│   │   │   │   │   │   ├── borderBottomCenter.png
│   │   │   │   │   │   ├── borderBottomLeft.png
│   │   │   │   │   │   ├── borderBottomRight.png
│   │   │   │   │   │   ├── borderMiddleLeft.png
│   │   │   │   │   │   ├── borderMiddleRight.png
│   │   │   │   │   │   ├── borderTopCenter.png
│   │   │   │   │   │   ├── borderTopLeft.png
│   │   │   │   │   │   └── borderTopRight.png
│   │   │   │   │   ├── loading_background.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── meteorshower2.jpg
│   │   │   │   │   ├── meteorshower.jpg
│   │   │   │   │   ├── overlay.png
│   │   │   │   │   ├── pattern.jpg
│   │   │   │   │   ├── pattern.png
│   │   │   │   │   ├── spritemap@2x.png
│   │   │   │   │   └── spritemap.png
│   │   │   │   ├── img
│   │   │   │   │   ├── alpha.png
│   │   │   │   │   ├── hue.png
│   │   │   │   │   └── saturation.png
│   │   │   │   ├── jquery.gritter.css
│   │   │   │   ├── jquery-ui.css
│   │   │   │   ├── jquery-ui.custom.css
│   │   │   │   ├── less
│   │   │   │   │   ├── ace-features.less
│   │   │   │   │   ├── ace.less
│   │   │   │   │   ├── ace-nav.less
│   │   │   │   │   ├── ace-responsive.less
│   │   │   │   │   ├── ace-rtl.less
│   │   │   │   │   ├── basic.less
│   │   │   │   │   ├── bootstrap
│   │   │   │   │   │   ├── alerts.less
│   │   │   │   │   │   ├── badges.less
│   │   │   │   │   │   ├── bootstrap.less
│   │   │   │   │   │   ├── breadcrumbs.less
│   │   │   │   │   │   ├── button-groups.less
│   │   │   │   │   │   ├── buttons.less
│   │   │   │   │   │   ├── carousel.less
│   │   │   │   │   │   ├── close.less
│   │   │   │   │   │   ├── code.less
│   │   │   │   │   │   ├── component-animations.less
│   │   │   │   │   │   ├── dropdowns.less
│   │   │   │   │   │   ├── forms.less
│   │   │   │   │   │   ├── glyphicons.less
│   │   │   │   │   │   ├── grid.less
│   │   │   │   │   │   ├── input-groups.less
│   │   │   │   │   │   ├── jumbotron.less
│   │   │   │   │   │   ├── labels.less
│   │   │   │   │   │   ├── list-group.less
│   │   │   │   │   │   ├── media.less
│   │   │   │   │   │   ├── mixins
│   │   │   │   │   │   │   ├── alerts.less
│   │   │   │   │   │   │   ├── background-variant.less
│   │   │   │   │   │   │   ├── border-radius.less
│   │   │   │   │   │   │   ├── buttons.less
│   │   │   │   │   │   │   ├── center-block.less
│   │   │   │   │   │   │   ├── clearfix.less
│   │   │   │   │   │   │   ├── forms.less
│   │   │   │   │   │   │   ├── gradients.less
│   │   │   │   │   │   │   ├── grid-framework.less
│   │   │   │   │   │   │   ├── grid.less
│   │   │   │   │   │   │   ├── hide-text.less
│   │   │   │   │   │   │   ├── image.less
│   │   │   │   │   │   │   ├── labels.less
│   │   │   │   │   │   │   ├── list-group.less
│   │   │   │   │   │   │   ├── nav-divider.less
│   │   │   │   │   │   │   ├── nav-vertical-align.less
│   │   │   │   │   │   │   ├── opacity.less
│   │   │   │   │   │   │   ├── pagination.less
│   │   │   │   │   │   │   ├── panels.less
│   │   │   │   │   │   │   ├── progress-bar.less
│   │   │   │   │   │   │   ├── reset-filter.less
│   │   │   │   │   │   │   ├── resize.less
│   │   │   │   │   │   │   ├── responsive-visibility.less
│   │   │   │   │   │   │   ├── size.less
│   │   │   │   │   │   │   ├── tab-focus.less
│   │   │   │   │   │   │   ├── table-row.less
│   │   │   │   │   │   │   ├── text-emphasis.less
│   │   │   │   │   │   │   ├── text-overflow.less
│   │   │   │   │   │   │   └── vendor-prefixes.less
│   │   │   │   │   │   ├── mixins.less
│   │   │   │   │   │   ├── modals.less
│   │   │   │   │   │   ├── navbar.less
│   │   │   │   │   │   ├── navs.less
│   │   │   │   │   │   ├── normalize.less
│   │   │   │   │   │   ├── pager.less
│   │   │   │   │   │   ├── pagination.less
│   │   │   │   │   │   ├── panels.less
│   │   │   │   │   │   ├── popovers.less
│   │   │   │   │   │   ├── print.less
│   │   │   │   │   │   ├── progress-bars.less
│   │   │   │   │   │   ├── responsive-embed.less
│   │   │   │   │   │   ├── responsive-utilities.less
│   │   │   │   │   │   ├── scaffolding.less
│   │   │   │   │   │   ├── tables.less
│   │   │   │   │   │   ├── theme.less
│   │   │   │   │   │   ├── thumbnails.less
│   │   │   │   │   │   ├── tooltip.less
│   │   │   │   │   │   ├── type.less
│   │   │   │   │   │   ├── utilities.less
│   │   │   │   │   │   ├── variables.less
│   │   │   │   │   │   └── wells.less
│   │   │   │   │   ├── breadcrumbs.less
│   │   │   │   │   ├── bs3-reset.less
│   │   │   │   │   ├── buttons.less
│   │   │   │   │   ├── dropdown
│   │   │   │   │   │   ├── colorpicker.less
│   │   │   │   │   │   ├── navbar-dropdown.less
│   │   │   │   │   │   └── navbar-tabbed-dropdown.less
│   │   │   │   │   ├── dropdown.less
│   │   │   │   │   ├── ext
│   │   │   │   │   │   └── bootstrap-tag.less
│   │   │   │   │   ├── fonts.less
│   │   │   │   │   ├── fonts-rel.less
│   │   │   │   │   ├── footer.less
│   │   │   │   │   ├── form
│   │   │   │   │   │   ├── checkbox.less
│   │   │   │   │   │   └── file.less
│   │   │   │   │   ├── form.less
│   │   │   │   │   ├── gallery.less
│   │   │   │   │   ├── general.less
│   │   │   │   │   ├── icon-animated.less
│   │   │   │   │   ├── infobox.less
│   │   │   │   │   ├── items.less
│   │   │   │   │   ├── label-badge.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   ├── modal.less
│   │   │   │   │   ├── navbar
│   │   │   │   │   │   ├── collapsible.less
│   │   │   │   │   │   ├── navbar-menu-form.less
│   │   │   │   │   │   ├── toggle-button.less
│   │   │   │   │   │   ├── user-buttons.less
│   │   │   │   │   │   ├── user-buttons-move-down.less
│   │   │   │   │   │   ├── user-dropdown-position.less
│   │   │   │   │   │   └── user-menu.less
│   │   │   │   │   ├── onpage-help.less
│   │   │   │   │   ├── other.less
│   │   │   │   │   ├── page.error.less
│   │   │   │   │   ├── page.inbox.less
│   │   │   │   │   ├── page.invoice.less
│   │   │   │   │   ├── page.login.less
│   │   │   │   │   ├── page.pricing.less
│   │   │   │   │   ├── page.profile.less
│   │   │   │   │   ├── page.timeline.less
│   │   │   │   │   ├── print.less
│   │   │   │   │   ├── progressbar.less
│   │   │   │   │   ├── scroll.less
│   │   │   │   │   ├── searchbox.less
│   │   │   │   │   ├── sidebar
│   │   │   │   │   │   ├── active.less
│   │   │   │   │   │   ├── compact.less
│   │   │   │   │   │   ├── ff_fix.less
│   │   │   │   │   │   ├── highlight.less
│   │   │   │   │   │   ├── horizontal.less
│   │   │   │   │   │   ├── hover.less
│   │   │   │   │   │   ├── min.less
│   │   │   │   │   │   ├── multiple.less
│   │   │   │   │   │   ├── old-toggle-button.less
│   │   │   │   │   │   ├── responsive-1.less
│   │   │   │   │   │   ├── responsive-2.less
│   │   │   │   │   │   ├── responsive-3.less
│   │   │   │   │   │   ├── shortcuts-toggle.less
│   │   │   │   │   │   ├── sidebar-fixed.less
│   │   │   │   │   │   └── sub-arrow.less
│   │   │   │   │   ├── sidebar.less
│   │   │   │   │   ├── skins
│   │   │   │   │   │   ├── empty.less
│   │   │   │   │   │   ├── no-skin.less
│   │   │   │   │   │   ├── skin-1.less
│   │   │   │   │   │   ├── skin-2.less
│   │   │   │   │   │   ├── skin-3.less
│   │   │   │   │   │   └── skins.less
│   │   │   │   │   ├── tab-accordion.less
│   │   │   │   │   ├── tables.less
│   │   │   │   │   ├── thirdparty-calendar.less
│   │   │   │   │   ├── thirdparty-chosen.less
│   │   │   │   │   ├── thirdparty-colorbox.less
│   │   │   │   │   ├── thirdparty-dataTables.less
│   │   │   │   │   ├── thirdparty-date.less
│   │   │   │   │   ├── thirdparty-dropzone.less
│   │   │   │   │   ├── thirdparty-duallist-multiselect.less
│   │   │   │   │   ├── thirdparty-editable.less
│   │   │   │   │   ├── thirdparty-fuelux.less
│   │   │   │   │   ├── thirdparty-gritter.less
│   │   │   │   │   ├── thirdparty-jqgrid.less
│   │   │   │   │   ├── thirdparty-jquery-ui.less
│   │   │   │   │   ├── thirdparty-nestable.less
│   │   │   │   │   ├── thirdparty-raty.less
│   │   │   │   │   ├── thirdparty-select2.less
│   │   │   │   │   ├── thirdparty-slider.less
│   │   │   │   │   ├── thirdparty-typeahead.less
│   │   │   │   │   ├── thirdparty-wysiwyg.less
│   │   │   │   │   ├── tooltip-popover.less
│   │   │   │   │   ├── utility.less
│   │   │   │   │   ├── variables.less
│   │   │   │   │   └── widget.less
│   │   │   │   ├── pace.css
│   │   │   │   ├── prettify.css
│   │   │   │   ├── select2.css
│   │   │   │   ├── select2.png
│   │   │   │   ├── select2-spinner.gif
│   │   │   │   ├── select2x2.png
│   │   │   │   ├── sunburst.css
│   │   │   │   └── ui.jqgrid.css
│   │   │   ├── fonts
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── OpenSans-300.woff
│   │   │   │   ├── OpenSans-400.woff
│   │   │   │   └── readme
│   │   │   ├── head.jsp
│   │   │   ├── images
│   │   │   │   ├── back_disabled.png
│   │   │   │   ├── back_enabled_hover.png
│   │   │   │   ├── back_enabled.png
│   │   │   │   ├── email1.png
│   │   │   │   ├── email2.png
│   │   │   │   ├── email3.png
│   │   │   │   ├── email4.png
│   │   │   │   ├── forward_disabled.png
│   │   │   │   ├── forward_enabled_hover.png
│   │   │   │   ├── forward_enabled.png
│   │   │   │   ├── gallery
│   │   │   │   │   ├── image-1.jpg
│   │   │   │   │   ├── image-2.jpg
│   │   │   │   │   ├── image-3.jpg
│   │   │   │   │   ├── image-4.jpg
│   │   │   │   │   ├── image-5.jpg
│   │   │   │   │   ├── image-6.jpg
│   │   │   │   │   ├── thumb-1.jpg
│   │   │   │   │   ├── thumb-2.jpg
│   │   │   │   │   ├── thumb-3.jpg
│   │   │   │   │   ├── thumb-4.jpg
│   │   │   │   │   ├── thumb-5.jpg
│   │   │   │   │   └── thumb-6.jpg
│   │   │   │   ├── sort_asc_disabled.png
│   │   │   │   ├── sort_asc.png
│   │   │   │   ├── sort_both.png
│   │   │   │   ├── sort_desc_disabled.png
│   │   │   │   ├── sort_desc.png
│   │   │   │   ├── spritemap@2x.png
│   │   │   │   └── spritemap.png
│   │   │   ├── img
│   │   │   │   ├── clear.png
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   ├── glyphicons-halflings-white.png
│   │   │   │   └── loading.gif
│   │   │   └── js
│   │   │   ├── ace
│   │   │   │   ├── ace.ajax-content.js
│   │   │   │   ├── ace.auto-container.js
│   │   │   │   ├── ace.auto-padding.js
│   │   │   │   ├── ace.js
│   │   │   │   ├── ace.onpage-help.js
│   │   │   │   ├── ace.searchbox-autocomplete.js
│   │   │   │   ├── ace.settings.js
│   │   │   │   ├── ace.settings-rtl.js
│   │   │   │   ├── ace.settings-skin.js
│   │   │   │   ├── ace.sidebar.js
│   │   │   │   ├── ace.sidebar-scroll-1.js
│   │   │   │   ├── ace.sidebar-scroll-2.js
│   │   │   │   ├── ace.submenu-hover.js
│   │   │   │   ├── ace.touch-drag.js
│   │   │   │   ├── ace.widget-box.js
│   │   │   │   ├── ace.widget-on-reload.js
│   │   │   │   ├── elements.aside.js
│   │   │   │   ├── elements.colorpicker.js
│   │   │   │   ├── elements.fileinput.js
│   │   │   │   ├── elements.onpage-help.js
│   │   │   │   ├── elements.scroller.js
│   │   │   │   ├── elements.spinner.js
│   │   │   │   ├── elements.treeview.js
│   │   │   │   ├── elements.typeahead.js
│   │   │   │   ├── elements.wizard.js
│   │   │   │   ├── elements.wysiwyg.js
│   │   │   │   ├── readme
│   │   │   │   └── scripts.json
│   │   │   ├── ace-elements.js
│   │   │   ├── ace-extra.js
│   │   │   ├── ace.js
│   │   │   ├── additional-methods.js
│   │   │   ├── ajaxfileupload.js
│   │   │   ├── bootbox.js
│   │   │   ├── bootstrap-colorpicker.js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap-multiselect.js
│   │   │   ├── bootstrap-tag.js
│   │   │   ├── bootstrap-wysiwyg.js
│   │   │   ├── chosen.jquery.js
│   │   │   ├── dataTables
│   │   │   │   ├── extensions
│   │   │   │   │   ├── ColVis
│   │   │   │   │   │   └── js
│   │   │   │   │   │   └── dataTables.colVis.js
│   │   │   │   │   └── TableTools
│   │   │   │   │   ├── js
│   │   │   │   │   │   └── dataTables.tableTools.js
│   │   │   │   │   └── swf
│   │   │   │   │   ├── copy_csv_xls_pdf.swf
│   │   │   │   │   └── copy_csv_xls.swf
│   │   │   │   ├── jquery.dataTables.bootstrap.js
│   │   │   │   └── jquery.dataTables.js
│   │   │   ├── date-time
│   │   │   │   ├── bootstrap-datepicker.js
│   │   │   │   ├── bootstrap-datetimepicker.js
│   │   │   │   ├── bootstrap-timepicker.js
│   │   │   │   ├── daterangepicker.js
│   │   │   │   └── moment.js
│   │   │   ├── dropzone.js
│   │   │   ├── excanvas.js
│   │   │   ├── flot
│   │   │   │   ├── jquery.flot.js
│   │   │   │   ├── jquery.flot.pie.js
│   │   │   │   └── jquery.flot.resize.js
│   │   │   ├── fuelux
│   │   │   │   ├── fuelux.spinner.js
│   │   │   │   ├── fuelux.tree.js
│   │   │   │   └── fuelux.wizard.js
│   │   │   ├── fullcalendar.js
│   │   │   ├── html5shiv.js
│   │   │   ├── jqBootstrapValidation.js
│   │   │   ├── jqGrid
│   │   │   │   ├── i18n
│   │   │   │   │   ├── grid.locale-ar.js
│   │   │   │   │   ├── grid.locale-bg1251.js
│   │   │   │   │   ├── grid.locale-bg.js
│   │   │   │   │   ├── grid.locale-cat.js
│   │   │   │   │   ├── grid.locale-cn.js
│   │   │   │   │   ├── grid.locale-cs.js
│   │   │   │   │   ├── grid.locale-da.js
│   │   │   │   │   ├── grid.locale-de.js
│   │   │   │   │   ├── grid.locale-dk.js
│   │   │   │   │   ├── grid.locale-el.js
│   │   │   │   │   ├── grid.locale-en.js
│   │   │   │   │   ├── grid.locale-es.js
│   │   │   │   │   ├── grid.locale-fa.js
│   │   │   │   │   ├── grid.locale-fi.js
│   │   │   │   │   ├── grid.locale-fr.js
│   │   │   │   │   ├── grid.locale-gl.js
│   │   │   │   │   ├── grid.locale-he.js
│   │   │   │   │   ├── grid.locale-hr1250.js
│   │   │   │   │   ├── grid.locale-hr.js
│   │   │   │   │   ├── grid.locale-hu.js
│   │   │   │   │   ├── grid.locale-id.js
│   │   │   │   │   ├── grid.locale-is.js
│   │   │   │   │   ├── grid.locale-it.js
│   │   │   │   │   ├── grid.locale-ja.js
│   │   │   │   │   ├── grid.locale-kr.js
│   │   │   │   │   ├── grid.locale-lt.js
│   │   │   │   │   ├── grid.locale-mne.js
│   │   │   │   │   ├── grid.locale-nl.js
│   │   │   │   │   ├── grid.locale-no.js
│   │   │   │   │   ├── grid.locale-pl.js
│   │   │   │   │   ├── grid.locale-pt-br.js
│   │   │   │   │   ├── grid.locale-pt.js
│   │   │   │   │   ├── grid.locale-ro.js
│   │   │   │   │   ├── grid.locale-ru.js
│   │   │   │   │   ├── grid.locale-sk.js
│   │   │   │   │   ├── grid.locale-sr.js
│   │   │   │   │   ├── grid.locale-sr-latin.js
│   │   │   │   │   ├── grid.locale-sv.js
│   │   │   │   │   ├── grid.locale-th.js
│   │   │   │   │   ├── grid.locale-tr.js
│   │   │   │   │   ├── grid.locale-tw.js
│   │   │   │   │   ├── grid.locale-ua.js
│   │   │   │   │   └── grid.locale-vi.js
│   │   │   │   └── jquery.jqGrid.src.js
│   │   │   ├── jquery1x.js
│   │   │   ├── jquery.autosize.js
│   │   │   ├── jquery.bootstrap-duallistbox.js
│   │   │   ├── jquery.colorbox.js
│   │   │   ├── jquery.cookie.js
│   │   │   ├── jquery.easypiechart.js
│   │   │   ├── jquery.gritter.js
│   │   │   ├── jquery.hotkeys.js
│   │   │   ├── jquery.inputlimiter.1.3.1.js
│   │   │   ├── jquery.js
│   │   │   ├── jquery.knob.js
│   │   │   ├── jquery.maskedinput.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery.mobile.custom.js
│   │   │   ├── jquery.mousewheel.js
│   │   │   ├── jquery.nestable.js
│   │   │   ├── jquery.raty.js
│   │   │   ├── jquery.slimscroll.js
│   │   │   ├── jquery.sparkline.js
│   │   │   ├── jquery-ui.custom.js
│   │   │   ├── jquery-ui.js
│   │   │   ├── jquery.ui.touch-punch.js
│   │   │   ├── jquery.validate.js
│   │   │   ├── language
│   │   │   │   ├── css.js
│   │   │   │   ├── generic.js
│   │   │   │   ├── html.js
│   │   │   │   ├── javascript.js
│   │   │   │   └── php.js
│   │   │   ├── markdown
│   │   │   │   ├── bootstrap-markdown.js
│   │   │   │   ├── markdown.js
│   │   │   │   └── to-markdown.js
│   │   │   ├── pace.js
│   │   │   ├── prettify.js
│   │   │   ├── rainbow.js
│   │   │   ├── respond.js
│   │   │   ├── select2.js
│   │   │   ├── spin.js
│   │   │   ├── typeahead.jquery.js
│   │   │   └── x-editable
│   │   │   ├── ace-editable.js
│   │   │   └── bootstrap-editable.js
│   │   ├── ckeditor
│   │   │   ├── adapters
│   │   │   │   └── jquery.js
│   │   │   ├── build-config.js
│   │   │   ├── CHANGES.md
│   │   │   ├── ckeditor.js
│   │   │   ├── config.js
│   │   │   ├── contents.css
│   │   │   ├── lang
│   │   │   │   ├── af.js
│   │   │   │   ├── ar.js
│   │   │   │   ├── bg.js
│   │   │   │   ├── bn.js
│   │   │   │   ├── bs.js
│   │   │   │   ├── ca.js
│   │   │   │   ├── cs.js
│   │   │   │   ├── cy.js
│   │   │   │   ├── da.js
│   │   │   │   ├── de.js
│   │   │   │   ├── el.js
│   │   │   │   ├── en-au.js
│   │   │   │   ├── en-ca.js
│   │   │   │   ├── en-gb.js
│   │   │   │   ├── en.js
│   │   │   │   ├── eo.js
│   │   │   │   ├── es.js
│   │   │   │   ├── et.js
│   │   │   │   ├── eu.js
│   │   │   │   ├── fa.js
│   │   │   │   ├── fi.js
│   │   │   │   ├── fo.js
│   │   │   │   ├── fr-ca.js
│   │   │   │   ├── fr.js
│   │   │   │   ├── gl.js
│   │   │   │   ├── gu.js
│   │   │   │   ├── he.js
│   │   │   │   ├── hi.js
│   │   │   │   ├── hr.js
│   │   │   │   ├── hu.js
│   │   │   │   ├── id.js
│   │   │   │   ├── is.js
│   │   │   │   ├── it.js
│   │   │   │   ├── ja.js
│   │   │   │   ├── ka.js
│   │   │   │   ├── km.js
│   │   │   │   ├── ko.js
│   │   │   │   ├── ku.js
│   │   │   │   ├── lt.js
│   │   │   │   ├── lv.js
│   │   │   │   ├── mk.js
│   │   │   │   ├── mn.js
│   │   │   │   ├── ms.js
│   │   │   │   ├── nb.js
│   │   │   │   ├── nl.js
│   │   │   │   ├── no.js
│   │   │   │   ├── pl.js
│   │   │   │   ├── pt-br.js
│   │   │   │   ├── pt.js
│   │   │   │   ├── ro.js
│   │   │   │   ├── ru.js
│   │   │   │   ├── si.js
│   │   │   │   ├── sk.js
│   │   │   │   ├── sl.js
│   │   │   │   ├── sq.js
│   │   │   │   ├── sr.js
│   │   │   │   ├── sr-latn.js
│   │   │   │   ├── sv.js
│   │   │   │   ├── th.js
│   │   │   │   ├── tr.js
│   │   │   │   ├── tt.js
│   │   │   │   ├── ug.js
│   │   │   │   ├── uk.js
│   │   │   │   ├── vi.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh.js
│   │   │   ├── LICENSE.md
│   │   │   ├── plugins
│   │   │   │   ├── a11yhelp
│   │   │   │   │   └── dialogs
│   │   │   │   │   ├── a11yhelp.js
│   │   │   │   │   └── lang
│   │   │   │   │   ├── af.js
│   │   │   │   │   ├── ar.js
│   │   │   │   │   ├── bg.js
│   │   │   │   │   ├── ca.js
│   │   │   │   │   ├── cs.js
│   │   │   │   │   ├── cy.js
│   │   │   │   │   ├── da.js
│   │   │   │   │   ├── de.js
│   │   │   │   │   ├── el.js
│   │   │   │   │   ├── en-gb.js
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── eo.js
│   │   │   │   │   ├── es.js
│   │   │   │   │   ├── et.js
│   │   │   │   │   ├── fa.js
│   │   │   │   │   ├── fi.js
│   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   ├── gl.js
│   │   │   │   │   ├── gu.js
│   │   │   │   │   ├── he.js
│   │   │   │   │   ├── hi.js
│   │   │   │   │   ├── hr.js
│   │   │   │   │   ├── hu.js
│   │   │   │   │   ├── id.js
│   │   │   │   │   ├── it.js
│   │   │   │   │   ├── ja.js
│   │   │   │   │   ├── km.js
│   │   │   │   │   ├── ko.js
│   │   │   │   │   ├── ku.js
│   │   │   │   │   ├── lt.js
│   │   │   │   │   ├── lv.js
│   │   │   │   │   ├── mk.js
│   │   │   │   │   ├── mn.js
│   │   │   │   │   ├── nb.js
│   │   │   │   │   ├── nl.js
│   │   │   │   │   ├── no.js
│   │   │   │   │   ├── pl.js
│   │   │   │   │   ├── pt-br.js
│   │   │   │   │   ├── pt.js
│   │   │   │   │   ├── ro.js
│   │   │   │   │   ├── ru.js
│   │   │   │   │   ├── si.js
│   │   │   │   │   ├── sk.js
│   │   │   │   │   ├── sl.js
│   │   │   │   │   ├── sq.js
│   │   │   │   │   ├── sr.js
│   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   ├── sv.js
│   │   │   │   │   ├── th.js
│   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   ├── tr.js
│   │   │   │   │   ├── tt.js
│   │   │   │   │   ├── ug.js
│   │   │   │   │   ├── uk.js
│   │   │   │   │   ├── vi.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh.js
│   │   │   │   ├── about
│   │   │   │   │   └── dialogs
│   │   │   │   │   ├── about.js
│   │   │   │   │   ├── hidpi
│   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   ├── clipboard
│   │   │   │   │   └── dialogs
│   │   │   │   │   └── paste.js
│   │   │   │   ├── dialog
│   │   │   │   │   └── dialogDefinition.js
│   │   │   │   ├── icons_hidpi.png
│   │   │   │   ├── icons.png
│   │   │   │   ├── image
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   └── image.js
│   │   │   │   │   └── images
│   │   │   │   │   └── noimage.png
│   │   │   │   ├── link
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   └── link.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── anchor.png
│   │   │   │   │   └── hidpi
│   │   │   │   │   └── anchor.png
│   │   │   │   ├── magicline
│   │   │   │   │   └── images
│   │   │   │   │   ├── hidpi
│   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   └── icon-rtl.png
│   │   │   │   │   ├── icon.png
│   │   │   │   │   └── icon-rtl.png
│   │   │   │   ├── pastefromword
│   │   │   │   │   └── filter
│   │   │   │   │   └── default.js
│   │   │   │   ├── scayt
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   └── README.md
│   │   │   │   ├── specialchar
│   │   │   │   │   └── dialogs
│   │   │   │   │   ├── lang
│   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   ├── en-gb.js
│   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   ├── gl.js
│   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   ├── id.js
│   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   ├── si.js
│   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   ├── sq.js
│   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   ├── tt.js
│   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   └── zh.js
│   │   │   │   │   └── specialchar.js
│   │   │   │   ├── table
│   │   │   │   │   └── dialogs
│   │   │   │   │   └── table.js
│   │   │   │   ├── tabletools
│   │   │   │   │   └── dialogs
│   │   │   │   │   └── tableCell.js
│   │   │   │   └── wsc
│   │   │   │   ├── dialogs
│   │   │   │   │   ├── ciframe.html
│   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   ├── wsc.css
│   │   │   │   │   ├── wsc_ie.js
│   │   │   │   │   └── wsc.js
│   │   │   │   ├── LICENSE.md
│   │   │   │   └── README.md
│   │   │   ├── README.md
│   │   │   ├── samples
│   │   │   │   ├── ajax.html
│   │   │   │   ├── api.html
│   │   │   │   ├── appendto.html
│   │   │   │   ├── assets
│   │   │   │   │   ├── inlineall
│   │   │   │   │   │   └── logo.png
│   │   │   │   │   ├── outputxhtml
│   │   │   │   │   │   └── outputxhtml.css
│   │   │   │   │   ├── posteddata.php
│   │   │   │   │   ├── sample.jpg
│   │   │   │   │   └── uilanguages
│   │   │   │   │   └── languages.js
│   │   │   │   ├── datafiltering.html
│   │   │   │   ├── divreplace.html
│   │   │   │   ├── index.html
│   │   │   │   ├── inlineall.html
│   │   │   │   ├── inlinebycode.html
│   │   │   │   ├── inlinetextarea.html
│   │   │   │   ├── jquery.html
│   │   │   │   ├── plugins
│   │   │   │   │   ├── dialog
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   └── my_dialog.js
│   │   │   │   │   │   └── dialog.html
│   │   │   │   │   ├── enterkey
│   │   │   │   │   │   └── enterkey.html
│   │   │   │   │   ├── htmlwriter
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   └── outputforflash
│   │   │   │   │   │   │   ├── outputforflash.fla
│   │   │   │   │   │   │   ├── outputforflash.swf
│   │   │   │   │   │   │   └── swfobject.js
│   │   │   │   │   │   ├── outputforflash.html
│   │   │   │   │   │   └── outputhtml.html
│   │   │   │   │   ├── magicline
│   │   │   │   │   │   └── magicline.html
│   │   │   │   │   ├── toolbar
│   │   │   │   │   │   └── toolbar.html
│   │   │   │   │   └── wysiwygarea
│   │   │   │   │   └── fullpage.html
│   │   │   │   ├── readonly.html
│   │   │   │   ├── replacebyclass.html
│   │   │   │   ├── replacebycode.html
│   │   │   │   ├── sample.css
│   │   │   │   ├── sample.js
│   │   │   │   ├── sample_posteddata.php
│   │   │   │   ├── tabindex.html
│   │   │   │   ├── uicolor.html
│   │   │   │   ├── uilanguages.html
│   │   │   │   └── xhtmlstyle.html
│   │   │   ├── skins
│   │   │   │   └── moono
│   │   │   │   ├── dialog.css
│   │   │   │   ├── dialog_ie7.css
│   │   │   │   ├── dialog_ie8.css
│   │   │   │   ├── dialog_ie.css
│   │   │   │   ├── dialog_iequirks.css
│   │   │   │   ├── editor.css
│   │   │   │   ├── editor_gecko.css
│   │   │   │   ├── editor_ie7.css
│   │   │   │   ├── editor_ie8.css
│   │   │   │   ├── editor_ie.css
│   │   │   │   ├── editor_iequirks.css
│   │   │   │   ├── icons_hidpi.png
│   │   │   │   ├── icons.png
│   │   │   │   ├── images
│   │   │   │   │   ├── arrow.png
│   │   │   │   │   ├── close.png
│   │   │   │   │   ├── hidpi
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── lock-open.png
│   │   │   │   │   │   ├── lock.png
│   │   │   │   │   │   └── refresh.png
│   │   │   │   │   ├── lock-open.png
│   │   │   │   │   ├── lock.png
│   │   │   │   │   └── refresh.png
│   │   │   │   └── readme.md
│   │   │   └── styles.js
│   │   ├── css
│   │   │   ├── button.css
│   │   │   └── navigation.css
│   │   ├── docs
│   │   │   ├── assets
│   │   │   │   └── js
│   │   │   │   ├── language
│   │   │   │   │   ├── css.js
│   │   │   │   │   ├── generic.js
│   │   │   │   │   ├── html.js
│   │   │   │   │   ├── javascript.js
│   │   │   │   │   └── php.js
│   │   │   │   ├── rainbow.js
│   │   │   │   ├── rainbow.min.js
│   │   │   │   └── themes
│   │   │   │   ├── all-hallows-eve.css
│   │   │   │   ├── blackboard.css
│   │   │   │   ├── dreamweaver.css
│   │   │   │   ├── espresso-libre.css
│   │   │   │   ├── github.css
│   │   │   │   ├── kimbie-dark.css
│   │   │   │   ├── kimbie-light.css
│   │   │   │   ├── monokai.css
│   │   │   │   ├── obsidian.css
│   │   │   │   ├── paraiso-dark.css
│   │   │   │   ├── paraiso-light.css
│   │   │   │   ├── pastie.css
│   │   │   │   ├── solarized-dark.css
│   │   │   │   ├── solarized-light.css
│   │   │   │   ├── sunburst.css
│   │   │   │   ├── tomorrow-night.css
│   │   │   │   ├── tricolore.css
│   │   │   │   ├── twilight.css
│   │   │   │   └── zenburnesque.css
│   │   │   ├── blank.html
│   │   │   ├── images
│   │   │   │   ├── active.png
│   │   │   │   ├── default.png
│   │   │   │   ├── help-icon1.png
│   │   │   │   ├── help-icon2.png
│   │   │   │   ├── help-include-all.png
│   │   │   │   ├── help-panels.png
│   │   │   │   ├── navbar-mobile1.png
│   │   │   │   ├── navbar-mobile2.png
│   │   │   │   ├── navbar.png
│   │   │   │   ├── new-toggle.png
│   │   │   │   ├── old-toggle.png
│   │   │   │   ├── scroll-content.png
│   │   │   │   ├── sidebar-mobile1.png
│   │   │   │   ├── sidebar-mobile2.png
│   │   │   │   ├── sidebar.png
│   │   │   │   ├── tabbed-dropdown.png
│   │   │   │   ├── tabless-inbox.png
│   │   │   │   ├── toggle-sidebar-11.png
│   │   │   │   ├── toggle-sidebar-1.png
│   │   │   │   ├── toggle-sidebar-3.png
│   │   │   │   └── user-menu.png
│   │   │   ├── index.html
│   │   │   └── sections
│   │   │   ├── basics
│   │   │   │   ├── ajax.html
│   │   │   │   ├── content.html
│   │   │   │   ├── footer.html
│   │   │   │   ├── layout.html
│   │   │   │   ├── navbar.html
│   │   │   │   └── sidebar.html
│   │   │   ├── changes
│   │   │   │   └── index.html
│   │   │   ├── credits
│   │   │   │   └── index.html
│   │   │   ├── custom
│   │   │   │   ├── checkbox.html
│   │   │   │   ├── colorpicker.html
│   │   │   │   ├── content-slider.html
│   │   │   │   ├── extra.html
│   │   │   │   ├── file-input.html
│   │   │   │   ├── index.html
│   │   │   │   ├── inline-editable.html
│   │   │   │   ├── onpage-help.html
│   │   │   │   ├── scrollbar.html
│   │   │   │   └── widget-box.html
│   │   │   ├── elements
│   │   │   │   └── index.html
│   │   │   ├── files
│   │   │   │   ├── css.html
│   │   │   │   ├── examples.html
│   │   │   │   ├── html.html
│   │   │   │   ├── javascript.html
│   │   │   │   └── mustache.html
│   │   │   ├── intro
│   │   │   │   └── index.html
│   │   │   ├── issues
│   │   │   │   └── index.html
│   │   │   ├── pages
│   │   │   │   ├── dashboard.html
│   │   │   │   ├── email.html
│   │   │   │   ├── error.html
│   │   │   │   ├── faq.html
│   │   │   │   ├── gallery.html
│   │   │   │   ├── inbox.html
│   │   │   │   ├── invoice.html
│   │   │   │   ├── login.html
│   │   │   │   ├── pricing.html
│   │   │   │   ├── profile.html
│   │   │   │   └── timeline.html
│   │   │   ├── plugins
│   │   │   │   ├── bootstrap.html
│   │   │   │   ├── charts.html
│   │   │   │   ├── date-time.html
│   │   │   │   ├── editor.html
│   │   │   │   ├── fuelux.html
│   │   │   │   ├── input.html
│   │   │   │   ├── jquery.html
│   │   │   │   ├── misc.html
│   │   │   │   ├── tables.html
│   │   │   │   └── tools.html
│   │   │   └── settings
│   │   │   └── index.html
│   │   ├── flexpaper
│   │   │   ├── css
│   │   │   │   └── flexpaper.css
│   │   │   ├── js
│   │   │   │   ├── flexpaper_flash_debug.js
│   │   │   │   ├── flexpaper_flash.js
│   │   │   │   ├── jquery.js
│   │   │   │   └── swfobject.js
│   │   │   └── swf
│   │   │   └── FlexPaperViewer.swf
│   │   ├── image-cut
│   │   │   ├── assets
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   └── qunit.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   ├── img
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── picture-2.jpg
│   │   │   │   │   └── picture.jpg
│   │   │   │   └── js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── qunit.js
│   │   │   ├── css
│   │   │   │   ├── default.css
│   │   │   │   ├── main.css
│   │   │   │   └── normalize.css
│   │   │   ├── dist
│   │   │   │   ├── cropper.css
│   │   │   │   ├── cropper.js
│   │   │   │   ├── cropper.min.css
│   │   │   │   └── cropper.min.js
│   │   │   ├── examples
│   │   │   │   └── crop-avatar
│   │   │   │   ├── crop.php
│   │   │   │   ├── css
│   │   │   │   │   └── main.css
│   │   │   │   ├── img
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   └── picture.jpg
│   │   │   │   ├── index.html
│   │   │   │   ├── js
│   │   │   │   │   └── main.js
│   │   │   │   └── README.md
│   │   │   ├── fonts
│   │   │   │   ├── icomoon.eot
│   │   │   │   ├── icomoon.svg
│   │   │   │   ├── icomoon.ttf
│   │   │   │   └── icomoon.woff
│   │   │   ├── index.html
│   │   │   ├── js
│   │   │   │   └── main.js
│   │   │   ├── related
│   │   │   │   ├── 1.jpg
│   │   │   │   └── 2.jpg
│   │   │   └── src
│   │   │   ├── img
│   │   │   │   └── bg.png
│   │   │   ├── js
│   │   │   │   ├── build.js
│   │   │   │   ├── change.js
│   │   │   │   ├── cropper.js
│   │   │   │   ├── defaults.js
│   │   │   │   ├── handlers.js
│   │   │   │   ├── intro.js
│   │   │   │   ├── listen.js
│   │   │   │   ├── load.js
│   │   │   │   ├── methods.js
│   │   │   │   ├── outro.js
│   │   │   │   ├── plugin.js
│   │   │   │   ├── preview.js
│   │   │   │   ├── prototype.js
│   │   │   │   ├── render.js
│   │   │   │   ├── template.js
│   │   │   │   ├── utilities.js
│   │   │   │   └── variables.js
│   │   │   └── less
│   │   │   ├── cropper.less
│   │   │   ├── main.less
│   │   │   ├── mixins.less
│   │   │   ├── utilities.less
│   │   │   └── variables.less
│   │   ├── images
│   │   │   └── loading.gif
│   │   ├── JQueryzTree
│   │   │   ├── 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.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.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
│   │   │   │   │   ├── 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.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.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
│   │   │   │   ├── 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
│   │   │   │   ├── demo.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
│   │   │   ├── demo
│   │   │   │   ├── cn
│   │   │   │   │   ├── asyncData
│   │   │   │   │   │   ├── getNodesForBigData.php
│   │   │   │   │   │   └── getNodes.php
│   │   │   │   │   ├── bigdata
│   │   │   │   │   │   ├── common.html
│   │   │   │   │   │   ├── diy_async.html
│   │   │   │   │   │   └── page.html
│   │   │   │   │   ├── core
│   │   │   │   │   │   ├── async_fun.html
│   │   │   │   │   │   ├── async.html
│   │   │   │   │   │   ├── click.html
│   │   │   │   │   │   ├── custom_font.html
│   │   │   │   │   │   ├── custom_icon.html
│   │   │   │   │   │   ├── custom_iconSkin.html
│   │   │   │   │   │   ├── expand.html
│   │   │   │   │   │   ├── noicon.html
│   │   │   │   │   │   ├── noline.html
│   │   │   │   │   │   ├── otherMouse.html
│   │   │   │   │   │   ├── searchNodes.html
│   │   │   │   │   │   ├── simpleData.html
│   │   │   │   │   │   ├── standardData.html
│   │   │   │   │   │   ├── update_fun.html
│   │   │   │   │   │   └── url.html
│   │   │   │   │   ├── excheck
│   │   │   │   │   │   ├── checkbox_chkDisabled.html
│   │   │   │   │   │   ├── checkbox_count.html
│   │   │   │   │   │   ├── checkbox_fun.html
│   │   │   │   │   │   ├── checkbox_halfCheck.html
│   │   │   │   │   │   ├── checkbox.html
│   │   │   │   │   │   ├── checkbox_nocheck.html
│   │   │   │   │   │   ├── radio_chkDisabled.html
│   │   │   │   │   │   ├── radio_fun.html
│   │   │   │   │   │   ├── radio_halfCheck.html
│   │   │   │   │   │   ├── radio.html
│   │   │   │   │   │   └── radio_nocheck.html
│   │   │   │   │   ├── exedit
│   │   │   │   │   │   ├── async_edit.html
│   │   │   │   │   │   ├── drag_fun.html
│   │   │   │   │   │   ├── drag.html
│   │   │   │   │   │   ├── drag_super.html
│   │   │   │   │   │   ├── edit_fun.html
│   │   │   │   │   │   ├── edit.html
│   │   │   │   │   │   ├── edit_super.html
│   │   │   │   │   │   └── multiTree.html
│   │   │   │   │   ├── exhide
│   │   │   │   │   │   ├── checkbox.html
│   │   │   │   │   │   ├── common.html
│   │   │   │   │   │   └── radio.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── super
│   │   │   │   │   ├── asyncForAll.html
│   │   │   │   │   ├── checkbox_radio.html
│   │   │   │   │   ├── diydom.html
│   │   │   │   │   ├── dragWithOther.html
│   │   │   │   │   ├── left_menuForOutLook.gif
│   │   │   │   │   ├── left_menuForOutLook.html
│   │   │   │   │   ├── left_menuForOutLook.png
│   │   │   │   │   ├── left_menu.html
│   │   │   │   │   ├── oneclick.html
│   │   │   │   │   ├── oneroot.html
│   │   │   │   │   ├── rightClickMenu.html
│   │   │   │   │   ├── select_menu_checkbox.html
│   │   │   │   │   ├── select_menu.html
│   │   │   │   │   ├── select_menu_radio.html
│   │   │   │   │   └── singlepath.html
│   │   │   │   └── en
│   │   │   │   ├── asyncData
│   │   │   │   │   ├── getNodesForBigData.php
│   │   │   │   │   └── getNodes.php
│   │   │   │   ├── bigdata
│   │   │   │   │   ├── common.html
│   │   │   │   │   ├── diy_async.html
│   │   │   │   │   └── page.html
│   │   │   │   ├── core
│   │   │   │   │   ├── async_fun.html
│   │   │   │   │   ├── async.html
│   │   │   │   │   ├── click.html
│   │   │   │   │   ├── custom_font.html
│   │   │   │   │   ├── custom_icon.html
│   │   │   │   │   ├── custom_iconSkin.html
│   │   │   │   │   ├── expand.html
│   │   │   │   │   ├── noicon.html
│   │   │   │   │   ├── noline.html
│   │   │   │   │   ├── otherMouse.html
│   │   │   │   │   ├── searchNodes.html
│   │   │   │   │   ├── simpleData.html
│   │   │   │   │   ├── standardData.html
│   │   │   │   │   ├── update_fun.html
│   │   │   │   │   └── url.html
│   │   │   │   ├── excheck
│   │   │   │   │   ├── checkbox_chkDisabled.html
│   │   │   │   │   ├── checkbox_count.html
│   │   │   │   │   ├── checkbox_fun.html
│   │   │   │   │   ├── checkbox_halfCheck.html
│   │   │   │   │   ├── checkbox.html
│   │   │   │   │   ├── checkbox_nocheck.html
│   │   │   │   │   ├── radio_chkDisabled.html
│   │   │   │   │   ├── radio_fun.html
│   │   │   │   │   ├── radio_halfCheck.html
│   │   │   │   │   ├── radio.html
│   │   │   │   │   └── radio_nocheck.html
│   │   │   │   ├── exedit
│   │   │   │   │   ├── async_edit.html
│   │   │   │   │   ├── drag_fun.html
│   │   │   │   │   ├── drag.html
│   │   │   │   │   ├── drag_super.html
│   │   │   │   │   ├── edit_fun.html
│   │   │   │   │   ├── edit.html
│   │   │   │   │   ├── edit_super.html
│   │   │   │   │   └── multiTree.html
│   │   │   │   ├── exhide
│   │   │   │   │   ├── checkbox.html
│   │   │   │   │   ├── common.html
│   │   │   │   │   └── radio.html
│   │   │   │   ├── index.html
│   │   │   │   └── super
│   │   │   │   ├── asyncForAll.html
│   │   │   │   ├── checkbox_radio.html
│   │   │   │   ├── diydom.html
│   │   │   │   ├── dragWithOther.html
│   │   │   │   ├── left_menuForOutLook.gif
│   │   │   │   ├── left_menuForOutLook.html
│   │   │   │   ├── left_menuForOutLook.png
│   │   │   │   ├── left_menu.html
│   │   │   │   ├── oneclick.html
│   │   │   │   ├── oneroot.html
│   │   │   │   ├── rightClickMenu.html
│   │   │   │   ├── select_menu_checkbox.html
│   │   │   │   ├── select_menu.html
│   │   │   │   ├── select_menu_radio.html
│   │   │   │   └── singlepath.html
│   │   │   └── js
│   │   │   ├── jquery-1.4.4.min.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.exhide-3.5.js
│   │   │   └── jquery.ztree.exhide-3.5.min.js
│   │   ├── js
│   │   │   ├── dialog-base.js
│   │   │   ├── dialog-main.js
│   │   │   ├── easydrag-jquery.js
│   │   │   ├── jquery.json-2.4.js
│   │   │   ├── layoutdiv.css
│   │   │   ├── myValidation-input.js
│   │   │   ├── myValidation.js
│   │   │   ├── uploadFile.js
│   │   │   ├── vue.js
│   │   │   └── whole-pattern-controller.js
│   │   ├── My97DatePicker
│   │   │   ├── calendar.js
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── skin
│   │   │   │   ├── datePicker.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── WdatePicker.css
│   │   │   │   └── whyGreen
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.js
│   │   │   └── 开发包
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── readme.txt
│   │   │   └── skin
│   │   │   ├── datePicker.gif
│   │   │   ├── default
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.css
│   │   │   └── whyGreen
│   │   │   ├── bg.jpg
│   │   │   ├── datepicker.css
│   │   │   └── img.gif
│   │   ├── sweetalert
│   │   │   ├── bower.json
│   │   │   ├── dev
│   │   │   │   ├── gulpfile-wrap-template.js
│   │   │   │   ├── ie9.css
│   │   │   │   ├── loader-animation.css
│   │   │   │   ├── modules
│   │   │   │   │   ├── default-params.js
│   │   │   │   │   ├── handle-click.js
│   │   │   │   │   ├── handle-dom.js
│   │   │   │   │   ├── handle-key.js
│   │   │   │   │   ├── handle-swal-dom.js
│   │   │   │   │   ├── injected-html.js
│   │   │   │   │   ├── set-params.js
│   │   │   │   │   └── utils.js
│   │   │   │   ├── sweetalert.es6.js
│   │   │   │   └── sweetalert.scss
│   │   │   ├── dist
│   │   │   │   ├── sweetalert.css
│   │   │   │   ├── sweetalert-dev.js
│   │   │   │   └── sweetalert.min.js
│   │   │   ├── example
│   │   │   │   ├── example.css
│   │   │   │   ├── example.scss
│   │   │   │   └── images
│   │   │   │   ├── logo_big@2x.png
│   │   │   │   ├── logo_big.png
│   │   │   │   ├── logo_small@2x.png
│   │   │   │   ├── logo_small.png
│   │   │   │   ├── te-logo-small.svg
│   │   │   │   ├── thumbs-up.jpg
│   │   │   │   ├── vs_icon@2x.png
│   │   │   │   └── vs_icon.png
│   │   │   ├── gulpfile.js
│   │   │   ├── index.html
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── sweetalert.gif
│   │   │   ├── test
│   │   │   │   ├── index.html
│   │   │   │   └── tests.js
│   │   │   └── themes
│   │   │   ├── facebook
│   │   │   │   ├── facebook.css
│   │   │   │   └── facebook.scss
│   │   │   ├── google
│   │   │   │   ├── google.css
│   │   │   │   └── google.scss
│   │   │   └── twitter
│   │   │   ├── twitter.css
│   │   │   └── twitter.scss
│   │   └── ztree
│   │   ├── css
│   │   │   ├── demo.css
│   │   │   ├── 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.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── zTreeStandard3.png
│   │   │   │   ├── zTreeStandard3.png
│   │   │   │   ├── zTreeStandard.gif
│   │   │   │   └── zTreeStandard.png
│   │   │   └── zTree.css
│   │   ├── extend
│   │   │   └── js
│   │   │   └── input-tree.js
│   │   └── js
│   │   ├── jquery-2.1.0.min.js
│   │   ├── jquery.ztree.all-3.5.min.js
│   │   ├── jquery.ztree.core-3.5.min.js
│   │   ├── jquery.ztree.excheck-3.5.min.js
│   │   ├── jquery.ztree.exedit-3.5.min.js
│   │   ├── jquery.ztree.exedit.js
│   │   └── jquery.ztree.exhide-3.5.min.js
│   └── WEB-INF
│   ├── classes
│   │   ├── com
│   │   │   └── ys
│   │   │   └── oa
│   │   │   ├── action
│   │   │   │   ├── announcement
│   │   │   │   │   └── AnnouncementAction.class
│   │   │   │   ├── authority
│   │   │   │   │   ├── DepartmentAuthorityAction.class
│   │   │   │   │   ├── PositiontAuthorityAction.class
│   │   │   │   │   └── UserAuthorityAction.class
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyControlAction.class
│   │   │   │   ├── department
│   │   │   │   │   └── DepartmentControlAction.class
│   │   │   │   ├── fileAction
│   │   │   │   │   ├── FileDownloadController.class
│   │   │   │   │   └── FileUploadController.class
│   │   │   │   ├── login
│   │   │   │   │   └── LoginAction.class
│   │   │   │   ├── post
│   │   │   │   │   └── PositionControlAction.class
│   │   │   │   ├── test
│   │   │   │   │   ├── DocConverter.class
│   │   │   │   │   └── Test.class
│   │   │   │   ├── travelPhotos
│   │   │   │   │   └── TravelPhotosAction.class
│   │   │   │   ├── user
│   │   │   │   │   └── UserControlAction.class
│   │   │   │   ├── workflow
│   │   │   │   │   └── CustomWorkflowAction.class
│   │   │   │   └── ztree
│   │   │   │   └── TreeAction.class
│   │   │   ├── dao
│   │   │   │   ├── announcement
│   │   │   │   │   ├── IAnnouncementMapper.class
│   │   │   │   │   └── IAnnouncementMapper.xml
│   │   │   │   ├── authority
│   │   │   │   │   ├── IDepartmentAuthority.class
│   │   │   │   │   ├── IDepartmentAuthority.xml
│   │   │   │   │   ├── IPositiontAuthority.class
│   │   │   │   │   ├── IPositiontAuthority.xml
│   │   │   │   │   ├── IUserAuthority.class
│   │   │   │   │   └── IUserAuthority.xml
│   │   │   │   ├── company
│   │   │   │   │   ├── ICompanyMapper.class
│   │   │   │   │   └── ICompanyMapper.xml
│   │   │   │   ├── department
│   │   │   │   │   ├── IDepartmentMapper.class
│   │   │   │   │   └── IDepartmentMapper.xml
│   │   │   │   ├── menu
│   │   │   │   │   ├── IMenuMapper.class
│   │   │   │   │   └── IMenuMapper.xml
│   │   │   │   ├── post
│   │   │   │   │   ├── IPositionMapper.class
│   │   │   │   │   └── IPositionMapper.xml
│   │   │   │   ├── system
│   │   │   │   │   ├── ISystemMapper.class
│   │   │   │   │   └── ISystemMapper.xml
│   │   │   │   ├── user
│   │   │   │   │   ├── IUserMapper.class
│   │   │   │   │   └── IUserMapper.xml
│   │   │   │   └── workflow
│   │   │   │   ├── IProcessMapper.class
│   │   │   │   └── IWorkflowMapper.class
│   │   │   ├── entity
│   │   │   │   ├── announcement
│   │   │   │   │   └── AnnouncementEntity.class
│   │   │   │   ├── authority
│   │   │   │   │   └── DepartmentAuthority.class
│   │   │   │   ├── base
│   │   │   │   │   └── BaseEntity.class
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyEntity.class
│   │   │   │   ├── department
│   │   │   │   │   └── DepartmentEntity.class
│   │   │   │   ├── menu
│   │   │   │   │   └── MenuEntity.class
│   │   │   │   ├── post
│   │   │   │   │   └── PositionEntity.class
│   │   │   │   ├── system
│   │   │   │   │   └── SystemEntity.class
│   │   │   │   ├── user
│   │   │   │   │   └── UserEntity.class
│   │   │   │   └── workflow
│   │   │   │   ├── ProcessEntity.class
│   │   │   │   └── WorkflowEntity.class
│   │   │   ├── filter
│   │   │   │   └── sessionFilter
│   │   │   │   └── MyHandlerInterceptor.class
│   │   │   ├── pageInfo
│   │   │   │   ├── PageModel.class
│   │   │   │   └── PageQuery.class
│   │   │   └── util
│   │   │   ├── ImageTransfer.class
│   │   │   ├── ImgUpload.class
│   │   │   ├── ImpProgressListener.class
│   │   │   ├── ProgressCommonsMultipartResolver.class
│   │   │   └── ProgressEntity.class
│   │   └── conf
│   │   ├── codeifAction.xml
│   │   ├── jdbc.properties
│   │   ├── log4j.properties
│   │   ├── mybatis-config.xml
│   │   ├── spring-mvc.xml
│   │   ├── spring-mybatis.xml
│   │   └── spring.xml
│   ├── lib
│   │   ├── aopalliance-1.0.jar
│   │   ├── commons-beanutils-1.9.2.jar
│   │   ├── commons-cli-1.2.jar
│   │   ├── commons-collections-3.2.1.jar
│   │   ├── commons-fileupload-1.3.jar
│   │   ├── commons-io-2.2.jar
│   │   ├── commons-lang-2.3.jar
│   │   ├── commons-lang3-3.3.2.jar
│   │   ├── commons-logging-1.1.1.jar
│   │   ├── druid-1.0.2.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── fastjson-1.2.4.jar
│   │   ├── jackson-core-asl-1.9.13.jar
│   │   ├── jackson-mapper-asl-1.9.13.jar
│   │   ├── javax.servlet-api-3.1.0.jar
│   │   ├── jodconverter-2.2.2.jar
│   │   ├── jodconverter-cli-2.2.2.jar
│   │   ├── json-lib-2.4-jdk15.jar
│   │   ├── json-lib-2.4-jdk15-javadoc.jar
│   │   ├── json-lib-2.4-jdk15-sources.jar
│   │   ├── jstl-1.2.jar
│   │   ├── juh-3.0.1.jar
│   │   ├── jurt-3.0.1.jar
│   │   ├── log4j-1.2.9.jar
│   │   ├── mybatis-3.2.4.jar
│   │   ├── mybatis-spring-1.2.2.jar
│   │   ├── mysql-connector-java-5.1.29.jar
│   │   ├── ridl-3.0.1.jar
│   │   ├── slf4j-api-1.6.6.jar
│   │   ├── slf4j-jdk14-1.5.6.jar
│   │   ├── slf4j-log4j12-1.6.6.jar
│   │   ├── spring-aop-3.2.4.RELEASE.jar
│   │   ├── spring-beans-3.2.4.RELEASE.jar
│   │   ├── spring-context-3.2.4.RELEASE.jar
│   │   ├── spring-context-support-3.2.4.RELEASE.jar
│   │   ├── spring-core-3.2.4.RELEASE.jar
│   │   ├── spring-expression-3.2.4.RELEASE.jar
│   │   ├── spring-jdbc-3.2.4.RELEASE.jar
│   │   ├── spring-oxm-3.2.4.RELEASE.jar
│   │   ├── spring-test-3.2.4.RELEASE.jar
│   │   ├── spring-tx-3.2.4.RELEASE.jar
│   │   ├── spring-web-3.2.4.RELEASE.jar
│   │   ├── spring-webmvc-3.2.4.RELEASE.jar
│   │   ├── swf
│   │   │   ├── commons-cli-1.2.jar
│   │   │   ├── jodconverter-2.2.2.jar
│   │   │   ├── jodconverter-cli-2.2.2.jar
│   │   │   ├── juh-3.0.1.jar
│   │   │   ├── jurt-3.0.1.jar
│   │   │   ├── ridl-3.0.1.jar
│   │   │   ├── slf4j-jdk14-1.5.6.jar
│   │   │   ├── unoil-3.0.1.jar
│   │   │   └── xstream-1.3.1.jar
│   │   ├── unoil-3.0.1.jar
│   │   └── xstream-1.3.1.jar
│   ├── page
│   │   ├── announcement
│   │   │   ├── addAnnouncement.jsp
│   │   │   ├── announcementDetail.jsp
│   │   │   └── announcementList.jsp
│   │   ├── authority
│   │   │   ├── departmentAuthority.jsp
│   │   │   ├── positiontAuthority.jsp
│   │   │   └── userAuthority.jsp
│   │   ├── common
│   │   │   ├── loginMeta.jsp
│   │   │   └── meta.jsp
│   │   ├── company
│   │   │   ├── addCompany.jsp
│   │   │   ├── companyList.jsp
│   │   │   └── modifyCompany.jsp
│   │   ├── department
│   │   │   └── departmentList.jsp
│   │   ├── errorpage
│   │   │   ├── 404.jsp
│   │   │   ├── 405.jsp
│   │   │   └── 500.jsp
│   │   ├── main
│   │   │   ├── home.jsp
│   │   │   ├── login.jsp
│   │   │   ├── mailList.jsp
│   │   │   ├── main.jsp
│   │   │   ├── navigation.jsp
│   │   │   ├── tree.jsp
│   │   │   └── userInfo.jsp
│   │   ├── post
│   │   │   └── positionList.jsp
│   │   ├── test
│   │   │   ├── aa.swf
│   │   │   ├── documentUpload.jsp
│   │   │   ├── FlexPaperViewer.swf
│   │   │   └── txtPreview.jsp
│   │   ├── travelPhotos
│   │   │   └── travelPhotosList.jsp
│   │   └── user
│   │   ├── addUser.jsp
│   │   ├── modifyUser.jsp
│   │   ├── userInfo.jsp
│   │   └── userList.jsp
│   └── web.xml
└── oa.sql

300 directories, 1707 files

标签:

实例下载地址

基于SpringMVC MyBatis开发的bootstrap风格OA源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警