在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → 门户网站开发

门户网站开发

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:47.07M
  • 下载次数:27
  • 浏览次数:257
  • 发布时间:2022-07-15
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:hhhao
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 门户网站 门户 开发 网站

实例介绍

【实例简介】门户网站开发

【实例截图】

from clipboard

【核心代码】

.
├── RegulatoryPortalWeb
│   ├── WebRoot
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── WEB-INF
│   │   │   ├── classes
│   │   │   │   ├── !readme.txt
│   │   │   │   ├── antiIntercept.properties
│   │   │   │   ├── appContext.xml
│   │   │   │   ├── com
│   │   │   │   │   └── botech
│   │   │   │   │       ├── jgmh
│   │   │   │   │       │   ├── base
│   │   │   │   │       │   │   ├── domain
│   │   │   │   │       │   │   │   ├── CodeValue.class
│   │   │   │   │       │   │   │   ├── Column.class
│   │   │   │   │       │   │   │   ├── DetachIntro.class
│   │   │   │   │       │   │   │   ├── InfImg.class
│   │   │   │   │       │   │   │   ├── Information.class
│   │   │   │   │       │   │   │   ├── Navigation.class
│   │   │   │   │       │   │   │   ├── Notice.class
│   │   │   │   │       │   │   │   ├── Onduty.class
│   │   │   │   │       │   │   │   ├── Person.class
│   │   │   │   │       │   │   │   ├── SysParam.class
│   │   │   │   │       │   │   │   └── UserManager.class
│   │   │   │   │       │   │   ├── oscache
│   │   │   │   │       │   │   │   ├── adapter
│   │   │   │   │       │   │   │   │   ├── CacheAdapter.class
│   │   │   │   │       │   │   │   │   └── StdCacheAdapter.class
│   │   │   │   │       │   │   │   ├── constant
│   │   │   │   │       │   │   │   │   └── OscacheConstant.class
│   │   │   │   │       │   │   │   ├── engine
│   │   │   │   │       │   │   │   │   ├── CacheEngine.class
│   │   │   │   │       │   │   │   │   └── StdCacheEngine.class
│   │   │   │   │       │   │   │   ├── param
│   │   │   │   │       │   │   │   │   └── CommonParam.class
│   │   │   │   │       │   │   │   └── util
│   │   │   │   │       │   │   │       └── AuthorityCacheAdapter.class
│   │   │   │   │       │   │   └── persistence
│   │   │   │   │       │   │       ├── CodeValueMapper.class
│   │   │   │   │       │   │       ├── CodeValueMapper.xml
│   │   │   │   │       │   │       ├── DetachIntroMapper.class
│   │   │   │   │       │   │       ├── DetachIntroMapper.xml
│   │   │   │   │       │   │       ├── DutyMapper.class
│   │   │   │   │       │   │       ├── DutyMapper.xml
│   │   │   │   │       │   │       ├── InfImgMapper.class
│   │   │   │   │       │   │       ├── InfImgMapper.xml
│   │   │   │   │       │   │       ├── InformationMapper.class
│   │   │   │   │       │   │       ├── InformationMapper.xml
│   │   │   │   │       │   │       ├── MessageMapper.class
│   │   │   │   │       │   │       ├── MessageMapper.xml
│   │   │   │   │       │   │       ├── NavigationMapper.class
│   │   │   │   │       │   │       ├── NavigationMapper.xml
│   │   │   │   │       │   │       ├── NoticeMapper.class
│   │   │   │   │       │   │       ├── NoticeMapper.xml
│   │   │   │   │       │   │       ├── OndutyMapper.class
│   │   │   │   │       │   │       ├── OndutyMapper.xml
│   │   │   │   │       │   │       ├── PersonMapper.class
│   │   │   │   │       │   │       ├── PersonMapper.xml
│   │   │   │   │       │   │       ├── SysParamMapper.class
│   │   │   │   │       │   │       ├── SysParamMapper.xml
│   │   │   │   │       │   │       ├── UserManagerMapper.class
│   │   │   │   │       │   │       ├── UserManagerMapper.xml
│   │   │   │   │       │   │       └── impl
│   │   │   │   │       │   │           ├── CodeValueImpl.class
│   │   │   │   │       │   │           ├── DetachIntroMapperImpl.class
│   │   │   │   │       │   │           ├── DutyMapperImpl.class
│   │   │   │   │       │   │           ├── InfImgMapperImpl.class
│   │   │   │   │       │   │           ├── InformationMapperImpl.class
│   │   │   │   │       │   │           ├── MessageMapperImpl.class
│   │   │   │   │       │   │           ├── NavigationMapperImpl.class
│   │   │   │   │       │   │           ├── NoticeMapperImpl.class
│   │   │   │   │       │   │           ├── OndutyMapperImpl.class
│   │   │   │   │       │   │           ├── PersonMapperImpl.class
│   │   │   │   │       │   │           ├── SysParamMapperImpl.class
│   │   │   │   │       │   │           └── UserManagerMapperImpl.class
│   │   │   │   │       │   ├── common
│   │   │   │   │       │   │   ├── BaseTO.class
│   │   │   │   │       │   │   ├── CommonHandlerExceptionResolver.class
│   │   │   │   │       │   │   ├── Constants.class
│   │   │   │   │       │   │   ├── Dialect$Type.class
│   │   │   │   │       │   │   ├── Dialect.class
│   │   │   │   │       │   │   ├── OracleDialect.class
│   │   │   │   │       │   │   ├── PaginationInterceptor.class
│   │   │   │   │       │   │   ├── dao
│   │   │   │   │       │   │   │   ├── BaseDao.class
│   │   │   │   │       │   │   │   └── BaseDaoImpl.class
│   │   │   │   │       │   │   └── qvo
│   │   │   │   │       │   │       ├── BaseVO.class
│   │   │   │   │       │   │       └── DropDownItem.class
│   │   │   │   │       │   ├── index
│   │   │   │   │       │   │   ├── controller
│   │   │   │   │       │   │   │   └── LoginController.class
│   │   │   │   │       │   │   ├── dto
│   │   │   │   │       │   │   │   ├── LoginDTO.class
│   │   │   │   │       │   │   │   └── UserManagerDTO.class
│   │   │   │   │       │   │   ├── qvo
│   │   │   │   │       │   │   │   └── LoginVO.class
│   │   │   │   │       │   │   ├── service
│   │   │   │   │       │   │   │   └── LoginService.class
│   │   │   │   │       │   │   └── serviceimpl
│   │   │   │   │       │   │       └── LoginServiceImpl.class
│   │   │   │   │       │   ├── portal
│   │   │   │   │       │   │   ├── controller
│   │   │   │   │       │   │   │   ├── DetachIntroController.class
│   │   │   │   │       │   │   │   ├── InfController.class
│   │   │   │   │       │   │   │   ├── InformationController.class
│   │   │   │   │       │   │   │   ├── MessageController.class
│   │   │   │   │       │   │   │   └── PortalController.class
│   │   │   │   │       │   │   ├── dto
│   │   │   │   │       │   │   │   ├── AttachDTO.class
│   │   │   │   │       │   │   │   ├── BirDTO.class
│   │   │   │   │       │   │   │   ├── CodeValueDTO.class
│   │   │   │   │       │   │   │   ├── ColumnDTO.class
│   │   │   │   │       │   │   │   ├── DataCountDTO.class
│   │   │   │   │       │   │   │   ├── DetachIntroDTO.class
│   │   │   │   │       │   │   │   ├── DutyDTO.class
│   │   │   │   │       │   │   │   ├── InfContentDTO.class
│   │   │   │   │       │   │   │   ├── InfCountDTO.class
│   │   │   │   │       │   │   │   ├── InfImgDTO.class
│   │   │   │   │       │   │   │   ├── InformationDTO.class
│   │   │   │   │       │   │   │   ├── IpCountDTO.class
│   │   │   │   │       │   │   │   ├── MessageDTO.class
│   │   │   │   │       │   │   │   ├── NavigationDTO.class
│   │   │   │   │       │   │   │   ├── NoticeDTO.class
│   │   │   │   │       │   │   │   ├── OndutyDTO.class
│   │   │   │   │       │   │   │   ├── PersonDTO.class
│   │   │   │   │       │   │   │   ├── SigforDTO.class
│   │   │   │   │       │   │   │   ├── SortDto.class
│   │   │   │   │       │   │   │   └── SysparamDTO.class
│   │   │   │   │       │   │   ├── qvo
│   │   │   │   │       │   │   ├── service
│   │   │   │   │       │   │   │   ├── BirthdayService.class
│   │   │   │   │       │   │   │   ├── CodeValueService.class
│   │   │   │   │       │   │   │   ├── DetachIntroService.class
│   │   │   │   │       │   │   │   ├── DutyService.class
│   │   │   │   │       │   │   │   ├── InformationService.class
│   │   │   │   │       │   │   │   ├── MessageService.class
│   │   │   │   │       │   │   │   ├── NavigationService.class
│   │   │   │   │       │   │   │   ├── NoticeService.class
│   │   │   │   │       │   │   │   ├── OndutyService.class
│   │   │   │   │       │   │   │   ├── PersonService.class
│   │   │   │   │       │   │   │   ├── PortalService.class
│   │   │   │   │       │   │   │   └── SysParamService.class
│   │   │   │   │       │   │   └── serviceimpl
│   │   │   │   │       │   │       ├── BirthdayServiceImpl.class
│   │   │   │   │       │   │       ├── CodeValueServiceImpl.class
│   │   │   │   │       │   │       ├── DetachIntroServiceImpl.class
│   │   │   │   │       │   │       ├── DutyServiceImpl.class
│   │   │   │   │       │   │       ├── InformationServiceImpl.class
│   │   │   │   │       │   │       ├── MessageServiceImpl.class
│   │   │   │   │       │   │       ├── NavigationServiceImpl.class
│   │   │   │   │       │   │       ├── NoticeServiceImpl.class
│   │   │   │   │       │   │       ├── OndutyServiceImpl.class
│   │   │   │   │       │   │       ├── PersonServiceImpl.class
│   │   │   │   │       │   │       ├── PortalServiceImpl.class
│   │   │   │   │       │   │       └── SysParamServiceImpl.class
│   │   │   │   │       │   └── utils
│   │   │   │   │       │       ├── AjaxUtil.class
│   │   │   │   │       │       ├── CodeTypeUtil.class
│   │   │   │   │       │       ├── CommonUtil.class
│   │   │   │   │       │       ├── DateUtil.class
│   │   │   │   │       │       ├── FileDownloadUtil.class
│   │   │   │   │       │       ├── JsonUtil.class
│   │   │   │   │       │       ├── LocalUtil.class
│   │   │   │   │       │       ├── LunarUtil.class
│   │   │   │   │       │       ├── MD5Util.class
│   │   │   │   │       │       ├── OsCacheUtil.class
│   │   │   │   │       │       ├── PropertyUtil.class
│   │   │   │   │       │       ├── SpringConfigLoadHelper.class
│   │   │   │   │       │       └── SysParamUtil.class
│   │   │   │   │       └── spring
│   │   │   │   ├── config.properties
│   │   │   │   ├── dozer.properties
│   │   │   │   ├── logback.xml
│   │   │   │   ├── messages.properties
│   │   │   │   ├── mybatisConfig.xml
│   │   │   │   └── oscache.properties
│   │   │   ├── lib
│   │   │   │   ├── aopalliance-1.0.jar
│   │   │   │   ├── aspectjrt-1.6.10.jar
│   │   │   │   ├── aspectjweaver-1.6.9.jar
│   │   │   │   ├── commons-beanutils-1.8.3.jar
│   │   │   │   ├── commons-configuration-1.9.jar
│   │   │   │   ├── commons-dbcp-1.4.jar
│   │   │   │   ├── commons-fileupload-1.2.2.jar
│   │   │   │   ├── commons-lang-2.6.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── commons-pool-1.6.jar
│   │   │   │   ├── commons-pool2-2.1.jar
│   │   │   │   ├── dozer-5.3.2.jar
│   │   │   │   ├── hibernate-validator-4.2.0.Final.jar
│   │   │   │   ├── jackson-core-asl-1.8.1.jar
│   │   │   │   ├── jackson-mapper-asl-1.8.1.jar
│   │   │   │   ├── jgroups-all.jar
│   │   │   │   ├── log4jdbc4-1.2.jar
│   │   │   │   ├── logback-classic-1.0.13.jar
│   │   │   │   ├── logback-core-1.0.13.jar
│   │   │   │   ├── mybatis-3.2.3.jar
│   │   │   │   ├── mybatis-spring-1.2.1.jar
│   │   │   │   ├── ojdbc6.jar
│   │   │   │   ├── oscache-2.3.jar
│   │   │   │   ├── slf4j-api-1.7.5.jar
│   │   │   │   ├── spring-aop-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-beans-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-context-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-context-support-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-core-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-expression-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-jdbc-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-jms-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-orm-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-test-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-tx-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-web-4.0.0.RELEASE.jar
│   │   │   │   ├── spring-webmvc-4.0.0.RELEASE.jar
│   │   │   │   ├── ueditor.jar
│   │   │   │   └── validation-api-1.0.0.GA.jar
│   │   │   ├── spring
│   │   │   │   ├── !readme.txt
│   │   │   │   └── springMVC-servlet.xml
│   │   │   ├── view
│   │   │   │   ├── !readme.txt
│   │   │   │   ├── Happybirthday.html
│   │   │   │   ├── common
│   │   │   │   │   ├── bottom
│   │   │   │   │   │   ├── bottom.jsp
│   │   │   │   │   │   └── bottom1.jsp
│   │   │   │   │   ├── common.jsp
│   │   │   │   │   ├── error
│   │   │   │   │   │   ├── 404.jsp
│   │   │   │   │   │   └── 500.jsp
│   │   │   │   │   └── head
│   │   │   │   │       └── head.jsp
│   │   │   │   ├── index.jsp
│   │   │   │   └── portal
│   │   │   │       ├── MyJsp.jsp
│   │   │   │       ├── addinf.jsp
│   │   │   │       ├── colInfoList.jsp
│   │   │   │       ├── detachIntro.jsp
│   │   │   │       ├── floatWindow.jsp
│   │   │   │       ├── message.jsp
│   │   │   │       ├── notice.jsp
│   │   │   │       ├── partyWord.jsp
│   │   │   │       ├── portalRealInfo.jsp
│   │   │   │       ├── show.jsp
│   │   │   │       └── tpbtList.jsp
│   │   │   └── web.xml
│   │   ├── favicon.ico
│   │   └── resource
│   │       ├── !readme.txt
│   │       ├── Font-Awesome-3.2.1
│   │       │   └── Font-Awesome-3.2.1
│   │       │       ├── CONTRIBUTING.md
│   │       │       ├── Gemfile
│   │       │       ├── Gemfile.lock
│   │       │       ├── README.md
│   │       │       ├── _config.yml
│   │       │       ├── composer.json
│   │       │       ├── css
│   │       │       │   ├── font-awesome-ie7.css
│   │       │       │   ├── font-awesome-ie7.min.css
│   │       │       │   ├── font-awesome.css
│   │       │       │   └── font-awesome.min.css
│   │       │       ├── font
│   │       │       │   ├── FontAwesome.otf
│   │       │       │   ├── fontawesome-webfont.eot
│   │       │       │   ├── fontawesome-webfont.svg
│   │       │       │   ├── fontawesome-webfont.ttf
│   │       │       │   └── fontawesome-webfont.woff
│   │       │       ├── less
│   │       │       │   ├── bootstrap.less
│   │       │       │   ├── core.less
│   │       │       │   ├── extras.less
│   │       │       │   ├── font-awesome-ie7.less
│   │       │       │   ├── font-awesome.less
│   │       │       │   ├── icons.less
│   │       │       │   ├── mixins.less
│   │       │       │   ├── path.less
│   │       │       │   └── variables.less
│   │       │       ├── package.json
│   │       │       ├── scss
│   │       │       │   ├── _bootstrap.scss
│   │       │       │   ├── _core.scss
│   │       │       │   ├── _extras.scss
│   │       │       │   ├── _icons.scss
│   │       │       │   ├── _mixins.scss
│   │       │       │   ├── _path.scss
│   │       │       │   ├── _variables.scss
│   │       │       │   ├── font-awesome-ie7.scss
│   │       │       │   └── font-awesome.scss
│   │       │       └── src
│   │       │           ├── CNAME
│   │       │           ├── Makefile
│   │       │           ├── _includes
│   │       │           │   ├── ads
│   │       │           │   │   ├── carbon-dark-vertical.html
│   │       │           │   │   ├── carbon-light-horizontal.html
│   │       │           │   │   └── carbon-light-vertical.html
│   │       │           │   ├── brand-license.html
│   │       │           │   ├── cheatsheet.html
│   │       │           │   ├── community
│   │       │           │   │   ├── getting-support.html
│   │       │           │   │   ├── project-milestones.html
│   │       │           │   │   ├── reporting-bugs.html
│   │       │           │   │   ├── requesting-new-icons.html
│   │       │           │   │   └── submitting-pull-requests.html
│   │       │           │   ├── community.html
│   │       │           │   ├── examples
│   │       │           │   │   ├── animated-spinner.html
│   │       │           │   │   ├── bordered-pulled.html
│   │       │           │   │   ├── bulleted-lists.html
│   │       │           │   │   ├── button-dropdowns.html
│   │       │           │   │   ├── button-groups.html
│   │       │           │   │   ├── buttons.html
│   │       │           │   │   ├── custom.html
│   │       │           │   │   ├── form-inputs.html
│   │       │           │   │   ├── inline-icons.html
│   │       │           │   │   ├── larger-icons.html
│   │       │           │   │   ├── navigation.html
│   │       │           │   │   ├── new.html
│   │       │           │   │   ├── rotated-flipped.html
│   │       │           │   │   └── stacked.html
│   │       │           │   ├── examples.html
│   │       │           │   ├── footer.html
│   │       │           │   ├── get-started.html
│   │       │           │   ├── icons
│   │       │           │   │   ├── brand.html
│   │       │           │   │   ├── currency.html
│   │       │           │   │   ├── directional.html
│   │       │           │   │   ├── medical.html
│   │       │           │   │   ├── new.html
│   │       │           │   │   ├── text-editor.html
│   │       │           │   │   ├── video-player.html
│   │       │           │   │   └── web-application.html
│   │       │           │   ├── icons.html
│   │       │           │   ├── jumbotron-slider.html
│   │       │           │   ├── jumbotron.html
│   │       │           │   ├── license-code.less
│   │       │           │   ├── license.html
│   │       │           │   ├── navbar.html
│   │       │           │   ├── stripe-ad.html
│   │       │           │   ├── stripe-social.html
│   │       │           │   ├── tell-me-thanks.html
│   │       │           │   ├── tests
│   │       │           │   │   ├── rotated-flipped-inside-anchor.html
│   │       │           │   │   ├── rotated-flipped-inside-btn.html
│   │       │           │   │   ├── rotated-flipped.html
│   │       │           │   │   ├── stacked-inside-anchor.html
│   │       │           │   │   └── stacked.html
│   │       │           │   ├── thanks-to.html
│   │       │           │   ├── whats-new.html
│   │       │           │   └── why.html
│   │       │           ├── _layouts
│   │       │           │   ├── base.html
│   │       │           │   └── icon.html
│   │       │           ├── _plugins
│   │       │           │   ├── icon_page_generator.rb
│   │       │           │   └── site.rb
│   │       │           ├── assets
│   │       │           │   ├── css
│   │       │           │   │   ├── prettify.css
│   │       │           │   │   └── pygments.css
│   │       │           │   ├── font-awesome
│   │       │           │   │   ├── font
│   │       │           │   │   │   ├── FontAwesome.otf
│   │       │           │   │   │   ├── fontawesome-webfont.eot
│   │       │           │   │   │   ├── fontawesome-webfont.svg
│   │       │           │   │   │   ├── fontawesome-webfont.ttf
│   │       │           │   │   │   └── fontawesome-webfont.woff
│   │       │           │   │   ├── less
│   │       │           │   │   │   ├── bootstrap.less
│   │       │           │   │   │   ├── core.less
│   │       │           │   │   │   ├── extras.less
│   │       │           │   │   │   ├── font-awesome-ie7.less
│   │       │           │   │   │   ├── font-awesome.less
│   │       │           │   │   │   ├── icons.less
│   │       │           │   │   │   ├── mixins.less
│   │       │           │   │   │   ├── path.less
│   │       │           │   │   │   └── variables.less
│   │       │           │   │   └── scss
│   │       │           │   │       ├── _bootstrap.scss
│   │       │           │   │       ├── _core.scss
│   │       │           │   │       ├── _extras.scss
│   │       │           │   │       ├── _icons.scss
│   │       │           │   │       ├── _mixins.scss
│   │       │           │   │       ├── _path.scss
│   │       │           │   │       ├── _variables.scss
│   │       │           │   │       ├── font-awesome-ie7.scss
│   │       │           │   │       └── font-awesome.scss
│   │       │           │   ├── ico
│   │       │           │   │   └── favicon.ico
│   │       │           │   ├── img
│   │       │           │   │   ├── contribution-sample.png
│   │       │           │   │   ├── fort_awesome.jpg
│   │       │           │   │   ├── glyphicons-halflings-white.png
│   │       │           │   │   ├── glyphicons-halflings.png
│   │       │           │   │   └── icon-flag.pdf
│   │       │           │   ├── js
│   │       │           │   │   ├── ZeroClipboard-1.1.7.min.js
│   │       │           │   │   ├── ZeroClipboard-1.1.7.swf
│   │       │           │   │   ├── backbone.min.js
│   │       │           │   │   ├── bootstrap-2.3.1.min.js
│   │       │           │   │   ├── bootstrap-222.min.js
│   │       │           │   │   ├── jquery-1.7.1.min.js
│   │       │           │   │   ├── prettify.min.js
│   │       │           │   │   ├── site.js
│   │       │           │   │   └── underscore.min.js
│   │       │           │   └── less
│   │       │           │       ├── bootstrap-2.3.2
│   │       │           │       │   ├── accordion.less
│   │       │           │       │   ├── alerts.less
│   │       │           │       │   ├── bootstrap.less
│   │       │           │       │   ├── breadcrumbs.less
│   │       │           │       │   ├── button-groups.less
│   │       │           │       │   ├── buttons.less
│   │       │           │       │   ├── carousel.less
│   │       │           │       │   ├── close.less
│   │       │           │       │   ├── code.less
│   │       │           │       │   ├── component-animations.less
│   │       │           │       │   ├── dropdowns.less
│   │       │           │       │   ├── forms.less
│   │       │           │       │   ├── grid.less
│   │       │           │       │   ├── hero-unit.less
│   │       │           │       │   ├── labels-badges.less
│   │       │           │       │   ├── layouts.less
│   │       │           │       │   ├── media.less
│   │       │           │       │   ├── mixins.less
│   │       │           │       │   ├── modals.less
│   │       │           │       │   ├── navbar.less
│   │       │           │       │   ├── navs.less
│   │       │           │       │   ├── pager.less
│   │       │           │       │   ├── pagination.less
│   │       │           │       │   ├── popovers.less
│   │       │           │       │   ├── progress-bars.less
│   │       │           │       │   ├── reset.less
│   │       │           │       │   ├── responsive-1200px-min.less
│   │       │           │       │   ├── responsive-767px-max.less
│   │       │           │       │   ├── responsive-768px-979px.less
│   │       │           │       │   ├── responsive-navbar.less
│   │       │           │       │   ├── responsive-utilities.less
│   │       │           │       │   ├── responsive.less
│   │       │           │       │   ├── scaffolding.less
│   │       │           │       │   ├── sprites.less
│   │       │           │       │   ├── tables.less
│   │       │           │       │   ├── thumbnails.less
│   │       │           │       │   ├── tooltip.less
│   │       │           │       │   ├── type.less
│   │       │           │       │   ├── utilities.less
│   │       │           │       │   ├── variables.less
│   │       │           │       │   └── wells.less
│   │       │           │       ├── lazy.less
│   │       │           │       ├── mixins.less
│   │       │           │       ├── responsive-1200px-min.less
│   │       │           │       ├── responsive-767px-max.less
│   │       │           │       ├── responsive-768px-979px.less
│   │       │           │       ├── responsive-navbar.less
│   │       │           │       ├── responsive.less
│   │       │           │       ├── site.less
│   │       │           │       ├── sticky-footer.less
│   │       │           │       └── variables.less
│   │       │           ├── cheatsheet.html
│   │       │           ├── community.html
│   │       │           ├── design.html
│   │       │           ├── examples.html
│   │       │           ├── get-started.html
│   │       │           ├── icons.html
│   │       │           ├── icons.yml
│   │       │           ├── index.html
│   │       │           ├── license.html
│   │       │           ├── test.html
│   │       │           └── whats-new.html
│   │       ├── common
│   │       │   ├── !readme.txt
│   │       │   ├── ajaxfileupload.js
│   │       │   ├── common.js
│   │       │   ├── easyui-lang-zh_CN.js
│   │       │   ├── jquery-1.10.2.min.js
│   │       │   ├── jquery-easyui-1.3.5
│   │       │   │   ├── black
│   │       │   │   │   ├── accordion.css
│   │       │   │   │   ├── calendar.css
│   │       │   │   │   ├── combo.css
│   │       │   │   │   ├── combobox.css
│   │       │   │   │   ├── datagrid.css
│   │       │   │   │   ├── datebox.css
│   │       │   │   │   ├── dialog.css
│   │       │   │   │   ├── easyui.css
│   │       │   │   │   ├── images
│   │       │   │   │   │   ├── accordion_arrows.png
│   │       │   │   │   │   ├── blank.gif
│   │       │   │   │   │   ├── calendar_arrows.png
│   │       │   │   │   │   ├── combo_arrow.png
│   │       │   │   │   │   ├── datagrid_icons.png
│   │       │   │   │   │   ├── datebox_arrow.png
│   │       │   │   │   │   ├── layout_arrows.png
│   │       │   │   │   │   ├── linkbutton_bg.png
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── menu_arrows.png
│   │       │   │   │   │   ├── messager_icons.png
│   │       │   │   │   │   ├── pagination_icons.png
│   │       │   │   │   │   ├── panel_tools.png
│   │       │   │   │   │   ├── searchbox_button.png
│   │       │   │   │   │   ├── slider_handle.png
│   │       │   │   │   │   ├── spinner_arrows.png
│   │       │   │   │   │   ├── tabs_icons.png
│   │       │   │   │   │   ├── tree_icons.png
│   │       │   │   │   │   └── validatebox_warning.png
│   │       │   │   │   ├── layout.css
│   │       │   │   │   ├── linkbutton.css
│   │       │   │   │   ├── menu.css
│   │       │   │   │   ├── menubutton.css
│   │       │   │   │   ├── messager.css
│   │       │   │   │   ├── pagination.css
│   │       │   │   │   ├── panel.css
│   │       │   │   │   ├── progressbar.css
│   │       │   │   │   ├── propertygrid.css
│   │       │   │   │   ├── searchbox.css
│   │       │   │   │   ├── slider.css
│   │       │   │   │   ├── spinner.css
│   │       │   │   │   ├── splitbutton.css
│   │       │   │   │   ├── tabs.css
│   │       │   │   │   ├── tooltip.css
│   │       │   │   │   ├── tree.css
│   │       │   │   │   ├── validatebox.css
│   │       │   │   │   └── window.css
│   │       │   │   ├── bootstrap
│   │       │   │   │   ├── accordion.css
│   │       │   │   │   ├── calendar.css
│   │       │   │   │   ├── combo.css
│   │       │   │   │   ├── combobox.css
│   │       │   │   │   ├── datagrid.css
│   │       │   │   │   ├── datebox.css
│   │       │   │   │   ├── dialog.css
│   │       │   │   │   ├── easyui.css
│   │       │   │   │   ├── images
│   │       │   │   │   │   ├── accordion_arrows.png
│   │       │   │   │   │   ├── blank.gif
│   │       │   │   │   │   ├── calendar_arrows.png
│   │       │   │   │   │   ├── combo_arrow.png
│   │       │   │   │   │   ├── datagrid_icons.png
│   │       │   │   │   │   ├── datebox_arrow.png
│   │       │   │   │   │   ├── layout_arrows.png
│   │       │   │   │   │   ├── linkbutton_bg.png
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── menu_arrows.png
│   │       │   │   │   │   ├── messager_icons.png
│   │       │   │   │   │   ├── pagination_icons.png
│   │       │   │   │   │   ├── panel_tools.png
│   │       │   │   │   │   ├── searchbox_button.png
│   │       │   │   │   │   ├── slider_handle.png
│   │       │   │   │   │   ├── spinner_arrows.png
│   │       │   │   │   │   ├── tabs_icons.png
│   │       │   │   │   │   ├── tree_icons.png
│   │       │   │   │   │   └── validatebox_warning.png
│   │       │   │   │   ├── layout.css
│   │       │   │   │   ├── linkbutton.css
│   │       │   │   │   ├── menu.css
│   │       │   │   │   ├── menubutton.css
│   │       │   │   │   ├── messager.css
│   │       │   │   │   ├── pagination.css
│   │       │   │   │   ├── panel.css
│   │       │   │   │   ├── progressbar.css
│   │       │   │   │   ├── propertygrid.css
│   │       │   │   │   ├── searchbox.css
│   │       │   │   │   ├── slider.css
│   │       │   │   │   ├── spinner.css
│   │       │   │   │   ├── splitbutton.css
│   │       │   │   │   ├── tabs.css
│   │       │   │   │   ├── tooltip.css
│   │       │   │   │   ├── tree.css
│   │       │   │   │   ├── validatebox.css
│   │       │   │   │   └── window.css
│   │       │   │   ├── default
│   │       │   │   │   ├── accordion.css
│   │       │   │   │   ├── calendar.css
│   │       │   │   │   ├── combo.css
│   │       │   │   │   ├── combobox.css
│   │       │   │   │   ├── datagrid.css
│   │       │   │   │   ├── datebox.css
│   │       │   │   │   ├── dialog.css
│   │       │   │   │   ├── easyui.css
│   │       │   │   │   ├── images
│   │       │   │   │   │   ├── accordion_arrows.png
│   │       │   │   │   │   ├── blank.gif
│   │       │   │   │   │   ├── calendar_arrows.png
│   │       │   │   │   │   ├── combo_arrow.png
│   │       │   │   │   │   ├── datagrid_icons.png
│   │       │   │   │   │   ├── datebox_arrow.png
│   │       │   │   │   │   ├── layout_arrows.png
│   │       │   │   │   │   ├── linkbutton_bg.png
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── menu_arrows.png
│   │       │   │   │   │   ├── messager_icons.png
│   │       │   │   │   │   ├── pagination_icons.png
│   │       │   │   │   │   ├── panel_tools.png
│   │       │   │   │   │   ├── searchbox_button.png
│   │       │   │   │   │   ├── slider_handle.png
│   │       │   │   │   │   ├── spinner_arrows.png
│   │       │   │   │   │   ├── tabs_icons.png
│   │       │   │   │   │   ├── tree_icons.png
│   │       │   │   │   │   └── validatebox_warning.png
│   │       │   │   │   ├── layout.css
│   │       │   │   │   ├── linkbutton.css
│   │       │   │   │   ├── menu.css
│   │       │   │   │   ├── menubutton.css
│   │       │   │   │   ├── messager.css
│   │       │   │   │   ├── pagination.css
│   │       │   │   │   ├── panel.css
│   │       │   │   │   ├── progressbar.css
│   │       │   │   │   ├── propertygrid.css
│   │       │   │   │   ├── searchbox.css
│   │       │   │   │   ├── slider.css
│   │       │   │   │   ├── spinner.css
│   │       │   │   │   ├── splitbutton.css
│   │       │   │   │   ├── tabs.css
│   │       │   │   │   ├── tooltip.css
│   │       │   │   │   ├── tree.css
│   │       │   │   │   ├── validatebox.css
│   │       │   │   │   └── window.css
│   │       │   │   ├── gray
│   │       │   │   │   ├── accordion.css
│   │       │   │   │   ├── calendar.css
│   │       │   │   │   ├── combo.css
│   │       │   │   │   ├── combobox.css
│   │       │   │   │   ├── datagrid.css
│   │       │   │   │   ├── datebox.css
│   │       │   │   │   ├── dialog.css
│   │       │   │   │   ├── easyui.css
│   │       │   │   │   ├── images
│   │       │   │   │   │   ├── accordion_arrows.png
│   │       │   │   │   │   ├── blank.gif
│   │       │   │   │   │   ├── calendar_arrows.png
│   │       │   │   │   │   ├── combo_arrow.png
│   │       │   │   │   │   ├── datagrid_icons.png
│   │       │   │   │   │   ├── datebox_arrow.png
│   │       │   │   │   │   ├── layout_arrows.png
│   │       │   │   │   │   ├── linkbutton_bg.png
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── menu_arrows.png
│   │       │   │   │   │   ├── messager_icons.png
│   │       │   │   │   │   ├── pagination_icons.png
│   │       │   │   │   │   ├── panel_tools.png
│   │       │   │   │   │   ├── searchbox_button.png
│   │       │   │   │   │   ├── slider_handle.png
│   │       │   │   │   │   ├── spinner_arrows.png
│   │       │   │   │   │   ├── tabs_icons.png
│   │       │   │   │   │   ├── tree_icons.png
│   │       │   │   │   │   └── validatebox_warning.png
│   │       │   │   │   ├── layout.css
│   │       │   │   │   ├── linkbutton.css
│   │       │   │   │   ├── menu.css
│   │       │   │   │   ├── menubutton.css
│   │       │   │   │   ├── messager.css
│   │       │   │   │   ├── pagination.css
│   │       │   │   │   ├── panel.css
│   │       │   │   │   ├── progressbar.css
│   │       │   │   │   ├── propertygrid.css
│   │       │   │   │   ├── searchbox.css
│   │       │   │   │   ├── slider.css
│   │       │   │   │   ├── spinner.css
│   │       │   │   │   ├── splitbutton.css
│   │       │   │   │   ├── tabs.css
│   │       │   │   │   ├── tooltip.css
│   │       │   │   │   ├── tree.css
│   │       │   │   │   ├── validatebox.css
│   │       │   │   │   └── window.css
│   │       │   │   ├── icon.css
│   │       │   │   ├── icons
│   │       │   │   │   ├── announcement.png
│   │       │   │   │   ├── audit.png
│   │       │   │   │   ├── back.png
│   │       │   │   │   ├── blank.gif
│   │       │   │   │   ├── cancel.png
│   │       │   │   │   ├── cancel_audit.png
│   │       │   │   │   ├── cancel_top.png
│   │       │   │   │   ├── cut.png
│   │       │   │   │   ├── edit_add.png
│   │       │   │   │   ├── edit_remove.png
│   │       │   │   │   ├── filesave.png
│   │       │   │   │   ├── filter.png
│   │       │   │   │   ├── help.png
│   │       │   │   │   ├── look.png
│   │       │   │   │   ├── maintenance.png
│   │       │   │   │   ├── mini_add.png
│   │       │   │   │   ├── mini_edit.png
│   │       │   │   │   ├── mini_refresh.png
│   │       │   │   │   ├── no.png
│   │       │   │   │   ├── ok.png
│   │       │   │   │   ├── pencil.png
│   │       │   │   │   ├── print.png
│   │       │   │   │   ├── redo.png
│   │       │   │   │   ├── release.png
│   │       │   │   │   ├── reload.png
│   │       │   │   │   ├── role.png
│   │       │   │   │   ├── search.png
│   │       │   │   │   ├── submit.png
│   │       │   │   │   ├── sum.png
│   │       │   │   │   ├── tip.png
│   │       │   │   │   ├── top.png
│   │       │   │   │   └── undo.png
│   │       │   │   ├── locale
│   │       │   │   │   └── easyui-lang-zh_CN.js
│   │       │   │   └── metro
│   │       │   │       ├── accordion.css
│   │       │   │       ├── calendar.css
│   │       │   │       ├── combo.css
│   │       │   │       ├── combobox.css
│   │       │   │       ├── datagrid.css
│   │       │   │       ├── datebox.css
│   │       │   │       ├── dialog.css
│   │       │   │       ├── easyui.css
│   │       │   │       ├── images
│   │       │   │       │   ├── accordion_arrows.png
│   │       │   │       │   ├── blank.gif
│   │       │   │       │   ├── calendar_arrows.png
│   │       │   │       │   ├── combo_arrow.png
│   │       │   │       │   ├── datagrid_icons.png
│   │       │   │       │   ├── datebox_arrow.png
│   │       │   │       │   ├── layout_arrows.png
│   │       │   │       │   ├── linkbutton_bg.png
│   │       │   │       │   ├── loading.gif
│   │       │   │       │   ├── menu_arrows.png
│   │       │   │       │   ├── messager_icons.png
│   │       │   │       │   ├── pagination_icons.png
│   │       │   │       │   ├── panel_tools.png
│   │       │   │       │   ├── searchbox_button.png
│   │       │   │       │   ├── slider_handle.png
│   │       │   │       │   ├── spinner_arrows.png
│   │       │   │       │   ├── tabs_icons.png
│   │       │   │       │   ├── tree_icons.png
│   │       │   │       │   └── validatebox_warning.png
│   │       │   │       ├── layout.css
│   │       │   │       ├── linkbutton.css
│   │       │   │       ├── menu.css
│   │       │   │       ├── menubutton.css
│   │       │   │       ├── messager.css
│   │       │   │       ├── pagination.css
│   │       │   │       ├── panel.css
│   │       │   │       ├── progressbar.css
│   │       │   │       ├── propertygrid.css
│   │       │   │       ├── searchbox.css
│   │       │   │       ├── slider.css
│   │       │   │       ├── spinner.css
│   │       │   │       ├── splitbutton.css
│   │       │   │       ├── tabs.css
│   │       │   │       ├── tooltip.css
│   │       │   │       ├── tree.css
│   │       │   │       ├── validatebox.css
│   │       │   │       └── window.css
│   │       │   ├── jquery.easyui.min.js
│   │       │   ├── swpier.js
│   │       │   └── validate.js
│   │       ├── image
│   │       │   ├── !readme.txt
│   │       │   ├── 404.png
│   │       │   ├── 500.png
│   │       │   ├── bj.jpg
│   │       │   └── index
│   │       │       ├── bir.png
│   │       │       ├── close.png
│   │       │       ├── dowm.png
│   │       │       ├── jlzf.jpg
│   │       │       ├── middle.png
│   │       │       ├── top.png
│   │       │       ├── word.png
│   │       │       └── xuanfu.jpg
│   │       ├── images
│   │       │   ├── banner1.jpg
│   │       │   ├── body-bj.jpg
│   │       │   ├── bottom-bj.jpg
│   │       │   ├── button_03.jpg
│   │       │   ├── button_06.jpg
│   │       │   ├── button_08.jpg
│   │       │   ├── button_10.jpg
│   │       │   ├── button_12.jpg
│   │       │   ├── button_14.jpg
│   │       │   ├── button_16.jpg
│   │       │   ├── dian.jpg
│   │       │   ├── h3-bj.jpg
│   │       │   ├── jd01.jpg
│   │       │   ├── li-bj1.jpg
│   │       │   ├── menu-bj.jpg
│   │       │   ├── nav-bj.jpg
│   │       │   ├── new.jpg
│   │       │   ├── photo_01.jpg
│   │       │   ├── photo_02.jpg
│   │       │   ├── photo_03.jpg
│   │       │   ├── py.jpg
│   │       │   ├── pybj.jpg
│   │       │   ├── ren01.jpg
│   │       │   ├── search-bj.jpg
│   │       │   ├── sj.jpg
│   │       │   ├── tab-bj.jpg
│   │       │   ├── title-bj.jpg
│   │       │   ├── title-bj1.jpg
│   │       │   └── top-bj.jpg
│   │       ├── index
│   │       │   ├── images
│   │       │   │   ├── Frame1.png
│   │       │   │   ├── Frame2.png
│   │       │   │   ├── Frame3.png
│   │       │   │   ├── Frame4.png
│   │       │   │   ├── FrameNormal1.png
│   │       │   │   ├── FrameNormal2.png
│   │       │   │   ├── FrameNormal3.png
│   │       │   │   ├── FrameNormal4.png
│   │       │   │   ├── Happybirthday.swf
│   │       │   │   ├── banner1.png
│   │       │   │   ├── banner2.png
│   │       │   │   ├── banner3.png
│   │       │   │   ├── banner4.png
│   │       │   │   ├── banner5.png
│   │       │   │   ├── birthday.jpg
│   │       │   │   ├── bj.png
│   │       │   │   ├── body-bj.jpg
│   │       │   │   ├── bottom-bj.jpg
│   │       │   │   ├── button-b1.jpg
│   │       │   │   ├── button1.jpg
│   │       │   │   ├── button_03.jpg
│   │       │   │   ├── button_06.jpg
│   │       │   │   ├── button_08.jpg
│   │       │   │   ├── button_10.jpg
│   │       │   │   ├── button_12.jpg
│   │       │   │   ├── button_14.jpg
│   │       │   │   ├── button_16.jpg
│   │       │   │   ├── dekss.png
│   │       │   │   ├── dhl.png
│   │       │   │   ├── dian.jpg
│   │       │   │   ├── dykss.png
│   │       │   │   ├── expressInstall.swf
│   │       │   │   ├── ftp.png
│   │       │   │   ├── gab.png
│   │       │   │   ├── gabjsglj.png
│   │       │   │   ├── ggl.png
│   │       │   │   ├── gonggao.jpg
│   │       │   │   ├── h3-bj.jpg
│   │       │   │   ├── jd01.jpg
│   │       │   │   ├── jlbj.jpg
│   │       │   │   ├── jls.png
│   │       │   │   ├── jlsjwpt.png
│   │       │   │   ├── jrzb.png
│   │       │   │   ├── kss.png
│   │       │   │   ├── kssjwpt.png
│   │       │   │   ├── li-bj.jpg
│   │       │   │   ├── li-bj1.jpg
│   │       │   │   ├── menu-bj.jpg
│   │       │   │   ├── nav-bj.jpg
│   │       │   │   ├── new.jpg
│   │       │   │   ├── off.gif
│   │       │   │   ├── on.gif
│   │       │   │   ├── photo_01.jpg
│   │       │   │   ├── photo_02.jpg
│   │       │   │   ├── photo_03.jpg
│   │       │   │   ├── photo_04.jpg
│   │       │   │   ├── py.jpg
│   │       │   │   ├── pybj.jpg
│   │       │   │   ├── qdsgaj.png
│   │       │   │   ├── qdsjls.png
│   │       │   │   ├── ren01.jpg
│   │       │   │   ├── rjxz.png
│   │       │   │   ├── rjxzactive.png
│   │       │   │   ├── sdsgat.png
│   │       │   │   ├── sdsgatjsglzd.png
│   │       │   │   ├── search-bj.jpg
│   │       │   │   ├── search.gif
│   │       │   │   ├── search.jpg
│   │       │   │   ├── sj.jpg
│   │       │   │   ├── sjwsbg.png
│   │       │   │   ├── spxx.png
│   │       │   │   ├── tab-bj.jpg
│   │       │   │   ├── title-bj.jpg
│   │       │   │   ├── title-bj1.jpg
│   │       │   │   ├── top-bj.jpg
│   │       │   │   ├── xuanfu1.jpg
│   │       │   │   ├── zdFTP.png
│   │       │   │   ├── zdwsbg.png
│   │       │   │   ├── zdzxx.png
│   │       │   │   ├── zwrx.png
│   │       │   │   ├── zwrxpt.png
│   │       │   │   ├── zwtp.jpg
│   │       │   │   └── zztg.png
│   │       │   ├── index.js
│   │       │   ├── login.js
│   │       │   └── swfobject_modified.js
│   │       ├── page
│   │       │   └── authcode.jsp
│   │       ├── portal
│   │       │   ├── colInfoList.js
│   │       │   ├── floatWindow.js
│   │       │   ├── head.js
│   │       │   ├── infadd.js
│   │       │   ├── message.js
│   │       │   ├── notice.js
│   │       │   ├── notice_pc.js
│   │       │   └── onduty.js
│   │       ├── style
│   │       │   ├── !readme.txt
│   │       │   ├── Happybirthday.css
│   │       │   ├── index.css
│   │       │   └── index1.css
│   │       └── ueditor
│   │           ├── dialogs
│   │           │   ├── anchor
│   │           │   │   └── anchor.html
│   │           │   ├── attachment
│   │           │   │   ├── attachment.css
│   │           │   │   ├── attachment.html
│   │           │   │   ├── callbacks.js
│   │           │   │   ├── fileTypeImages
│   │           │   │   │   ├── icon_chm.gif
│   │           │   │   │   ├── icon_default.png
│   │           │   │   │   ├── icon_doc.gif
│   │           │   │   │   ├── icon_exe.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
│   │           │   │   └── fileTypeMaps.js
│   │           │   ├── background
│   │           │   │   ├── background.css
│   │           │   │   ├── background.html
│   │           │   │   └── background.js
│   │           │   ├── 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
│   │           │   │   ├── imageUploader.swf
│   │           │   │   └── images
│   │           │   │       ├── center_focus.jpg
│   │           │   │       ├── left_focus.jpg
│   │           │   │       ├── none_focus.jpg
│   │           │   │       └── right_focus.jpg
│   │           │   ├── 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
│   │           │   │   │   ├── delimg.png
│   │           │   │   │   ├── delimgH.png
│   │           │   │   │   ├── empty.png
│   │           │   │   │   ├── emptyH.png
│   │           │   │   │   ├── eraser.png
│   │           │   │   │   ├── redo.png
│   │           │   │   │   ├── redoH.png
│   │           │   │   │   ├── scale.png
│   │           │   │   │   ├── scaleH.png
│   │           │   │   │   ├── size.png
│   │           │   │   │   ├── undo.png
│   │           │   │   │   └── undoH.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
│   │           │   ├── tangram.js
│   │           │   ├── template
│   │           │   │   ├── config.js
│   │           │   │   ├── images
│   │           │   │   │   ├── bg.gif
│   │           │   │   │   ├── pre0.png
│   │           │   │   │   ├── pre1.png
│   │           │   │   │   ├── pre2.png
│   │           │   │   │   ├── pre3.png
│   │           │   │   │   └── pre4.png
│   │           │   │   ├── template.css
│   │           │   │   ├── template.html
│   │           │   │   └── template.js
│   │           │   ├── video
│   │           │   │   ├── callbacks.js
│   │           │   │   ├── images
│   │           │   │   │   ├── center_focus.jpg
│   │           │   │   │   ├── left_focus.jpg
│   │           │   │   │   ├── none_focus.jpg
│   │           │   │   │   └── right_focus.jpg
│   │           │   │   ├── video.css
│   │           │   │   ├── video.html
│   │           │   │   └── video.js
│   │           │   ├── webapp
│   │           │   │   └── webapp.html
│   │           │   └── wordimage
│   │           │       ├── fClipboard_ueditor.swf
│   │           │       ├── imageUploader.swf
│   │           │       ├── wordimage.html
│   │           │       └── wordimage.js
│   │           ├── index.html
│   │           ├── jsp
│   │           │   ├── Uploader.java
│   │           │   ├── config.properties
│   │           │   ├── fileUp.jsp
│   │           │   ├── getContent.jsp
│   │           │   ├── getMovie.jsp
│   │           │   ├── getRemoteImage.jsp
│   │           │   ├── imageManager.jsp
│   │           │   ├── imageUp.jsp
│   │           │   └── scrawlUp.jsp
│   │           ├── lang
│   │           │   ├── en
│   │           │   │   ├── en.js
│   │           │   │   └── images
│   │           │   │       ├── addimage.png
│   │           │   │       ├── alldeletebtnhoverskin.png
│   │           │   │       ├── alldeletebtnupskin.png
│   │           │   │       ├── background.png
│   │           │   │       ├── button.png
│   │           │   │       ├── copy.png
│   │           │   │       ├── deletedisable.png
│   │           │   │       ├── deleteenable.png
│   │           │   │       ├── imglabel.png
│   │           │   │       ├── listbackground.png
│   │           │   │       ├── localimage.png
│   │           │   │       ├── music.png
│   │           │   │       ├── rotateleftdisable.png
│   │           │   │       ├── rotateleftenable.png
│   │           │   │       ├── rotaterightdisable.png
│   │           │   │       ├── rotaterightenable.png
│   │           │   │       └── upload.png
│   │           │   └── zh-cn
│   │           │       ├── images
│   │           │       │   ├── copy.png
│   │           │       │   ├── imglabel.png
│   │           │       │   ├── localimage.png
│   │           │       │   ├── music.png
│   │           │       │   └── upload.png
│   │           │       └── zh-cn.js
│   │           ├── themes
│   │           │   ├── default
│   │           │   │   ├── css
│   │           │   │   │   ├── ueditor.css
│   │           │   │   │   └── ueditor.min.css
│   │           │   │   ├── dialogbase.css
│   │           │   │   └── images
│   │           │   │       ├── anchor.gif
│   │           │   │       ├── arrow.png
│   │           │   │       ├── arrow_down.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
│   │           │   │       ├── 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
│   │           │   ├── SyntaxHighlighter
│   │           │   │   ├── shCore.js
│   │           │   │   └── shCoreDefault.css
│   │           │   ├── 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-more.js
│   │           │   │   ├── highcharts-more.src.js
│   │           │   │   ├── highcharts.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.min.js
│   │           │   ├── snapscreen
│   │           │   │   └── UEditorSnapscreen.exe
│   │           │   ├── swfupload
│   │           │   │   ├── fileprogress.js
│   │           │   │   ├── swfupload.cookies.js
│   │           │   │   ├── swfupload.js
│   │           │   │   ├── swfupload.proxy.js
│   │           │   │   ├── swfupload.queue.js
│   │           │   │   ├── swfupload.speed.js
│   │           │   │   ├── swfupload.swf
│   │           │   │   └── swfupload_fp9.swf
│   │           │   └── video-js
│   │           │       ├── font
│   │           │       │   ├── vjs.eot
│   │           │       │   ├── vjs.svg
│   │           │       │   ├── vjs.ttf
│   │           │       │   └── vjs.woff
│   │           │       ├── video-js.css
│   │           │       ├── video-js.min.css
│   │           │       ├── video-js.swf
│   │           │       ├── video.dev.js
│   │           │       └── video.js
│   │           ├── ueditor.all.js
│   │           ├── ueditor.all.min.js
│   │           ├── ueditor.config.js
│   │           ├── ueditor.parse.js
│   │           └── ueditor.parse.min.js
│   ├── delete.bat
│   ├── jgmh.iml
│   └── src
│       ├── main
│       │   ├── java
│       │   │   └── com
│       │   │       └── botech
│       │   │           ├── jgmh
│       │   │           │   ├── base
│       │   │           │   │   ├── domain
│       │   │           │   │   │   ├── CodeValue.java
│       │   │           │   │   │   ├── Column.java
│       │   │           │   │   │   ├── DetachIntro.java
│       │   │           │   │   │   ├── InfImg.java
│       │   │           │   │   │   ├── Information.java
│       │   │           │   │   │   ├── Navigation.java
│       │   │           │   │   │   ├── Notice.java
│       │   │           │   │   │   ├── Onduty.java
│       │   │           │   │   │   ├── Person.java
│       │   │           │   │   │   ├── SysParam.java
│       │   │           │   │   │   └── UserManager.java
│       │   │           │   │   ├── oscache
│       │   │           │   │   │   ├── adapter
│       │   │           │   │   │   │   ├── CacheAdapter.java
│       │   │           │   │   │   │   └── StdCacheAdapter.java
│       │   │           │   │   │   ├── constant
│       │   │           │   │   │   │   └── OscacheConstant.java
│       │   │           │   │   │   ├── engine
│       │   │           │   │   │   │   ├── CacheEngine.java
│       │   │           │   │   │   │   └── StdCacheEngine.java
│       │   │           │   │   │   ├── param
│       │   │           │   │   │   │   └── CommonParam.java
│       │   │           │   │   │   └── util
│       │   │           │   │   │       └── AuthorityCacheAdapter.java
│       │   │           │   │   └── persistence
│       │   │           │   │       ├── CodeValueMapper.java
│       │   │           │   │       ├── CodeValueMapper.xml
│       │   │           │   │       ├── DetachIntroMapper.java
│       │   │           │   │       ├── DetachIntroMapper.xml
│       │   │           │   │       ├── DutyMapper.java
│       │   │           │   │       ├── DutyMapper.xml
│       │   │           │   │       ├── InfImgMapper.java
│       │   │           │   │       ├── InfImgMapper.xml
│       │   │           │   │       ├── InformationMapper.java
│       │   │           │   │       ├── InformationMapper.xml
│       │   │           │   │       ├── MessageMapper.java
│       │   │           │   │       ├── MessageMapper.xml
│       │   │           │   │       ├── NavigationMapper.java
│       │   │           │   │       ├── NavigationMapper.xml
│       │   │           │   │       ├── NoticeMapper.java
│       │   │           │   │       ├── NoticeMapper.xml
│       │   │           │   │       ├── OndutyMapper.java
│       │   │           │   │       ├── OndutyMapper.xml
│       │   │           │   │       ├── PersonMapper.java
│       │   │           │   │       ├── PersonMapper.xml
│       │   │           │   │       ├── SysParamMapper.java
│       │   │           │   │       ├── SysParamMapper.xml
│       │   │           │   │       ├── UserManagerMapper.java
│       │   │           │   │       ├── UserManagerMapper.xml
│       │   │           │   │       └── impl
│       │   │           │   │           ├── CodeValueImpl.java
│       │   │           │   │           ├── DetachIntroMapperImpl.java
│       │   │           │   │           ├── DutyMapperImpl.java
│       │   │           │   │           ├── InfImgMapperImpl.java
│       │   │           │   │           ├── InformationMapperImpl.java
│       │   │           │   │           ├── MessageMapperImpl.java
│       │   │           │   │           ├── NavigationMapperImpl.java
│       │   │           │   │           ├── NoticeMapperImpl.java
│       │   │           │   │           ├── OndutyMapperImpl.java
│       │   │           │   │           ├── PersonMapperImpl.java
│       │   │           │   │           ├── SysParamMapperImpl.java
│       │   │           │   │           └── UserManagerMapperImpl.java
│       │   │           │   ├── common
│       │   │           │   │   ├── BaseTO.java
│       │   │           │   │   ├── CommonHandlerExceptionResolver.java
│       │   │           │   │   ├── Constants.java
│       │   │           │   │   ├── Dialect.java
│       │   │           │   │   ├── OracleDialect.java
│       │   │           │   │   ├── PaginationInterceptor.java
│       │   │           │   │   ├── dao
│       │   │           │   │   │   ├── BaseDao.java
│       │   │           │   │   │   └── BaseDaoImpl.java
│       │   │           │   │   └── qvo
│       │   │           │   │       ├── BaseVO.java
│       │   │           │   │       └── DropDownItem.java
│       │   │           │   ├── index
│       │   │           │   │   ├── controller
│       │   │           │   │   │   └── LoginController.java
│       │   │           │   │   ├── dto
│       │   │           │   │   │   ├── LoginDTO.java
│       │   │           │   │   │   └── UserManagerDTO.java
│       │   │           │   │   ├── qvo
│       │   │           │   │   │   └── LoginVO.java
│       │   │           │   │   ├── service
│       │   │           │   │   │   └── LoginService.java
│       │   │           │   │   └── serviceimpl
│       │   │           │   │       └── LoginServiceImpl.java
│       │   │           │   ├── portal
│       │   │           │   │   ├── controller
│       │   │           │   │   │   ├── DetachIntroController.java
│       │   │           │   │   │   ├── InfController.java
│       │   │           │   │   │   ├── InformationController.java
│       │   │           │   │   │   ├── MessageController.java
│       │   │           │   │   │   └── PortalController.java
│       │   │           │   │   ├── dto
│       │   │           │   │   │   ├── AttachDTO.java
│       │   │           │   │   │   ├── BirDTO.java
│       │   │           │   │   │   ├── CodeValueDTO.java
│       │   │           │   │   │   ├── ColumnDTO.java
│       │   │           │   │   │   ├── DataCountDTO.java
│       │   │           │   │   │   ├── DetachIntroDTO.java
│       │   │           │   │   │   ├── DutyDTO.java
│       │   │           │   │   │   ├── InfContentDTO.java
│       │   │           │   │   │   ├── InfCountDTO.java
│       │   │           │   │   │   ├── InfImgDTO.java
│       │   │           │   │   │   ├── InformationDTO.java
│       │   │           │   │   │   ├── IpCountDTO.java
│       │   │           │   │   │   ├── MessageDTO.java
│       │   │           │   │   │   ├── NavigationDTO.java
│       │   │           │   │   │   ├── NoticeDTO.java
│       │   │           │   │   │   ├── OndutyDTO.java
│       │   │           │   │   │   ├── PersonDTO.java
│       │   │           │   │   │   ├── SigforDTO.java
│       │   │           │   │   │   ├── SortDto.java
│       │   │           │   │   │   └── SysparamDTO.java
│       │   │           │   │   ├── qvo
│       │   │           │   │   ├── service
│       │   │           │   │   │   ├── BirthdayService.java
│       │   │           │   │   │   ├── CodeValueService.java
│       │   │           │   │   │   ├── DetachIntroService.java
│       │   │           │   │   │   ├── DutyService.java
│       │   │           │   │   │   ├── InformationService.java
│       │   │           │   │   │   ├── MessageService.java
│       │   │           │   │   │   ├── NavigationService.java
│       │   │           │   │   │   ├── NoticeService.java
│       │   │           │   │   │   ├── OndutyService.java
│       │   │           │   │   │   ├── PersonService.java
│       │   │           │   │   │   ├── PortalService.java
│       │   │           │   │   │   └── SysParamService.java
│       │   │           │   │   └── serviceimpl
│       │   │           │   │       ├── BirthdayServiceImpl.java
│       │   │           │   │       ├── CodeValueServiceImpl.java
│       │   │           │   │       ├── DetachIntroServiceImpl.java
│       │   │           │   │       ├── DutyServiceImpl.java
│       │   │           │   │       ├── InformationServiceImpl.java
│       │   │           │   │       ├── MessageServiceImpl.java
│       │   │           │   │       ├── NavigationServiceImpl.java
│       │   │           │   │       ├── NoticeServiceImpl.java
│       │   │           │   │       ├── OndutyServiceImpl.java
│       │   │           │   │       ├── PersonServiceImpl.java
│       │   │           │   │       ├── PortalServiceImpl.java
│       │   │           │   │       └── SysParamServiceImpl.java
│       │   │           │   └── utils
│       │   │           │       ├── AjaxUtil.java
│       │   │           │       ├── CodeTypeUtil.java
│       │   │           │       ├── CommonUtil.java
│       │   │           │       ├── DateUtil.java
│       │   │           │       ├── FileDownloadUtil.java
│       │   │           │       ├── JsonUtil.java
│       │   │           │       ├── LocalUtil.java
│       │   │           │       ├── LunarUtil.java
│       │   │           │       ├── MD5Util.java
│       │   │           │       ├── OsCacheUtil.java
│       │   │           │       ├── PropertyUtil.java
│       │   │           │       ├── SpringConfigLoadHelper.java
│       │   │           │       └── SysParamUtil.java
│       │   │           └── spring
│       │   └── resource
│       │       ├── !readme.txt
│       │       ├── antiIntercept.properties
│       │       ├── appContext.xml
│       │       ├── config.properties
│       │       ├── dozer.properties
│       │       ├── logback.xml
│       │       ├── messages.properties
│       │       ├── mybatisConfig.xml
│       │       └── oscache.properties
│       └── test
│           └── java
└── 门户网站开发_RegulatoryPortalWeb.rar

180 directories, 1199 files


实例下载地址

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警