嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
基于web的家校联系平台的设计与实现(源码 文档 PPT 数据库)
以 web为基础、以 Java SSM (springmvc mybatis mysql)为框架、以spring, springmvc, mybatis, bootstrap, JSP, jquery为主要技术来完成一个家庭与学校之间的联系。在框架下进行开发,管理员可以在后台输入信息、管理信息,设置网站信息,管理和设置广告、留言、录入老师人员信息,并对老师人员问题进行处理。使用者可透过登陆网页,浏览新闻资讯,发表评论,检视教师名单,检视详情,检视学生服务等。
一、关键技术和软件
包括spring, springmvc, mybatis, bootstrap, JSP, jquery等技术、 Mysql数据库、Eclipse等。
1.Eclipse是一个开源的软体发展计画,著重于完整的功能,商业品质的产业应用于高整合的工具发展。
2.JSP (JAVA Server Pages)是一项由Sun Microsystems Corporation,简称 JSP牵头制定的一项动态 Web页面技术标准。
3.SSM(Spring SpringMVC Mybatis)框架。SSM: Spring SpringMVC Python
SSM的架构集合就是融合了两大开放源码架构: Spring和 Mybatis。SpringMVC属于 Spring的一种,通常被用作一个框架,用于那些具有更简单的数据来源的网络工程。
4.MySQL数据库在技术世界中得到了广泛的应用。它一般采用标准的 SQL,并具备较高的操作效率、较高的安全性和较好的兼容能力。
二、功能介绍
主要分为管理员, 教师, 家长三个角色。
教师就角色可以实现: 与班内家长进行沟通, 作业布置管理, 考试管理, 学籍管理个人信息维护等功能。
学生家长角色能能够实现: 与孩子的家长进行沟通交流, 作业下载, 绑定学生关系等功能。
1.前台页面模块
用户登录入口、可以查看分栏目信息, 查看网页介绍, 学校公告, 学校新闻。
2.后台管理系统实现如下功能
①登录模块:
②系统管理员实现网站公告, 新闻管理, 账户权限管理, 学校学科信息维护, 班级信息维护等功能。
三、内部页面展示
(1)用户模块
1.用户登录和注册
2.系统首页
3.家长互动页面
4.教师个人中心页面
(2)管理员模块
1.管理员登录页面
2.管理员用户注册申请管理页面
3.管理员学校用户账号管理页面
4.管理员校园管理员管理页面
5.管理员网站介绍管理页面
6.管理员系统公告管理页面
7.管理员新闻发布管理页面
学生家长联系系统采用SSM框架、MySQL数据库连接存储。系统各模块划分合理、类的责任划分明确、代码可重用性强。
.
├── JiaXiaoTong
│ └── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── jiaXiaoTong
│ │ ├── base
│ │ │ ├── BaseController.java
│ │ │ ├── BaseDao.java
│ │ │ ├── BaseDaoImpl.java
│ │ │ ├── BaseService.java
│ │ │ └── BaseServiceImpl.java
│ │ ├── controller
│ │ │ ├── ClassroomController.java
│ │ │ ├── DisciplineController.java
│ │ │ ├── GradeController.java
│ │ │ ├── HomeworkController.java
│ │ │ ├── IntroductionController.java
│ │ │ ├── LoginController.java
│ │ │ ├── ManageController.java
│ │ │ ├── MessageController.java
│ │ │ ├── NewsController.java
│ │ │ ├── NoticeController.java
│ │ │ ├── ParentController.java
│ │ │ ├── SchoolController.java
│ │ │ ├── ScoreController.java
│ │ │ ├── StudentController.java
│ │ │ └── TeacherController.java
│ │ ├── dao
│ │ │ ├── ClassroomDao.java
│ │ │ ├── DisciplineDao.java
│ │ │ ├── GradeDao.java
│ │ │ ├── HomeworkDao.java
│ │ │ ├── IntroductionDao.java
│ │ │ ├── ManageDao.java
│ │ │ ├── MessageDao.java
│ │ │ ├── NewsDao.java
│ │ │ ├── NoticeDao.java
│ │ │ ├── ParentDao.java
│ │ │ ├── SchoolDao.java
│ │ │ ├── ScoreDao.java
│ │ │ ├── StudentDao.java
│ │ │ ├── TeacherDao.java
│ │ │ └── impl
│ │ │ ├── ClassroomDaoImpl.java
│ │ │ ├── DisciplineDaoImpl.java
│ │ │ ├── GradeDaoImpl.java
│ │ │ ├── HomeworkDaoImpl.java
│ │ │ ├── IntroductionDaoImpl.java
│ │ │ ├── ManageDaoImpl.java
│ │ │ ├── MessageDaoImpl.java
│ │ │ ├── NewsDaoImpl.java
│ │ │ ├── NoticeDaoImpl.java
│ │ │ ├── ParentDaoImpl.java
│ │ │ ├── SchoolDaoImpl.java
│ │ │ ├── ScoreDaoImpl.java
│ │ │ ├── StudentDaoImpl.java
│ │ │ └── TeacherDaoImpl.java
│ │ ├── dto
│ │ ├── entity
│ │ │ ├── Classroom.java
│ │ │ ├── Discipline.java
│ │ │ ├── Grade.java
│ │ │ ├── Homework.java
│ │ │ ├── Introduction.java
│ │ │ ├── Manage.java
│ │ │ ├── Message.java
│ │ │ ├── News.java
│ │ │ ├── Notice.java
│ │ │ ├── Parent.java
│ │ │ ├── School.java
│ │ │ ├── Score.java
│ │ │ ├── Student.java
│ │ │ └── Teacher.java
│ │ ├── filter
│ │ │ └── SystemContextFilter.java
│ │ ├── pagehelper
│ │ │ ├── Page.java
│ │ │ ├── PageHelper.java
│ │ │ ├── PageInfo.java
│ │ │ ├── SqlParser.java
│ │ │ └── SqlUtil.java
│ │ ├── quartz
│ │ ├── service
│ │ │ ├── ClassroomService.java
│ │ │ ├── DisciplineService.java
│ │ │ ├── GradeService.java
│ │ │ ├── HomeworkService.java
│ │ │ ├── IntroductionService.java
│ │ │ ├── ManageService.java
│ │ │ ├── MessageService.java
│ │ │ ├── NewsService.java
│ │ │ ├── NoticeService.java
│ │ │ ├── ParentService.java
│ │ │ ├── SchoolService.java
│ │ │ ├── ScoreService.java
│ │ │ ├── StudentService.java
│ │ │ ├── TeacherService.java
│ │ │ └── impl
│ │ │ ├── ClassroomServiceImpl.java
│ │ │ ├── DisciplineServiceImpl.java
│ │ │ ├── GradeServiceImpl.java
│ │ │ ├── HomeworkServiceImpl.java
│ │ │ ├── IntroductionServiceImpl.java
│ │ │ ├── ManageServiceImpl.java
│ │ │ ├── MessageServiceImpl.java
│ │ │ ├── NewsServiceImpl.java
│ │ │ ├── NoticeServiceImpl.java
│ │ │ ├── ParentServiceImpl.java
│ │ │ ├── SchoolServiceImpl.java
│ │ │ ├── ScoreServiceImpl.java
│ │ │ ├── StudentServiceImpl.java
│ │ │ └── TeacherServiceImpl.java
│ │ ├── utils
│ │ │ ├── DateUtil.java
│ │ │ ├── HttpConstants.java
│ │ │ ├── JsonDateValueProcessor.java
│ │ │ ├── JsonUtil.java
│ │ │ ├── JsonUtil2.java
│ │ │ ├── Pager.java
│ │ │ ├── ReturnParam.java
│ │ │ └── SystemContext.java
│ │ └── xml
│ │ ├── ClassroomMapper.xml
│ │ ├── DisciplineMapper.xml
│ │ ├── GradeMapper.xml
│ │ ├── HomeworkMapper.xml
│ │ ├── IntroductionMapper.xml
│ │ ├── ManageMapper.xml
│ │ ├── MessageMapper.xml
│ │ ├── NewsMapper.xml
│ │ ├── NoticeMapper.xml
│ │ ├── ParentMapper.xml
│ │ ├── SchoolMapper.xml
│ │ ├── ScoreMapper.xml
│ │ ├── StudentMapper.xml
│ │ └── TeacherMapper.xml
│ ├── resources
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── mybatis-config.xml
│ │ ├── spring-context.xml
│ │ └── web-context.xml
│ └── webapp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── WEB-INF
│ │ ├── jsp
│ │ │ ├── classroom
│ │ │ │ ├── add.jsp
│ │ │ │ ├── classroom.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── discipline
│ │ │ │ ├── add.jsp
│ │ │ │ ├── discipline.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── grade
│ │ │ │ ├── add.jsp
│ │ │ │ ├── grade.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── homework
│ │ │ │ ├── add.jsp
│ │ │ │ ├── homework.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── introduction
│ │ │ │ ├── add.jsp
│ │ │ │ ├── content.html
│ │ │ │ ├── content.jsp
│ │ │ │ ├── introduction.jsp
│ │ │ │ ├── uIntroduction.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── login
│ │ │ │ ├── forgetPassWord.jsp
│ │ │ │ ├── mIndex.jsp
│ │ │ │ ├── mLogin.jsp
│ │ │ │ ├── uIndex.jsp
│ │ │ │ ├── uLogin.jsp
│ │ │ │ └── uRegister.jsp
│ │ │ ├── manage
│ │ │ │ ├── add.jsp
│ │ │ │ ├── manage.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── message
│ │ │ │ ├── add.jsp
│ │ │ │ ├── message.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── news
│ │ │ │ ├── add.jsp
│ │ │ │ ├── add1.jsp
│ │ │ │ ├── news.jsp
│ │ │ │ ├── news1.jsp
│ │ │ │ ├── news2.jsp
│ │ │ │ ├── newsDetail.jsp
│ │ │ │ ├── newsList.jsp
│ │ │ │ ├── newsList1.jsp
│ │ │ │ ├── shenhe.jsp
│ │ │ │ ├── uNews.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── notice
│ │ │ │ ├── add.jsp
│ │ │ │ ├── add1.jsp
│ │ │ │ ├── notice.jsp
│ │ │ │ ├── notice1.jsp
│ │ │ │ ├── notice2.jsp
│ │ │ │ ├── noticeDetail.jsp
│ │ │ │ ├── noticeList.jsp
│ │ │ │ ├── shenhe.jsp
│ │ │ │ ├── uNotice.jsp
│ │ │ │ ├── update.jsp
│ │ │ │ └── update1.jsp
│ │ │ ├── parent
│ │ │ │ ├── add.jsp
│ │ │ │ ├── isPass.jsp
│ │ │ │ ├── parent.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── school
│ │ │ │ ├── add.jsp
│ │ │ │ ├── school.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── score
│ │ │ │ ├── add.jsp
│ │ │ │ ├── score.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── student
│ │ │ │ ├── add.jsp
│ │ │ │ ├── student.jsp
│ │ │ │ └── update.jsp
│ │ │ └── teacher
│ │ │ ├── add.jsp
│ │ │ ├── teacher.jsp
│ │ │ └── update.jsp
│ │ ├── lib
│ │ │ ├── QRCode.jar
│ │ │ ├── ant.jar
│ │ │ ├── aopalliance-1.0.jar
│ │ │ ├── asm-3.3.jar
│ │ │ ├── aspectjweaver-1.6.0.jar
│ │ │ ├── async-http-client-1.8.13.jar
│ │ │ ├── axiom-api-1.2.12.jar
│ │ │ ├── axiom-impl-1.2.12.jar
│ │ │ ├── axis2-adb-1.5.6.jar
│ │ │ ├── axis2-kernel-1.5.6.jar
│ │ │ ├── axis2-transport-http-1.5.6.jar
│ │ │ ├── axis2-transport-local-1.5.6.jar
│ │ │ ├── c3p0-0.9.1.1.jar
│ │ │ ├── com.sun.net.ssl.jar
│ │ │ ├── commons-beanutils-1.9.2.jar
│ │ │ ├── commons-codec-1.9.jar
│ │ │ ├── commons-collections-3.1.jar
│ │ │ ├── commons-fileupload-1.3.1.jar
│ │ │ ├── commons-io-2.5.jar
│ │ │ ├── commons-lang3-3.3.2.jar
│ │ │ ├── commons-logging-1.2.jar
│ │ │ ├── commons-logging-api-1.1.jar
│ │ │ ├── commons-net-3.3.jar
│ │ │ ├── core-2.0.jar
│ │ │ ├── dom4j-1.6.1.jar
│ │ │ ├── dom4j-2.0.0-RC1.jar
│ │ │ ├── druid-1.0.11.jar
│ │ │ ├── dsn.jar
│ │ │ ├── ehcache-1.6.2.jar
│ │ │ ├── ezmorph-1.0.4.jar
│ │ │ ├── fastjson-1.2.1.jar
│ │ │ ├── fluent-hc-4.5.2.jar
│ │ │ ├── gson-2.2.4.jar
│ │ │ ├── httpasyncclient-4.0-beta3.jar
│ │ │ ├── httpasyncclient-4.1.2.jar
│ │ │ ├── httpasyncclient-cache-4.1.2.jar
│ │ │ ├── httpclient-4.5.2.jar
│ │ │ ├── httpclient-cache-4.5.2.jar
│ │ │ ├── httpclient-win-4.5.2.jar
│ │ │ ├── httpcore-4.4.5.jar
│ │ │ ├── httpcore-nio-4.4.5.jar
│ │ │ ├── httpmime-4.5.2.jar
│ │ │ ├── imap.jar
│ │ │ ├── jackson-annotations-2.14.1.jar
│ │ │ ├── jackson-core-2.14.1.jar
│ │ │ ├── jackson-core-asl-1.9.2.jar
│ │ │ ├── jackson-databind-2.14.1.jar
│ │ │ ├── jackson-jaxrs-1.9.2.jar
│ │ │ ├── jackson-jaxrs-base-2.3.2.jar
│ │ │ ├── jackson-jaxrs-json-provider-2.3.2.jar
│ │ │ ├── jackson-jr-all-2.4.1-sources.jar
│ │ │ ├── jackson-mapper-asl-1.9.2.jar
│ │ │ ├── jackson-module-jaxb-annotations-2.3.2.jar
│ │ │ ├── jackson-xc-1.9.2.jar
│ │ │ ├── javax.ws.rs-api-2.0.jar
│ │ │ ├── jna-4.1.0.jar
│ │ │ ├── jna-platform-4.1.0.jar
│ │ │ ├── jpush-client-3.2.9.jar
│ │ │ ├── json-2.2.1.jar
│ │ │ ├── json-lib-2.4-jdk15.jar
│ │ │ ├── json-parser_fat.jar
│ │ │ ├── json.jar
│ │ │ ├── jsoup-1.8.1.jar
│ │ │ ├── jsqlparser-0.9.1.jar
│ │ │ ├── jstl-1.2.jar
│ │ │ ├── log4j-1.2.17.jar
│ │ │ ├── mailapi.jar
│ │ │ ├── md5.jar
│ │ │ ├── mybatis-3.2.2.jar
│ │ │ ├── mybatis-paginator-1.2.15.jar
│ │ │ ├── mybatis-spring-1.2.0.jar
│ │ │ ├── mysql-connector-java-8.0.22.jar
│ │ │ ├── neethi-3.0.1.jar
│ │ │ ├── pager-taglib.jar
│ │ │ ├── poi-3.7-20101029.jar
│ │ │ ├── poi-examples-3.7-20101029.jar
│ │ │ ├── poi-ooxml-3.7-20101029.jar
│ │ │ ├── poi-ooxml-schemas-3.7-20101029.jar
│ │ │ ├── poi-scratchpad-3.7-20101029.jar
│ │ │ ├── pop3.jar
│ │ │ ├── quartz-2.2.1.jar
│ │ │ ├── quartz-all-1.8.3.jar
│ │ │ ├── quartz-jobs-2.2.1.jar
│ │ │ ├── servlet-api.jar
│ │ │ ├── slf4j-api-1.7.5.jar
│ │ │ ├── slf4j-log4j12-1.7.5.jar
│ │ │ ├── slf4j-nop-1.7.5.jar
│ │ │ ├── smtp.jar
│ │ │ ├── spring-aop-5.0.2.RELEASE.jar
│ │ │ ├── spring-aspects-5.0.2.RELEASE.jar
│ │ │ ├── spring-beans-5.0.2.RELEASE.jar
│ │ │ ├── spring-context-5.0.2.RELEASE.jar
│ │ │ ├── spring-context-support-5.0.0.RELEASE.jar
│ │ │ ├── spring-core-5.0.2.RELEASE.jar
│ │ │ ├── spring-expression-5.0.2.RELEASE.jar
│ │ │ ├── spring-jdbc-5.0.2.RELEASE.jar
│ │ │ ├── spring-orm-5.0.8.RELEASE.jar
│ │ │ ├── spring-tx-5.0.2.RELEASE.jar
│ │ │ ├── spring-web-5.0.2.RELEASE.jar
│ │ │ ├── spring-webmvc-5.0.2.RELEASE.jar
│ │ │ ├── sqljdbc4.jar
│ │ │ ├── sso-client-2.1.4.jar
│ │ │ ├── standard-1.1.2.jar
│ │ │ ├── ueditor-1.1.1.1.jar
│ │ │ ├── xmlbeans-2.3.0.jar
│ │ │ ├── xmlpull_1_0_5.jar
│ │ │ ├── xmlschema-core-2.0.1.jar
│ │ │ └── xstream-1.4.7.jar
│ │ ├── tlds
│ │ │ ├── c.tld
│ │ │ ├── fmt.tld
│ │ │ ├── fn.tld
│ │ │ └── pager-taglib.tld
│ │ └── web.xml
│ ├── common
│ │ ├── footer.jsp
│ │ ├── menu.jsp
│ │ └── taglibs.jsp
│ ├── resource
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── bui-min.css
│ │ │ │ ├── dpl-min.css
│ │ │ │ ├── main-min.css
│ │ │ │ ├── main.css
│ │ │ │ ├── page-min.css
│ │ │ │ ├── page.css
│ │ │ │ └── prettify.css
│ │ │ ├── img
│ │ │ │ ├── hide_list.png
│ │ │ │ ├── icon1.png
│ │ │ │ ├── icon2.png
│ │ │ │ ├── left-slib.gif
│ │ │ │ ├── main-nav-bg.png
│ │ │ │ ├── main-nav-bg1.png
│ │ │ │ ├── main-nav-bg2.png
│ │ │ │ ├── menu.jpg
│ │ │ │ ├── nav.jpg
│ │ │ │ ├── nav_selected.png
│ │ │ │ ├── resource.jpg
│ │ │ │ └── top.png
│ │ │ └── js
│ │ │ ├── bui-min.js
│ │ │ ├── bui.js
│ │ │ ├── common
│ │ │ │ ├── build.xml
│ │ │ │ ├── main-min.js
│ │ │ │ ├── main.js
│ │ │ │ ├── page-min.js
│ │ │ │ ├── page.js
│ │ │ │ ├── search-min.js
│ │ │ │ └── search.js
│ │ │ ├── config-min.js
│ │ │ ├── config.js
│ │ │ ├── editor-min.js
│ │ │ ├── jquery-1.8.1.min.js
│ │ │ ├── module
│ │ │ │ └── build.xml
│ │ │ ├── prettify.js
│ │ │ ├── toolbar-min.js
│ │ │ └── tree-min.js
│ │ ├── common
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── cart.css
│ │ │ │ ├── flexslider.css
│ │ │ │ ├── jquery.datetimepicker.css
│ │ │ │ ├── pintuer.css
│ │ │ │ ├── style.css
│ │ │ │ └── tips.css
│ │ │ ├── images
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 14.jpg
│ │ │ │ ├── 15.jpg
│ │ │ │ ├── IconTexto_WebDev_009.jpg
│ │ │ │ ├── ap.png
│ │ │ │ ├── ap1.png
│ │ │ │ ├── ap2.png
│ │ │ │ ├── ap3.png
│ │ │ │ ├── back.jpg
│ │ │ │ ├── back1.png
│ │ │ │ ├── back2.png
│ │ │ │ ├── back3.png
│ │ │ │ ├── banner.jpg
│ │ │ │ ├── banner1.jpg
│ │ │ │ ├── banner2.jpg
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── close.png
│ │ │ │ ├── home.png
│ │ │ │ ├── img-sprite.png
│ │ │ │ ├── line.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── passcode.jpg
│ │ │ │ ├── pi.jpg
│ │ │ │ ├── pi1.jpg
│ │ │ │ ├── pi2.jpg
│ │ │ │ ├── pi3.jpg
│ │ │ │ ├── pi4.jpg
│ │ │ │ ├── pi5.jpg
│ │ │ │ ├── pi6.jpg
│ │ │ │ ├── pi7.jpg
│ │ │ │ ├── pic.jpg
│ │ │ │ ├── pic1.jpg
│ │ │ │ ├── pic10.jpg
│ │ │ │ ├── pic11.jpg
│ │ │ │ ├── pic2.jpg
│ │ │ │ ├── pic3.jpg
│ │ │ │ ├── pic4.jpg
│ │ │ │ ├── pic5.jpg
│ │ │ │ ├── pic6.jpg
│ │ │ │ ├── pic7.jpg
│ │ │ │ ├── pic8.jpg
│ │ │ │ ├── pic9.jpg
│ │ │ │ ├── search.png
│ │ │ │ ├── si.jpg
│ │ │ │ ├── si1.jpg
│ │ │ │ ├── si2.jpg
│ │ │ │ ├── st1.jpg
│ │ │ │ ├── st2.jpg
│ │ │ │ ├── st3.jpg
│ │ │ │ ├── tick.png
│ │ │ │ ├── tmbg-white.png
│ │ │ │ ├── up.png
│ │ │ │ ├── y.jpg
│ │ │ │ └── zoom.png
│ │ │ └── js
│ │ │ ├── ajaxfileupload.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── imagezoom.js
│ │ │ ├── jquery.datetimepicker.js
│ │ │ ├── jquery.flexisel.js
│ │ │ ├── jquery.flexslider.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── nav.js
│ │ │ ├── pintuer.js
│ │ │ └── responsiveslides.min.js
│ │ ├── css
│ │ │ ├── admin_login.css
│ │ │ ├── bootstrap-3.3.5-dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── npm.js
│ │ │ │ └── ueditor
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── attachment
│ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── background
│ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ └── charts5.png
│ │ │ │ │ ├── emotion
│ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ │ ├── gmap
│ │ │ │ │ │ └── gmap.html
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ └── help.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── insertframe
│ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── show.html
│ │ │ │ │ ├── music
│ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ └── music.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ ├── scrawl
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ └── template.js
│ │ │ │ │ ├── video
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── webapp
│ │ │ │ │ │ └── webapp.html
│ │ │ │ │ └── wordimage
│ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ ├── tangram.js
│ │ │ │ │ ├── wordimage.html
│ │ │ │ │ └── wordimage.js
│ │ │ │ ├── jsp
│ │ │ │ │ ├── config.json
│ │ │ │ │ └── controller.jsp
│ │ │ │ ├── lang
│ │ │ │ │ ├── en
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── 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
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── 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.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.min.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ └── ueditor.parse.min.js
│ │ │ ├── bootstrap-responsive.css
│ │ │ ├── bootstrap.css
│ │ │ ├── common.css
│ │ │ ├── jquery.datetimepicker.css
│ │ │ ├── login.css
│ │ │ ├── lyz.calendar.css
│ │ │ ├── main.css
│ │ │ ├── main2.css
│ │ │ ├── reset.css
│ │ │ ├── style.css
│ │ │ └── supersized.css
│ │ ├── fonts
│ │ │ ├── icomoon.dev.svg
│ │ │ ├── icomoon.eot
│ │ │ ├── icomoon.svg
│ │ │ ├── icomoon.ttf
│ │ │ └── icomoon.woff
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── Thumbs.db
│ │ │ ├── adm.png
│ │ │ ├── aiwrap.png
│ │ │ ├── avtar.png
│ │ │ ├── banner.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── close.png
│ │ │ ├── date_bg.png
│ │ │ ├── email.png
│ │ │ ├── head-img.png
│ │ │ ├── key.png
│ │ │ ├── lock.png
│ │ │ ├── login
│ │ │ │ └── admin-login-btnbg.gif
│ │ │ ├── logo.png
│ │ │ ├── onCorrect.gif
│ │ │ ├── onError.gif
│ │ │ ├── onFocus.gif
│ │ │ ├── onShow.gif
│ │ │ ├── pass.png
│ │ │ ├── sprite.png
│ │ │ ├── tab-thbg.png
│ │ │ ├── tick.png
│ │ │ └── web_login_bg.jpg
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── ckform.js
│ │ │ ├── common.js
│ │ │ ├── echarts
│ │ │ │ └── echarts-all.js
│ │ │ ├── echarts.js
│ │ │ ├── echarts1.js
│ │ │ ├── jquery-1.8.2.min.js
│ │ │ ├── jquery-1.8.3.min.js
│ │ │ ├── jquery.datetimepicker.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── libs
│ │ │ │ └── modernizr.min.js
│ │ │ ├── lyz.calendar.min.js
│ │ │ ├── main2.js
│ │ │ ├── scripts.js
│ │ │ ├── supersized-init.js
│ │ │ ├── supersized.3.2.7.min.js
│ │ │ └── ueditor
│ │ │ ├── dialogs
│ │ │ │ ├── anchor
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ ├── attachment.js
│ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ ├── alignicon.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── background
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ └── success.png
│ │ │ │ ├── charts
│ │ │ │ │ ├── chart.config.js
│ │ │ │ │ ├── charts.css
│ │ │ │ │ ├── charts.html
│ │ │ │ │ ├── charts.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── charts0.png
│ │ │ │ │ ├── charts1.png
│ │ │ │ │ ├── charts2.png
│ │ │ │ │ ├── charts3.png
│ │ │ │ │ ├── charts4.png
│ │ │ │ │ └── charts5.png
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── bface.gif
│ │ │ │ │ ├── cface.gif
│ │ │ │ │ ├── fface.gif
│ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── tface.gif
│ │ │ │ │ ├── wface.gif
│ │ │ │ │ └── yface.gif
│ │ │ │ ├── gmap
│ │ │ │ │ └── gmap.html
│ │ │ │ ├── help
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── insertframe
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link
│ │ │ │ │ └── link.html
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── music
│ │ │ │ │ ├── music.css
│ │ │ │ │ ├── music.html
│ │ │ │ │ └── music.js
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ ├── 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
│ │ │ │ ├── template
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ └── pre4.png
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ ├── webapp
│ │ │ │ │ └── webapp.html
│ │ │ │ └── wordimage
│ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ ├── imageUploader.swf
│ │ │ │ ├── tangram.js
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── jsp
│ │ │ │ ├── config.json
│ │ │ │ └── controller.jsp
│ │ │ ├── lang
│ │ │ │ ├── en
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── addimage.png
│ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ ├── listbackground.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn
│ │ │ │ ├── images
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn.js
│ │ │ ├── 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
│ │ │ │ │ ├── loaderror.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── lock.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── sortable.png
│ │ │ │ │ ├── spacer.gif
│ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ ├── upload.png
│ │ │ │ │ ├── videologo.gif
│ │ │ │ │ ├── word.gif
│ │ │ │ │ └── wordpaste.png
│ │ │ │ └── iframe.css
│ │ │ ├── third-party
│ │ │ │ ├── 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.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ ├── 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
│ │ │ │ ├── webuploader
│ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ ├── webuploader.js
│ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ └── zeroclipboard
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.min.js
│ │ │ ├── ueditor.config.js
│ │ │ └── ueditor.parse.min.js
│ │ └── web
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── base.css
│ │ │ └── doysu.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── images
│ │ │ ├── 1.png
│ │ │ ├── 2.png
│ │ │ ├── avatar.png
│ │ │ ├── logo.png
│ │ │ ├── pic.png
│ │ │ ├── qq.png
│ │ │ ├── qq2.png
│ │ │ ├── xl.png
│ │ │ ├── zhuji.png
│ │ │ └── 未标题-2.png
│ │ └── js
│ │ ├── TouchSlide.1.1.js
│ │ ├── _notes
│ │ │ └── dwsync.xml
│ │ ├── app.js
│ │ ├── browser.js
│ │ ├── doysu.legacy.js
│ │ ├── doysu.min.js
│ │ ├── jquery.SuperSlide.2.1.1.js
│ │ ├── jquery.min.js
│ │ ├── jquery.qqFace.js
│ │ └── polyfill
│ │ ├── rem.min.js
│ │ └── respond.min.js
│ ├── tlds
│ │ ├── c.tld
│ │ ├── fmt.tld
│ │ ├── fn.tld
│ │ └── pager-taglib.tld
│ └── upload
└── 基于web的家校联系平台的设计与实现(源码 文档 PPT 数据库)_JiaXiaoTong.zip
183 directories, 1063 files