├── .gitignore ├── README.md ├── pom.xml ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── src └── main ├── java └── com │ ├── annotation │ ├── APPLoginUser.java │ ├── IgnoreAuth.java │ └── LoginUser.java │ ├── config │ └── MyMetaObjectHandler.java │ ├── controller │ ├── AddressController.java │ ├── CartController.java │ ├── ChatController.java │ ├── CommonController.java │ ├── ConfigController.java │ ├── DefaultuserController.java │ ├── DiscusskechengxinxiController.java │ ├── DiscussxuexiziliaoController.java │ ├── FileController.java │ ├── ForumController.java │ ├── KechengleixingController.java │ ├── KechengxinxiController.java │ ├── OrdersController.java │ ├── StoreupController.java │ ├── UserController.java │ ├── XitonggonggaoController.java │ ├── XueshengController.java │ ├── XuexibijiController.java │ └── XuexiziliaoController.java │ ├── dao │ ├── AddressDao.java │ ├── CartDao.java │ ├── ChatDao.java │ ├── CommonDao.java │ ├── ConfigDao.java │ ├── DefaultuserDao.java │ ├── DiscusskechengxinxiDao.java │ ├── DiscussxuexiziliaoDao.java │ ├── ForumDao.java │ ├── KechengleixingDao.java │ ├── KechengxinxiDao.java │ ├── OrdersDao.java │ ├── StoreupDao.java │ ├── TokenDao.java │ ├── UserDao.java │ ├── XitonggonggaoDao.java │ ├── XueshengDao.java │ ├── XuexibijiDao.java │ └── XuexiziliaoDao.java │ ├── entity │ ├── AddressEntity.java │ ├── CartEntity.java │ ├── ChatEntity.java │ ├── ConfigEntity.java │ ├── DefaultuserEntity.java │ ├── DiscusskechengxinxiEntity.java │ ├── DiscussxuexiziliaoEntity.java │ ├── EIException.java │ ├── ForumEntity.java │ ├── KechengleixingEntity.java │ ├── KechengxinxiEntity.java │ ├── OrdersEntity.java │ ├── StoreupEntity.java │ ├── TokenEntity.java │ ├── UserEntity.java │ ├── XitonggonggaoEntity.java │ ├── XueshengEntity.java │ ├── XuexibijiEntity.java │ ├── XuexiziliaoEntity.java │ ├── model │ │ ├── AddressModel.java │ │ ├── CartModel.java │ │ ├── ChatModel.java │ │ ├── DefaultuserModel.java │ │ ├── DiscusskechengxinxiModel.java │ │ ├── DiscussxuexiziliaoModel.java │ │ ├── ForumModel.java │ │ ├── KechengleixingModel.java │ │ ├── KechengxinxiModel.java │ │ ├── OrdersModel.java │ │ ├── StoreupModel.java │ │ ├── XitonggonggaoModel.java │ │ ├── XueshengModel.java │ │ ├── XuexibijiModel.java │ │ └── XuexiziliaoModel.java │ ├── view │ │ ├── AddressView.java │ │ ├── CartView.java │ │ ├── ChatView.java │ │ ├── DefaultuserView.java │ │ ├── DiscusskechengxinxiView.java │ │ ├── DiscussxuexiziliaoView.java │ │ ├── ForumView.java │ │ ├── KechengleixingView.java │ │ ├── KechengxinxiView.java │ │ ├── OrdersView.java │ │ ├── StoreupView.java │ │ ├── XitonggonggaoView.java │ │ ├── XueshengView.java │ │ ├── XuexibijiView.java │ │ └── XuexiziliaoView.java │ └── vo │ │ ├── AddressVO.java │ │ ├── CartVO.java │ │ ├── ChatVO.java │ │ ├── DefaultuserVO.java │ │ ├── DiscusskechengxinxiVO.java │ │ ├── DiscussxuexiziliaoVO.java │ │ ├── ForumVO.java │ │ ├── KechengleixingVO.java │ │ ├── KechengxinxiVO.java │ │ ├── OrdersVO.java │ │ ├── StoreupVO.java │ │ ├── XitonggonggaoVO.java │ │ ├── XueshengVO.java │ │ ├── XuexibijiVO.java │ │ └── XuexiziliaoVO.java │ ├── interceptor │ └── AuthorizationInterceptor.java │ ├── model │ └── enums │ │ └── TypeEnum.java │ ├── service │ ├── AddressService.java │ ├── CartService.java │ ├── ChatService.java │ ├── CommonService.java │ ├── ConfigService.java │ ├── DefaultuserService.java │ ├── DiscusskechengxinxiService.java │ ├── DiscussxuexiziliaoService.java │ ├── ForumService.java │ ├── KechengleixingService.java │ ├── KechengxinxiService.java │ ├── OrdersService.java │ ├── StoreupService.java │ ├── TokenService.java │ ├── UserService.java │ ├── XitonggonggaoService.java │ ├── XueshengService.java │ ├── XuexibijiService.java │ ├── XuexiziliaoService.java │ └── impl │ │ ├── AddressServiceImpl.java │ │ ├── CartServiceImpl.java │ │ ├── ChatServiceImpl.java │ │ ├── CommonServiceImpl.java │ │ ├── ConfigServiceImpl.java │ │ ├── DefaultuserServiceImpl.java │ │ ├── DiscusskechengxinxiServiceImpl.java │ │ ├── DiscussxuexiziliaoServiceImpl.java │ │ ├── ForumServiceImpl.java │ │ ├── KechengleixingServiceImpl.java │ │ ├── KechengxinxiServiceImpl.java │ │ ├── OrdersServiceImpl.java │ │ ├── StoreupServiceImpl.java │ │ ├── TokenServiceImpl.java │ │ ├── UserServiceImpl.java │ │ ├── XitonggonggaoServiceImpl.java │ │ ├── XueshengServiceImpl.java │ │ ├── XuexibijiServiceImpl.java │ │ └── XuexiziliaoServiceImpl.java │ └── utils │ ├── BaiduUtil.java │ ├── CommonUtil.java │ ├── FileUtil.java │ ├── HttpClientUtils.java │ ├── JQPageInfo.java │ ├── MD5Util.java │ ├── MPUtil.java │ ├── PageUtils.java │ ├── Query.java │ ├── R.java │ ├── SQLFilter.java │ ├── SpringContextUtils.java │ └── ValidatorUtils.java ├── resources ├── config.properties ├── log4j.properties ├── mapper │ ├── AddressDao.xml │ ├── CartDao.xml │ ├── ChatDao.xml │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── DefaultuserDao.xml │ ├── DiscusskechengxinxiDao.xml │ ├── DiscussxuexiziliaoDao.xml │ ├── ForumDao.xml │ ├── KechengleixingDao.xml │ ├── KechengxinxiDao.xml │ ├── OrdersDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ ├── UserDao.xml │ ├── XitonggonggaoDao.xml │ ├── XueshengDao.xml │ ├── XuexibijiDao.xml │ └── XuexiziliaoDao.xml ├── mybatis │ └── mybatis-config.xml └── spring │ ├── spring-mvc.xml │ ├── spring-mybatis.xml │ └── spring.xml └── webapp ├── WEB-INF ├── pages │ ├── common │ │ └── include.jsp │ ├── index.jsp │ └── save.jsp └── web.xml ├── front ├── css │ ├── bootstrap.min.css │ ├── common.css │ ├── style.css │ └── theme.css ├── elementui │ ├── elementui.css │ ├── elementui.js │ └── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff ├── img │ ├── avator.png │ ├── banner.jpg │ ├── jianshe.png │ ├── jiaotong.png │ ├── line.jpg │ ├── nongye.png │ ├── now.png │ ├── seckilling.jpg │ ├── select.png │ ├── unselect.png │ ├── weixin.png │ ├── yuan.png │ ├── zhifubao.png │ └── zhongguo.png ├── index.jsp ├── js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── config.js │ ├── jquery.js │ ├── utils.js │ ├── validate.js │ └── vue.js ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js ├── modules │ ├── config.js │ ├── http │ │ └── http.js │ ├── layarea │ │ └── layarea.js │ └── tinymce │ │ ├── index.html │ │ ├── tinymce.js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ ├── readme.md │ │ └── zh_CN.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── indent2em │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ │ └── oxide │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ ├── themes │ │ ├── mobile │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── silver │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── muban.jpg ├── pages │ ├── address │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ ├── register.jsp │ │ └── update.jsp │ ├── cart │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── chat │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── chat.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── config │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── cuotiben │ │ └── list.jsp │ ├── defaultuser │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── discusskechengxinxi │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── discussxuexiziliao │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── exampaper │ │ ├── exam.jsp │ │ └── list.jsp │ ├── examrecord │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── wrong.jsp │ ├── forum │ │ ├── add-comment.jsp │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list-my.jsp │ │ ├── list.jsp │ │ ├── register.jsp │ │ └── update.jsp │ ├── home │ │ └── home.jsp │ ├── kechengleixing │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── kechengxinxi │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── login │ │ └── login.jsp │ ├── messages │ │ └── list.jsp │ ├── news │ │ ├── detail.jsp │ │ └── list.jsp │ ├── order │ │ ├── confirm.jsp │ │ └── list.jsp │ ├── orders │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── recharge │ │ └── recharge.jsp │ ├── storeup │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── users │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── xitonggonggao │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── xuesheng │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── xuexibiji │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp │ └── xuexiziliao │ │ ├── add.jsp │ │ ├── center.jsp │ │ ├── detail.jsp │ │ ├── list.jsp │ │ └── register.jsp └── xznstatic │ ├── SourceHanSansCN-Normal │ └── SourceHanSansCN-Normal.woff2 │ ├── css │ ├── animate.min.css │ ├── color.css │ ├── fancybox.css │ ├── global.css │ ├── iconfont.css │ ├── login.reset.min.css │ ├── login.style.css │ ├── page.css │ ├── swiper.css │ └── uzlist.css │ └── js │ ├── common.js │ ├── fancybox.js │ ├── jquery.min.js │ ├── superslide.2.1.1.min.js │ ├── swiper.animate1.0.2.min.js │ ├── swiper.min.js │ └── wow.min.js ├── index.jsp ├── index.jsp.bak ├── jsp ├── login.jsp ├── modules │ ├── address │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── cart │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── center │ │ ├── info.jsp │ │ └── updatePassword.jsp │ ├── chat │ │ ├── add-or-update.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── config │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── defaultuser │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── discusskechengxinxi │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── discussxuexiziliao │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── forum │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── kechengleixing │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── kechengxinxi │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── orders │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── storeup │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── users │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── xitonggonggao │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ ├── xuesheng │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ ├── list.jsp │ │ └── register.jsp │ ├── xuexibiji │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp │ └── xuexiziliao │ │ ├── add-or-update.jsp │ │ ├── graph.jsp │ │ ├── info.jsp │ │ └── list.jsp ├── pay.jsp ├── static │ ├── crossBtnControl.js │ ├── foot.jsp │ ├── getRoleButtons.js │ ├── head.jsp │ ├── logout.jsp │ ├── myInfo.js │ ├── setMenu.js │ ├── toLogin.jsp │ ├── topNav.jsp │ └── topNav.jsp.bak └── utils │ ├── baseUrl.jsp │ └── menu.jsp ├── muban.jpg ├── muban.jpg.bak ├── muban2.jpg ├── resources ├── My97DatePicker │ ├── WdatePicker.js │ ├── calendar.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ └── 开发包 │ │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ │ ├── readme.txt │ │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── assets2 │ ├── css │ │ ├── awwwards.css │ │ ├── bootstrap.css │ │ ├── dripicon.css │ │ ├── entypo-icon.css │ │ ├── extra-pages.css │ │ ├── font-awesome.css │ │ ├── icons-style.css │ │ ├── loader-style.css │ │ ├── mail.css │ │ ├── maki-icons.css │ │ ├── media.css │ │ ├── open-sans.css │ │ ├── profile.css │ │ ├── ribbons │ │ │ ├── awwwards_honorable_black_left.png │ │ │ ├── awwwards_honorable_black_right.png │ │ │ ├── awwwards_honorable_green_left.png │ │ │ ├── awwwards_honorable_green_right.png │ │ │ ├── awwwards_honorable_white_left.png │ │ │ └── awwwards_honorable_white_right.png │ │ ├── signin.css │ │ ├── social.css │ │ ├── style.css │ │ └── weather-icons.min.css │ ├── font │ │ ├── BebasNeue-webfont.eot │ │ ├── BebasNeue-webfont.svg │ │ ├── BebasNeue-webfont.ttf │ │ ├── BebasNeue-webfont.woff │ │ ├── dripicons.eot │ │ ├── dripicons.svg │ │ ├── dripicons.ttf │ │ ├── dripicons.woff │ │ ├── entypo.eot │ │ ├── entypo.ttf │ │ ├── entypo.woff │ │ ├── maki.eot │ │ ├── maki.ttf │ │ ├── maki.woff │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ └── weathericons-regular-webfont.woff │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular (1).eot │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── open-sans-light.woff │ ├── ico │ │ └── minus.png │ ├── img │ │ ├── bg.jpg │ │ ├── bg10.jpg │ │ ├── bg11.jpg │ │ ├── bg12.jpg │ │ ├── bg13.jpg │ │ ├── bg2.jpg │ │ ├── bg3.jpg │ │ ├── bg3.png │ │ ├── bg4.jpg │ │ ├── bg5.jpg │ │ ├── bg8.jpg │ │ ├── bg9.jpg │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── mastercard.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── giftly.png │ │ ├── insta-pic.jpg │ │ ├── insta-pic2.jpg │ │ ├── minus.png │ │ ├── people-q-c-350-250-5.jpg │ │ ├── people-q-c-350-250-7.jpg │ │ ├── people-q-c-350-250-8.jpg │ │ ├── plus.png │ │ ├── search-dark.png │ │ ├── search-white.png │ │ ├── small-bg.jpg │ │ ├── small-bg10.jpg │ │ ├── small-bg11.jpg │ │ ├── small-bg12.jpg │ │ ├── small-bg13.jpg │ │ ├── small-bg2.jpg │ │ ├── small-bg5.jpg │ │ ├── small-bg8.jpg │ │ └── small-bg9.jpg │ └── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── button │ │ ├── ladda │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ └── progressbutton.jquery.js │ │ ├── calendar │ │ ├── app.js │ │ ├── calendar.js │ │ ├── css │ │ │ └── calendar.css │ │ ├── img │ │ │ └── tick.png │ │ ├── jstimezonedetect │ │ │ └── jstz.min.js │ │ ├── language │ │ │ ├── de-DE.js │ │ │ ├── el-GR.js │ │ │ ├── es-ES.js │ │ │ ├── es-MX.js │ │ │ ├── fr-FR.js │ │ │ ├── it-IT.js │ │ │ ├── pl-PL.js │ │ │ ├── pt-BR.js │ │ │ ├── ru-RU.js │ │ │ └── sv-SE.js │ │ └── underscore │ │ │ └── underscore-min.js │ │ ├── chart │ │ ├── barChart.js │ │ ├── chart-float-stacking.js │ │ ├── chart.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot2.js │ │ ├── jquery.sparkline.js │ │ ├── lineChart.js │ │ ├── polarChart.js │ │ ├── radarChart.js │ │ └── realTime.js │ │ ├── clock │ │ ├── date.js │ │ └── jquery.clock.js │ │ ├── colorPicker │ │ ├── bootstrap-colorpicker.css │ │ ├── bootstrap-colorpicker.min.js │ │ └── img │ │ │ └── bootstrap-colorpicker │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── countdown │ │ └── jquery.countdown.js │ │ ├── custom │ │ └── scriptbreaker-multiple-accordion-1.js │ │ ├── dataTable │ │ ├── css │ │ │ └── datatables.responsive.css │ │ ├── img │ │ │ ├── minus.png │ │ │ └── plus.png │ │ └── lib │ │ │ └── jquery.dataTables │ │ │ ├── css │ │ │ └── DT_bootstrap.css │ │ │ └── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── datepicker │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-datetimepicker.js │ │ ├── clockface.css │ │ ├── clockface.js │ │ └── datepicker.css │ │ ├── dropZone │ │ ├── downloads │ │ │ ├── css │ │ │ │ └── dropzone.css │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ └── lib │ │ │ └── dropzone.js │ │ ├── flatvideo │ │ └── jquery.fitvids.js │ │ ├── footable │ │ ├── css │ │ │ ├── fonts │ │ │ │ ├── footable (1).eot │ │ │ │ ├── footable.eot │ │ │ │ ├── footable.svg │ │ │ │ ├── footable.ttf │ │ │ │ └── footable.woff │ │ │ ├── footable-demos.css │ │ │ ├── footable.core.css │ │ │ └── footable.standalone.css │ │ └── js │ │ │ ├── footable.filter.js │ │ │ ├── footable.js │ │ │ ├── footable.paginate.js │ │ │ └── footable.sort.js │ │ ├── gage │ │ ├── jquery.easy-pie-chart.css │ │ ├── jquery.easypiechart.min.js │ │ ├── justgage.js │ │ └── raphael.2.1.0.min.js │ │ ├── iCheck │ │ ├── flat │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── all.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── jquery.icheck.js │ │ └── line │ │ │ ├── all.css │ │ │ ├── line.png │ │ │ └── line@2x.png │ │ ├── idealform │ │ ├── css │ │ │ └── jquery.idealforms.css │ │ ├── img │ │ │ ├── datepicker.png │ │ │ ├── loading.gif │ │ │ ├── radiocheck.png │ │ │ └── validation.png │ │ └── jquery.idealforms.js │ │ ├── inputMask │ │ └── jquery.maskedinput.js │ │ ├── jhere-custom.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── load.js │ │ ├── main.js │ │ ├── map │ │ └── gmap3.js │ │ ├── nano │ │ └── jquery.nanoscroller.js │ │ ├── newsticker │ │ └── jquery.newsTicker.js │ │ ├── pace │ │ ├── pace.js │ │ └── themes │ │ │ └── pace-theme-center-simple.css │ │ ├── pnotify │ │ ├── jquery.pnotify.default.css │ │ └── jquery.pnotify.min.js │ │ ├── preloader.js │ │ ├── progress-bar │ │ ├── number-pb.css │ │ ├── number-pb.js │ │ ├── progress-app.js │ │ └── src │ │ │ └── jquery.velocity.min.js │ │ ├── search │ │ └── jquery.quicksearch.js │ │ ├── skin-select │ │ ├── jquery.cookie.js │ │ ├── skin-select.css │ │ └── skin-select.js │ │ ├── slidebars │ │ ├── slidebars.css │ │ └── slidebars.min.js │ │ ├── speed │ │ └── canvasgauge-coustom.js │ │ ├── stackable │ │ ├── responsive-table.css │ │ ├── stacktable.css │ │ └── stacktable.js │ │ ├── switch │ │ ├── bootstrap-switch.css │ │ └── bootstrap-switch.js │ │ ├── tabs │ │ └── acc-wizard.min.css │ │ ├── tag │ │ ├── jquery.tagsinput.css │ │ └── jquery.tagsinput.js │ │ ├── textEditor │ │ ├── editor.css │ │ ├── lib │ │ │ └── js │ │ │ │ └── wysihtml5-0.3.0.js │ │ ├── parser_rules │ │ │ └── advanced.js │ │ ├── sceditor │ │ │ └── minified │ │ │ │ ├── jquery.sceditor.bbcode.min.js │ │ │ │ └── themes │ │ │ │ ├── famfamfam.png │ │ │ │ └── square.min.css │ │ └── src │ │ │ ├── bootstrap-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.js │ │ ├── timepicker │ │ ├── bootstrap-timepicker.css │ │ └── bootstrap-timepicker.js │ │ ├── tip │ │ ├── jquery.tooltipster.js │ │ └── tooltipster.css │ │ ├── toggle_close.js │ │ ├── tree │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── file.gif │ │ │ ├── folder-closed.gif │ │ │ ├── folder.gif │ │ │ ├── treeview-black-line.gif │ │ │ ├── treeview-black.gif │ │ │ ├── treeview-default-line.gif │ │ │ ├── treeview-default.gif │ │ │ ├── treeview-famfamfam-line.gif │ │ │ ├── treeview-famfamfam.gif │ │ │ ├── treeview-gray-line.gif │ │ │ ├── treeview-gray.gif │ │ │ ├── treeview-red-line.gif │ │ │ └── treeview-red.gif │ │ ├── jquery.treeview.css │ │ ├── jquery.treeview.js │ │ ├── lib │ │ │ └── jquery.cookie.js │ │ ├── tabelizer │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.tabelizer.js │ │ │ └── tabelizer.min.css │ │ └── treetable │ │ │ ├── javascripts │ │ │ └── src │ │ │ │ └── jquery.treetable.js │ │ │ ├── stylesheets │ │ │ ├── jquery.treetable.css │ │ │ └── jquery.treetable.theme.default.css │ │ │ └── vendor │ │ │ └── jquery-ui.js │ │ ├── upload │ │ ├── demos │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ ├── images │ │ │ │ │ └── dark-bg.png │ │ │ │ └── uploader.css │ │ │ └── js │ │ │ │ └── demo.min.js │ │ └── src │ │ │ └── dmuploader.min.js │ │ ├── validate │ │ ├── img │ │ │ └── valid.png │ │ ├── jquery.validate.min.js │ │ └── validate.css │ │ └── wizard │ │ ├── build │ │ └── jquery.steps.js │ │ ├── css │ │ └── jquery.steps.css │ │ ├── jquery.stepy.css │ │ ├── jquery.stepy.js │ │ └── lib │ │ ├── jquery.cookie-1.3.1.js │ │ └── modernizr-2.6.2.min.js ├── charts │ ├── css │ │ └── morris.css │ └── js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.time.min.js │ │ ├── morris.min.js │ │ └── raphael-min.js ├── css │ ├── animate.css │ ├── blue.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── green.css │ ├── jquery-jvectormap.css │ ├── red.css │ ├── responsive.css │ ├── styles.css │ ├── styles.css.bak │ ├── themify-icons.css │ ├── violet.css │ └── yellow.css ├── datatable │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ └── jquery.dataTables.min.js ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── themify.eot │ ├── themify.svg │ ├── themify.ttf │ └── themify.woff ├── images │ ├── bank │ │ ├── 中国农业银行.png │ │ ├── 中国建设银行.png │ │ ├── 中国邮政储蓄银行.png │ │ ├── 中国银行.png │ │ ├── 交通银行.png │ │ ├── 微信支付.png │ │ ├── 招商银行.png │ │ ├── 支付宝支付.png │ │ └── 支付平台-银联.png │ ├── card-1.jpeg │ ├── card-1.jpeg.jpg │ ├── card-2.jpeg │ ├── card-2.jpeg.jpg │ ├── doctor.jpeg.jpg │ ├── fav.png │ ├── logo-dark.png │ ├── slide1.jpg │ ├── slide2.jpg │ ├── slide3.jpg │ ├── user1.png │ ├── user2.png │ └── user3.png ├── js │ ├── FileSaver.js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── custom-datatables.js │ ├── custom-flot.js │ ├── custom-gmap.js │ ├── custom-morris.js │ ├── custom-vector.js │ ├── custom.js │ ├── datetimepicker │ │ ├── bootstrap-datetimepicker.min.css │ │ └── bootstrap-datetimepicker.min.js │ ├── echarts.min.js │ ├── excel │ │ └── excel-gen.js │ ├── jquery-3.2.1.min.js │ ├── jquery-jvectormap-world-mill.js │ ├── jquery-jvectormap.min.js │ ├── jquery.fileupload.js │ ├── jquery.form.js │ ├── jquery.min.js │ ├── jquery.ui.widget.js │ ├── jquery.vmap.india.js │ ├── jquery.vmap.usa.js │ ├── jszip.min.js │ ├── macarons.js │ ├── modernizr.min.js │ ├── popper.min.js │ ├── validate │ │ ├── card.js │ │ ├── jquery.validate.min.js │ │ └── messages_zh.js │ └── vue.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 │ ├── 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 │ ├── xss.min.js │ └── zeroclipboard │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ └── ZeroClipboard.swf │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js └── upload ├── 1615949269129.jpg ├── 1615949275330.jpg ├── 1615949321066.jpg ├── 1615949337487.jpg ├── 1615949373539.jpg ├── 1615949379202.doc ├── 1615949386130.mp4 ├── 1615949481494.jpg ├── kechengxinxi_tupian1.jpg ├── kechengxinxi_tupian2.jpg ├── kechengxinxi_tupian3.jpg ├── kechengxinxi_tupian4.jpg ├── kechengxinxi_tupian5.jpg ├── kechengxinxi_tupian6.jpg ├── picture1.jpg ├── picture2.jpg ├── picture3.jpg ├── test.txt ├── xitonggonggao_tupian1.jpg ├── xitonggonggao_tupian2.jpg ├── xitonggonggao_tupian3.jpg ├── xitonggonggao_tupian4.jpg ├── xitonggonggao_tupian5.jpg ├── xitonggonggao_tupian6.jpg ├── xuesheng_touxiang1.jpg ├── xuesheng_touxiang2.jpg ├── xuesheng_touxiang3.jpg ├── xuesheng_touxiang4.jpg ├── xuesheng_touxiang5.jpg ├── xuesheng_touxiang6.jpg ├── xuexiziliao_tupian1.jpg ├── xuexiziliao_tupian2.jpg ├── xuexiziliao_tupian3.jpg ├── xuexiziliao_tupian4.jpg ├── xuexiziliao_tupian5.jpg └── xuexiziliao_tupian6.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | ###################################################################### 2 | # Build Tools 3 | 4 | .gradle 5 | /build/ 6 | !gradle/wrapper/gradle-wrapper.jar 7 | 8 | target/ 9 | !.mvn/wrapper/maven-wrapper.jar 10 | 11 | out/ 12 | 13 | ###################################################################### 14 | # IDE 15 | 16 | ### STS ### 17 | .apt_generated 18 | .classpath 19 | .factorypath 20 | .project 21 | .settings 22 | .springBeans 23 | 24 | ### IntelliJ IDEA ### 25 | .idea 26 | *.iws 27 | *.iml 28 | *.ipr 29 | 30 | ### NetBeans ### 31 | nbproject/private/ 32 | build/* 33 | nbbuild/ 34 | dist/ 35 | nbdist/ 36 | .nb-gradle/ 37 | 38 | ###################################################################### 39 | # Others 40 | *.log 41 | *.xml.versionsBackup 42 | *.swp 43 | 44 | !*/build/*.java 45 | !*/build/*.html 46 | !*/build/*.xml 47 | -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/screenshot/9.png -------------------------------------------------------------------------------- /src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface APPLoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 忽略Token验证 7 | */ 8 | @Target(ElementType.METHOD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | public @interface IgnoreAuth { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface LoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/config/MyMetaObjectHandler.java: -------------------------------------------------------------------------------- 1 | package com.config; 2 | 3 | import java.util.Date; 4 | 5 | import org.apache.ibatis.reflection.MetaObject; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | 9 | /** 10 | * 自定义填充处理器 11 | */ 12 | public class MyMetaObjectHandler extends MetaObjectHandler { 13 | 14 | @Override 15 | public void insertFill(MetaObject metaObject) { 16 | this.setFieldValByName("ctime", new Date(), metaObject); 17 | } 18 | 19 | @Override 20 | public boolean openUpdateFill() { 21 | return false; 22 | } 23 | 24 | @Override 25 | public void updateFill(MetaObject metaObject) { 26 | // 关闭更新填充、这里不执行 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | /** 8 | * 通用接口 9 | */ 10 | public interface CommonDao{ 11 | List getOption(Map params); 12 | 13 | Map getFollowByOption(Map params); 14 | 15 | List getFollowByOption2(Map params); 16 | 17 | void sh(Map params); 18 | 19 | int remindCount(Map params); 20 | 21 | Map selectCal(Map params); 22 | 23 | List> selectGroup(Map params); 24 | 25 | List> selectValue(Map params); 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ConfigDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import com.entity.ConfigEntity; 6 | 7 | /** 8 | * 配置 9 | */ 10 | public interface ConfigDao extends BaseMapper { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.TokenEntity; 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.UserEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UserDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/KechengleixingModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.KechengleixingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 课程类型 14 | * 接收传参的实体类 15 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 16 | * 取自ModelAndView 的model名称 17 | * @author 18 | * @email 19 | * @date 2021-03-17 10:45:07 20 | */ 21 | public class KechengleixingModel implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/CartView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.CartEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 购物车表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-03-17 10:45:07 19 | */ 20 | @TableName("cart") 21 | public class CartView extends CartEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public CartView(){ 25 | } 26 | 27 | public CartView(CartEntity cartEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, cartEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChatView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChatEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 客服聊天表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-03-17 10:45:07 19 | */ 20 | @TableName("chat") 21 | public class ChatView extends ChatEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChatView(){ 25 | } 26 | 27 | public ChatView(ChatEntity chatEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chatEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ForumView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ForumEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 论坛表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-03-17 10:45:07 19 | */ 20 | @TableName("forum") 21 | public class ForumView extends ForumEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ForumView(){ 25 | } 26 | 27 | public ForumView(ForumEntity forumEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, forumEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/KechengleixingVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.KechengleixingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 课程类型 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2021-03-17 10:45:07 20 | */ 21 | public class KechengleixingVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/model/enums/TypeEnum.java: -------------------------------------------------------------------------------- 1 | package com.model.enums; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.enums.IEnum; 6 | 7 | /** 8 | * 必须现在 IEnum 配置 该包扫描自动注入,查看文件 spring-mybatis.xml 参数 typeEnumsPackage 9 | */ 10 | public enum TypeEnum implements IEnum { 11 | DISABLED(0, "禁用"), 12 | NORMAL(1, "正常"); 13 | 14 | private final int value; 15 | private final String desc; 16 | 17 | TypeEnum(final int value, final String desc) { 18 | this.value = value; 19 | this.desc = desc; 20 | } 21 | 22 | @Override 23 | public Serializable getValue() { 24 | return this.value; 25 | } 26 | 27 | // Jackson 注解为 JsonValue 返回中文 json 描述 28 | public String getDesc() { 29 | return this.desc; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface CommonService { 7 | List getOption(Map params); 8 | 9 | Map getFollowByOption(Map params); 10 | 11 | void sh(Map params); 12 | 13 | int remindCount(Map params); 14 | 15 | Map selectCal(Map params); 16 | 17 | List> selectGroup(Map params); 18 | 19 | List> selectValue(Map params); 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.Map; 5 | 6 | import com.baomidou.mybatisplus.service.IService; 7 | import com.entity.ConfigEntity; 8 | import com.utils.PageUtils; 9 | 10 | 11 | /** 12 | * 系统用户 13 | */ 14 | public interface ConfigService extends IService { 15 | PageUtils queryPage(Map params); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/service/TokenService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.service.IService; 9 | import com.entity.TokenEntity; 10 | import com.utils.PageUtils; 11 | 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenService extends IService { 17 | PageUtils queryPage(Map params); 18 | 19 | List selectListView(Wrapper wrapper); 20 | 21 | PageUtils queryPage(Map params,Wrapper wrapper); 22 | 23 | String generateToken(Long userid,String username,String tableName, String role); 24 | 25 | TokenEntity getTokenEntity(String token); 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.service.IService; 11 | import com.entity.UserEntity; 12 | import com.utils.PageUtils; 13 | 14 | 15 | /** 16 | * 系统用户 17 | */ 18 | public interface UserService extends IService { 19 | PageUtils queryPage(Map params); 20 | 21 | List selectListView(Wrapper wrapper); 22 | 23 | PageUtils queryPage(Map params,Wrapper wrapper); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/utils/CommonUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.Random; 4 | 5 | public class CommonUtil { 6 | /** 7 | * 获取随机字符串 8 | * 9 | * @param num 10 | * @return 11 | */ 12 | public static String getRandomString(Integer num) { 13 | String base = "abcdefghijklmnopqrstuvwxyz0123456789"; 14 | Random random = new Random(); 15 | StringBuffer sb = new StringBuffer(); 16 | for (int i = 0; i < num; i++) { 17 | int number = random.nextInt(base.length()); 18 | sb.append(base.charAt(number)); 19 | } 20 | return sb.toString(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/utils/FileUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.ByteArrayOutputStream; 4 | import java.io.File; 5 | import java.io.FileInputStream; 6 | import java.io.IOException; 7 | import java.io.InputStream; 8 | 9 | /** 10 | * 类说明 : 11 | */ 12 | 13 | public class FileUtil { 14 | public static byte[] FileToByte(File file) throws IOException { 15 | // 将数据转为流 16 | @SuppressWarnings("resource") 17 | InputStream content = new FileInputStream(file); 18 | ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); 19 | byte[] buff = new byte[100]; 20 | int rc = 0; 21 | while ((rc = content.read(buff, 0, 100)) > 0) { 22 | swapStream.write(buff, 0, rc); 23 | } 24 | // 获得二进制数组 25 | return swapStream.toByteArray(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/utils/MD5Util.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import cn.hutool.crypto.digest.DigestUtil; 4 | 5 | public class MD5Util { 6 | 7 | /** 8 | * @param text明文 9 | * @param key密钥 10 | * @return 密文 11 | */ 12 | // 带秘钥加密 13 | public static String md5(String text) { 14 | // 加密后的字符串 15 | String md5str = DigestUtil.md5Hex(text); 16 | return md5str; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | validationQuery=SELECT 1 2 | 3 | jdbc_url=jdbc:mysql://127.0.0.1:3306/no222_jspm3t9ai?useUnicode=true&characterEncoding=UTF-8&tinyInt1isBit=false 4 | jdbc_username=root 5 | jdbc_password=123456 6 | 7 | #jdbc_url=jdbc:sqlserver://127.0.0.1:1433;DatabaseName=jspm3t9ai 8 | #jdbc_username=sa 9 | #jdbc_password=123456 10 | 11 | -------------------------------------------------------------------------------- /src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/mapper/UserDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/spring/spring.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/common/include.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/front/css/common.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 工具类css 3 | */ 4 | /* 嵌套文字横线 */ 5 | .line-container { 6 | width: 100%; 7 | background: url(../img/line.jpg) left center repeat-x; 8 | text-align: center; 9 | } 10 | .line { 11 | display: inline-block; 12 | padding: 0 10px; 13 | text-align: center; 14 | font-family: 'Microsoft Yahei'; 15 | font-size: 24px; 16 | background: #fff; 17 | color: #000000; 18 | line-height: 1.3; 19 | } 20 | /** 21 | * 工具类css end 22 | */ -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/webapp/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/avator.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/now.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/select.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/webapp/front/js/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 页面跳转 3 | * @param {Object} url 4 | */ 5 | function jump(url) { 6 | if (!url || url == 'null' || url == null) { 7 | window.location.href = './index.html'; 8 | } 9 | // 路径访问设置 10 | localStorage.setItem('iframeUrl', url.replace('../', './pages/')); 11 | window.location.href = url; 12 | } 13 | 14 | /** 15 | * 返回 16 | */ 17 | function back(num = -1) { 18 | window.history.go(num) 19 | } 20 | 21 | /** 22 | * 生成订单 23 | */ 24 | function genTradeNo() { 25 | var date = new Date(); 26 | var tradeNo = date.getFullYear().toString() + (date.getMonth() + 1).toString() + 27 | date.getDate().toString() + date.getHours().toString() + date.getMinutes().toString() + 28 | date.getSeconds().toString() + date.getMilliseconds().toString(); 29 | for (var i = 0; i < 5; i++) //5位随机数,用以加在时间戳后面。 30 | { 31 | tradeNo += Math.floor(Math.random() * 10); 32 | } 33 | return tradeNo; 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/webapp/front/modules/config.js: -------------------------------------------------------------------------------- 1 | window.rootPath = (function (src) { 2 | src = document.scripts[document.scripts.length - 1].src; 3 | console.log(src.substring(0, src.lastIndexOf("/") + 1)) 4 | return src.substring(0, src.lastIndexOf("/") + 1); 5 | })(); 6 | 7 | layui.config({ 8 | base: rootPath, 9 | version: true 10 | }).extend({ 11 | http: 'http/http', // 网络请求接口扩展 12 | layarea: 'layarea/layarea' ,// 省市区联动选择器 13 | tinymce: 'tinymce/tinymce' // 富文本编辑器 14 | }); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('colorpicker', function () { 16 | domGlobals.console.warn('Color picker plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('contextmenu', function () { 16 | domGlobals.console.warn('Context menu plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(n){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager");!function e(){o.add("contextmenu",function(){n.console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"
")})},t=function(n){n.ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}}),n.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}})};!function e(){n.add("hr",function(n){o(n),t(n)})}()}(); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('textcolor', function () { 16 | domGlobals.console.warn('Text color plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("textcolor",function(){o.console.warn("Text color plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/muban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/muban.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/SourceHanSansCN-Normal/SourceHanSansCN-Normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/front/xznstatic/SourceHanSansCN-Normal/SourceHanSansCN-Normal.woff2 -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/css/login.reset.min.css: -------------------------------------------------------------------------------- 1 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0} -------------------------------------------------------------------------------- /src/main/webapp/jsp/static/crossBtnControl.js: -------------------------------------------------------------------------------- 1 | function crossBtnControl(btnName){ 2 | var role = window.sessionStorage.getItem('role'); 3 | 4 | for(var i=0;i 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/webapp/jsp/static/logout.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | function logout() { 4 | $.ajax({ 5 | type: "GET", 6 | url: baseUrl + "users/logout", 7 | beforeSend: function(xhr) { 8 | xhr.setRequestHeader("token", window.sessionStorage.getItem('token')); 9 | }, 10 | success: function(res){ 11 | if(res.code == 0 || res.code == 401){ 12 | window.sessionStorage.clear(); 13 | window.location.href="${pageContext.request.contextPath}/jsp/login.jsp" 14 | }else{ 15 | alert(res.msg); 16 | } 17 | }, 18 | }); 19 | } 20 | function toFront() { 21 | window.location.assign(baseUrl+'front'); 22 | } -------------------------------------------------------------------------------- /src/main/webapp/jsp/static/myInfo.js: -------------------------------------------------------------------------------- 1 | //设置用户个人中心入口 2 | if(window.sessionStorage.getItem('role') != '管理员'){ 3 | var accountTableName = window.sessionStorage.getItem('accountTableName'); 4 | $('#myinfo').attr('href','#'); 5 | $('#myinfo').on('click', function(e) { 6 | e.preventDefault(); 7 | http(accountTableName+'/session','GET',{},(res)=>{ 8 | if(res.code == 0){ 9 | window.sessionStorage.setItem('id',res.data.id); 10 | window.sessionStorage.setItem('onlyme',true); 11 | window.location.href = baseUrl + 'jsp/modules/' + accountTableName + '/add-or-update.jsp'; 12 | } 13 | }); 14 | }); 15 | } -------------------------------------------------------------------------------- /src/main/webapp/jsp/static/toLogin.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | alert('token过期或未登录!') 5 | window.location.href="${pageContext.request.contextPath}/jsp/login.jsp" -------------------------------------------------------------------------------- /src/main/webapp/muban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/muban.jpg -------------------------------------------------------------------------------- /src/main/webapp/muban.jpg.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/muban.jpg.bak -------------------------------------------------------------------------------- /src/main/webapp/muban2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/muban2.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | .Wdate::-ms-clear{display:none;} 7 | 8 | .WdateFmtErr{ 9 | font-weight:bold; 10 | color:red; 11 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/lang/zh-tw.js -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/readme.txt -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | .Wdate::-ms-clear{display:none;} 7 | 8 | .WdateFmtErr{ 9 | font-weight:bold; 10 | color:red; 11 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/datePicker.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/default/datepicker.css -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/default/img.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/My97DatePicker/开发包/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/icons-style.css: -------------------------------------------------------------------------------- 1 | .entypo li, .entypo-tooltip li { 2 | float: left; 3 | height: 10%; 4 | padding: 0.5em; 5 | position: relative; 6 | text-align: center; 7 | -webkit-transition: all 0.5s ease; 8 | -moz-transition: all 0.5s ease; 9 | -o-transition: all 0.5s ease; 10 | -ms-transition: all 0.5s ease; 11 | transition: all 0.5s ease; 12 | width: 10%; 13 | list-style: none; 14 | font-size: 20px; 15 | color: #363E49; 16 | } 17 | .entypo li:hover, .entypo-tooltip li:hover{ 18 | color:#000; 19 | cursor: pointer; 20 | 21 | } 22 | 23 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/loader-style.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @import "../js/skin-select/skin-select.css"; 5 | 6 | @import "font-awesome.css"; 7 | @import "entypo-icon.css"; 8 | @import "maki-icons.css"; 9 | @import "weather-icons.min.css"; 10 | @import "dripicon.css"; 11 | @import "open-sans.css"; 12 | @import "awwwards.css"; 13 | 14 | 15 | 16 | 17 | 18 | @import "../js/pnotify/jquery.pnotify.default.css"; 19 | @import "../js/tip/tooltipster.css"; 20 | 21 | 22 | 23 | 24 | 25 | @import "../js/pace/themes/pace-theme-center-simple.css"; 26 | @import "../js/slidebars/slidebars.css"; 27 | @import "../js/gage/jquery.easy-pie-chart.css"; 28 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/open-sans.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Open Sans'; 3 | font-style: normal; 4 | font-weight: 300; 5 | src: local('Open Sans Light'), local('OpenSans-Light'), url(../fonts/open-sans-light.woff) format('woff'); 6 | } 7 | @font-face { 8 | font-family: 'Open Sans'; 9 | font-style: normal; 10 | font-weight: 400; 11 | src: local('Open Sans'), local('OpenSans'), url(../fonts/open-sans-normal.woff) format('woff'); 12 | } 13 | @font-face { 14 | font-family: 'Open Sans'; 15 | font-style: normal; 16 | font-weight: 700; 17 | src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/open-sans-bold.woff) format('woff'); 18 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_black_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_black_left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_black_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_black_right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_green_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_green_left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_green_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_green_right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_white_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_white_left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_white_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/css/ribbons/awwwards_honorable_white_right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/BebasNeue-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/BebasNeue-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/BebasNeue-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/BebasNeue-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/BebasNeue-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/BebasNeue-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/dripicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/dripicons.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/dripicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/dripicons.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/dripicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/dripicons.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/entypo.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/entypo.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/entypo.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/maki.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/maki.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/maki.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/maki.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/maki.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/maki.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/font/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/font/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular (1).eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular (1).eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/fonts/open-sans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/fonts/open-sans-light.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/ico/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/ico/minus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg10.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg11.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg12.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg13.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg2.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg3.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg3.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg4.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg5.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg8.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/bg9.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/credit/american-express.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/credit/mastercard.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/credit/paypal2.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/credit/visa.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/giftly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/giftly.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/insta-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/insta-pic.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/insta-pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/insta-pic2.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/minus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/people-q-c-350-250-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/people-q-c-350-250-5.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/people-q-c-350-250-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/people-q-c-350-250-7.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/people-q-c-350-250-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/people-q-c-350-250-8.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/plus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/search-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/search-dark.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/search-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg10.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg11.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg12.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg13.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg2.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg5.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg8.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/img/small-bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/img/small-bg9.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/calendar/img/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/calendar/img/tick.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/chart/barChart.js: -------------------------------------------------------------------------------- 1 | var barChartData = { 2 | 3 | labels : ["January","February","March","April","May","June","July"], 4 | datasets : [ 5 | { 6 | fillColor : "rgba(106, 218, 228, 0.8)", 7 | data : [65,59,90,81,56,55,40] 8 | }, 9 | { 10 | fillColor : "rgba(52, 152, 219, 0.8)", 11 | data : [28,48,40,19,96,27,100] 12 | } 13 | ] 14 | 15 | 16 | } 17 | 18 | var myLine = new Chart(document.getElementById("canvas1").getContext("2d")).Bar(barChartData,{ 19 | scaleShowLabels : false, 20 | pointLabelFontSize : 24 21 | }); 22 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/chart/polarChart.js: -------------------------------------------------------------------------------- 1 | var chartData = [ 2 | { 3 | value : Math.random(), 4 | color: "#6ADAE4" 5 | }, 6 | { 7 | value : Math.random(), 8 | color: "#F89406" 9 | }, 10 | { 11 | value : Math.random(), 12 | color: "#FF0064" 13 | }, 14 | { 15 | value : Math.random(), 16 | color: "#3498DB" 17 | }, 18 | { 19 | value : Math.random(), 20 | color: "#1ABC9C" 21 | }, 22 | { 23 | value : Math.random(), 24 | color: "#E74C3C" 25 | } 26 | ]; 27 | var myPolarArea = new Chart(document.getElementById("canvas3").getContext("2d")).PolarArea(chartData); -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/chart/realTime.js: -------------------------------------------------------------------------------- 1 | $(function(){function n(){if(e.length>0)e=e.slice(1);while(e.length0?e[e.length-1]:50;var r=n+Math.random()*10-5;if(r<0)r=0;if(r>100)r=100;e.push(r)}var i=[];for(var s=0;s2e3)r=2e3;$(this).val(""+r)}});var i={series:{shadowSize:0},yaxis:{min:0,max:100},xaxis:{min:0,max:100}};var s=$.plot($("#placeholder"),[n()],i);o()}) -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/clock/date.js: -------------------------------------------------------------------------------- 1 | var monthNames = ["January", "February", "March", "April", "May", "June", 2 | "July", "August", "September", "October", "November", "December" 3 | ]; 4 | var dayNames = ["Sun, ", "Mon, ", "Tue, ", "Wed, ", "Thu, ", "Fri, ", "Sat, "] 5 | 6 | var newDate = new Date(); 7 | newDate.setDate(newDate.getDate() + 1); 8 | $('#Date').html(dayNames[newDate.getDay()] + " " + newDate.getDate() + ' ' + monthNames[newDate.getMonth()] + ' ' + newDate.getFullYear()); 9 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/colorPicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/css/datatables.responsive.css: -------------------------------------------------------------------------------- 1 | table.has-columns-hidden > tbody > tr > td > span.responsiveExpander { 2 | background: url('../img/plus.png') no-repeat 5px center; 3 | padding-left: 32px; 4 | cursor: pointer; 5 | } 6 | 7 | table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander { 8 | background: url('../img/minus.png') no-repeat 5px center; 9 | } 10 | 11 | table.has-columns-hidden > tbody > tr.row-detail > td { 12 | background: #eee; 13 | } 14 | 15 | table.has-columns-hidden > tbody > tr.row-detail > td > ul { 16 | list-style: none; 17 | margin: 0; 18 | } 19 | 20 | table.has-columns-hidden > tbody > tr.row-detail > td > ul > li > span.columnTitle { 21 | font-weight: bold; 22 | } 23 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/img/minus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/img/plus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_asc.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_both.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_desc.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dataTable/lib/jquery.dataTables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dropZone/downloads/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dropZone/downloads/images/spritemap.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/dropZone/downloads/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/dropZone/downloads/images/spritemap@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/footable/css/fonts/footable (1).eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/footable/css/fonts/footable (1).eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/footable/css/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/footable/css/fonts/footable.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/footable/css/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/footable/css/fonts/footable.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/footable/css/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/footable/css/fonts/footable.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/footable/css/footable-demos.css: -------------------------------------------------------------------------------- 1 | 2 | .demo-container { 3 | margin:10px; 4 | } 5 | code { 6 | background: #ddd; 7 | padding:2px 5px; 8 | } 9 | .status-metro { 10 | border-radius: 3px; 11 | color: #FFFFFF; 12 | display: inline-block; 13 | padding: 2px 5px; 14 | font-size: 11px; 15 | } 16 | .status-metro.status-active { 17 | background: #86C440; 18 | } 19 | .status-metro.status-disabled { 20 | background: #999999; 21 | } 22 | .status-metro.status-suspended { 23 | background: #DF2135; 24 | } 25 | .foo-setup li { 26 | margin-bottom:30px; 27 | } 28 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/gage/raphael.2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/gage/raphael.2.1.0.min.js -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/aero.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/flat.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/green.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/grey.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/orange.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/pink.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/purple.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/red.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/line/line.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/idealform/img/datepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/idealform/img/datepicker.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/idealform/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/idealform/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/idealform/img/radiocheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/idealform/img/radiocheck.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/idealform/img/validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/idealform/img/validation.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/preloader.js: -------------------------------------------------------------------------------- 1 | $(window).load(function() { // makes sure the whole site is loaded 2 | $('#status').fadeOut(); // will first fade out the loading animation 3 | $('#preloader').fadeOut(); // will fade out the white DIV that covers the website. 4 | $('body').delay(350).css({ 5 | 'overflow': 'visible' 6 | }); 7 | }) -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/progress-bar/number-pb.css: -------------------------------------------------------------------------------- 1 | .number-pb { 2 | background-color: #DDDDDD; 3 | height: 10px; 4 | margin: 10px 0; 5 | position: relative; 6 | } 7 | .number-pb .number-pb-shown { 8 | position: absolute; 9 | background-color: #65C3DF; 10 | /* background-image: linear-gradient(to right, #176785, #499989); */ 11 | top: -1px; 12 | left: 0; 13 | height: 11px; 14 | } 15 | .number-pb .number-pb-num { 16 | position: absolute; 17 | background-color: #fff; 18 | left: 0; 19 | top: -0.45em; 20 | padding: 0 5px; 21 | min-width: 20px; 22 | } 23 | .number-pb-shown.dream { 24 | /* background-image: linear-gradient(to right, #0e153a, #1d2b64, #f8cdda); */ 25 | background: #45B6B0; 26 | } 27 | .number-pb-shown.sun { 28 | /* background-image: linear-gradient(to right, #0f1b58, #e0a681, #e5e9bf); */ 29 | background: #FF6B6B; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/stackable/stacktable.css: -------------------------------------------------------------------------------- 1 | .stacktable { 2 | width: 100%; 3 | } 4 | .st-head-row { 5 | padding-top: 1em; 6 | text-align: center; 7 | } 8 | .st-head-row.st-head-row-main { 9 | font-size: 1.5em; 10 | padding-top: 0; 11 | text-align: center; 12 | } 13 | .st-key { 14 | width: 49%; 15 | text-align: right; 16 | padding-right: 1%; 17 | } 18 | .st-val { 19 | width: 49%; 20 | padding-left: 1%; 21 | } 22 | /* RESPONSIVE EXAMPLE */ 23 | .stacktable.large-only { 24 | display: table; 25 | } 26 | .small-only { 27 | display: none; 28 | } 29 | @media (max-width: 800px) { 30 | .large-only { 31 | display: none; 32 | } 33 | .stacktable.small-only { 34 | display: table; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/textEditor/sceditor/minified/themes/famfamfam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/textEditor/sceditor/minified/themes/famfamfam.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/file.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/folder-closed.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/folder.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-black-line.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-black.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-default-line.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-default.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-famfamfam.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-gray-line.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-gray.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-red-line.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/tree/images/treeview-red.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/tree/treetable/stylesheets/jquery.treetable.css: -------------------------------------------------------------------------------- 1 | table.treetable span.indenter { 2 | display: inline-block; 3 | margin: 0; 4 | padding: 0; 5 | text-align: right; 6 | 7 | /* Disable text selection of nodes (for better D&D UX) */ 8 | user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -o-user-select: none; 12 | -webkit-user-select: none; 13 | 14 | /* Force content-box box model for indenter (Bootstrap compatibility) */ 15 | -webkit-box-sizing: content-box; 16 | -moz-box-sizing: content-box; 17 | box-sizing: content-box; 18 | 19 | width: 19px; 20 | } 21 | 22 | table.treetable span.indenter a { 23 | background-position: left center; 24 | background-repeat: no-repeat; 25 | display: inline-block; 26 | text-decoration: none; 27 | width: 19px; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/upload/demos/css/images/dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/upload/demos/css/images/dark-bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/validate/img/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/assets2/js/validate/img/valid.png -------------------------------------------------------------------------------- /src/main/webapp/resources/assets2/js/validate/validate.css: -------------------------------------------------------------------------------- 1 | /* ======================================= 2 | 3 | Main Stylesheet 4 | 5 | Building on Twitter Bootstrap 6 | http://twitter.github.com/bootstrap/ 7 | 8 | ========================================== */ 9 | 10 | @import url('assets/css/bootstrap.min.css'); 11 | @import url('assets/css/bootstrap-responsive.min.css'); 12 | 13 | /* New styles below */ 14 | 15 | label.valid { 16 | width: 24px; 17 | height: 24px; 18 | background: url(img/valid.png) center center no-repeat; 19 | display: inline-block; 20 | text-indent: -9999px; 21 | } 22 | label.error { 23 | font-weight: bold; 24 | color: #FF0064; 25 | padding: 2px 8px; 26 | margin-top: 2px; 27 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/charts/css/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/themify.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/themify.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/fonts/themify.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/中国农业银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/中国农业银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/中国建设银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/中国建设银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/中国邮政储蓄银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/中国邮政储蓄银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/中国银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/中国银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/交通银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/交通银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/微信支付.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/微信支付.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/招商银行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/招商银行.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/支付宝支付.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/支付宝支付.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bank/支付平台-银联.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/bank/支付平台-银联.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/card-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/card-1.jpeg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/card-1.jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/card-1.jpeg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/card-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/card-2.jpeg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/card-2.jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/card-2.jpeg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/doctor.jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/doctor.jpeg.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/fav.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/logo-dark.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/slide1.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/slide2.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/slide3.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/images/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/user1.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/user2.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/images/user3.png -------------------------------------------------------------------------------- /src/main/webapp/resources/js/custom-datatables.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | "use strict"; // Start of use strict 3 | /* ==================== 4 | Data tables 5 | =======================*/ 6 | // Payents datatable 7 | $('#tableId').DataTable({ 8 | "order": [], 9 | "columnDefs": [{ 10 | "targets": 'no-sort', 11 | "orderable": false, 12 | }] 13 | }); 14 | 15 | })(jQuery); 16 | -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No222OnlineCourseManagementSystem/632e5f4dd64de87efde7edd3ee602d6b1619d25e/src/main/webapp/resources/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/resources/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d