├── .gitignore ├── README.md ├── crm.sql ├── mvnw ├── mvnw.cmd ├── other-img ├── crms.jpg ├── index.png ├── login.png ├── 修改客户.png ├── 修改日志.png ├── 修改用户.png ├── 修改联络.png ├── 修改预定.png ├── 新增客户.png ├── 新增日志.png ├── 新增用户.png ├── 新增联络.png ├── 新增预定.png ├── 管理客户.png ├── 管理日志.png ├── 管理用户.png ├── 管理联络.png ├── 管理预定.png ├── 项目清单1.png ├── 项目清单2.png └── 项目清单3.png ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── example │ │ └── cra │ │ ├── CraApplication.java │ │ ├── Interceptor │ │ └── SessionInterceptor.java │ │ ├── controller │ │ ├── BookinfoController.java │ │ ├── ContactsController.java │ │ ├── CustomersController.java │ │ ├── FrontendController.java │ │ ├── LogsController.java │ │ └── UsersController.java │ │ ├── entity │ │ ├── Bookinfo.java │ │ ├── Contacts.java │ │ ├── Customers.java │ │ ├── Logs.java │ │ ├── Roles.java │ │ └── Users.java │ │ ├── mapper │ │ ├── BookinfoMapper.java │ │ ├── ContactsMapper.java │ │ ├── CustomersMapper.java │ │ ├── LogsMapper.java │ │ └── UsersMapper.java │ │ ├── service │ │ ├── BookinfoService.java │ │ ├── ContactsService.java │ │ ├── CustomersService.java │ │ ├── LogsService.java │ │ ├── UsersService.java │ │ └── impl │ │ │ ├── BookinfoServiceImpl.java │ │ │ ├── ContactsServiceImpl.java │ │ │ ├── CustomersServiceImpl.java │ │ │ ├── LogsServiceImpl.java │ │ │ └── UsersServiceImpl.java │ │ └── util │ │ ├── SelectUsers.java │ │ └── SessionConfiguration.java └── resources │ ├── application.properties │ ├── mapper │ ├── BookinfoMapper.xml │ ├── ContactsMapper.xml │ ├── CustomersMapper.xml │ ├── LogsMapper.xml │ └── UsersMapper.xml │ ├── static │ ├── html │ │ └── _blank.html │ ├── img │ │ └── favicon.ico │ ├── js │ │ ├── bookinfo-add.js │ │ ├── bookinfo-edit.js │ │ ├── bookinfo-list.js │ │ ├── contact-add.js │ │ ├── contact-list.js │ │ ├── contact-update.js │ │ ├── customerAdd.js │ │ ├── customerUpdate.js │ │ ├── customerlist.js │ │ ├── home.js │ │ ├── index.js │ │ ├── log-add.js │ │ ├── log-edit.js │ │ ├── log-list.js │ │ ├── user-add.js │ │ ├── user-list.js │ │ └── user-update.js │ ├── lib │ │ ├── DD_belatedPNG_0.0.8a-min.js │ │ ├── Hui-iconfont │ │ │ └── 1.0.8 │ │ │ │ ├── demo.html │ │ │ │ ├── iconfont.css │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.min.css │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ └── iconfont.woff │ │ ├── My97DatePicker │ │ │ └── 4.8 │ │ │ │ ├── WdatePicker.js │ │ │ │ ├── calendar.js │ │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ │ └── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ │ ├── twoer │ │ │ │ ├── datepicker-dev.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── img.gif │ │ │ │ └── img.png │ │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ ├── datatables │ │ │ └── 1.10.0 │ │ │ │ └── jquery.dataTables.min.js │ │ ├── echarts │ │ │ └── 3.4.0 │ │ │ │ └── echarts.common.min.js │ │ ├── expressInstall.swf │ │ ├── hcharts │ │ │ └── Highcharts │ │ │ │ └── 5.0.6 │ │ │ │ ├── js │ │ │ │ ├── highcharts-3d.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── modules │ │ │ │ │ ├── accessibility.js │ │ │ │ │ ├── accessibility.src.js │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── boost.js │ │ │ │ │ ├── boost.src.js │ │ │ │ │ ├── broken-axis.js │ │ │ │ │ ├── broken-axis.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── gantt.js │ │ │ │ │ ├── gantt.src.js │ │ │ │ │ ├── grid-axis.js │ │ │ │ │ ├── grid-axis.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ ├── no-data-to-display.src.js │ │ │ │ │ ├── offline-exporting.js │ │ │ │ │ ├── offline-exporting.src.js │ │ │ │ │ ├── overlapping-datalabels.js │ │ │ │ │ ├── overlapping-datalabels.src.js │ │ │ │ │ ├── series-label.js │ │ │ │ │ ├── series-label.src.js │ │ │ │ │ ├── solid-gauge.js │ │ │ │ │ ├── solid-gauge.src.js │ │ │ │ │ ├── treemap.js │ │ │ │ │ ├── treemap.src.js │ │ │ │ │ ├── xrange-series.js │ │ │ │ │ └── xrange-series.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── dark-unica.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid-light.js │ │ │ │ │ ├── grid.js │ │ │ │ │ ├── sand-signika.js │ │ │ │ │ └── skies.js │ │ │ │ ├── license.pdf │ │ │ │ └── readme.txt │ │ ├── html5shiv.js │ │ ├── jquery.SuperSlide │ │ │ └── 2.1.1 │ │ │ │ └── jquery.SuperSlide.min.js │ │ ├── jquery.contextmenu │ │ │ └── jquery.contextmenu.r2.js │ │ ├── jquery.validation │ │ │ └── 1.14.0 │ │ │ │ ├── additional-methods.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── messages_zh.js │ │ │ │ └── validate-methods.js │ │ ├── jquery │ │ │ └── 1.9.1 │ │ │ │ ├── jquery.js │ │ │ │ └── jquery.min.js │ │ ├── jselect-1.0.js │ │ ├── layer │ │ │ └── 2.4 │ │ │ │ ├── layer.js │ │ │ │ └── skin │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ └── layer.css │ │ ├── laypage │ │ │ └── 1.2 │ │ │ │ ├── laypage.js │ │ │ │ └── skin │ │ │ │ └── laypage.css │ │ ├── lightbox2 │ │ │ └── 2.8.1 │ │ │ │ ├── css │ │ │ │ └── lightbox.css │ │ │ │ ├── examples.html │ │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── loading.gif │ │ │ │ ├── next.png │ │ │ │ └── prev.png │ │ │ │ └── js │ │ │ │ ├── lightbox-plus-jquery.js │ │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ │ ├── lightbox.js │ │ │ │ ├── lightbox.min.js │ │ │ │ └── lightbox.min.map │ │ ├── nprogress │ │ │ └── 0.2.0 │ │ │ │ ├── nprogress.css │ │ │ │ ├── nprogress.js │ │ │ │ ├── nprogress.min.css │ │ │ │ └── nprogress.min.js │ │ ├── respond.min.js │ │ ├── squid.js │ │ ├── swfobject.js │ │ ├── ueditor │ │ │ └── 1.4.3 │ │ │ │ ├── dialogs │ │ │ │ ├── anchor │ │ │ │ │ └── anchor.html │ │ │ │ ├── attachment │ │ │ │ │ ├── attachment.css │ │ │ │ │ ├── attachment.html │ │ │ │ │ ├── attachment.js │ │ │ │ │ ├── fileTypeImages │ │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ │ ├── icon_default.png │ │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ │ └── icon_xls.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ │ ├── alignicon.png │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ │ ├── file-icons.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ └── success.png │ │ │ │ ├── background │ │ │ │ │ ├── background.css │ │ │ │ │ ├── background.html │ │ │ │ │ ├── background.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ └── success.png │ │ │ │ ├── charts │ │ │ │ │ ├── chart.config.js │ │ │ │ │ ├── charts.css │ │ │ │ │ ├── charts.html │ │ │ │ │ ├── charts.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── charts0.png │ │ │ │ │ │ ├── charts1.png │ │ │ │ │ │ ├── charts2.png │ │ │ │ │ │ ├── charts3.png │ │ │ │ │ │ ├── charts4.png │ │ │ │ │ │ └── charts5.png │ │ │ │ ├── emotion │ │ │ │ │ ├── emotion.css │ │ │ │ │ ├── emotion.html │ │ │ │ │ ├── emotion.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── bface.gif │ │ │ │ │ │ ├── cface.gif │ │ │ │ │ │ ├── fface.gif │ │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ │ ├── tface.gif │ │ │ │ │ │ ├── wface.gif │ │ │ │ │ │ └── yface.gif │ │ │ │ ├── gmap │ │ │ │ │ └── gmap.html │ │ │ │ ├── help │ │ │ │ │ ├── help.css │ │ │ │ │ ├── help.html │ │ │ │ │ └── help.js │ │ │ │ ├── image │ │ │ │ │ ├── image.css │ │ │ │ │ ├── image.html │ │ │ │ │ ├── image.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ └── success.png │ │ │ │ ├── insertframe │ │ │ │ │ └── insertframe.html │ │ │ │ ├── internal.js │ │ │ │ ├── link │ │ │ │ │ └── link.html │ │ │ │ ├── map │ │ │ │ │ ├── map.html │ │ │ │ │ └── show.html │ │ │ │ ├── music │ │ │ │ │ ├── music.css │ │ │ │ │ ├── music.html │ │ │ │ │ └── music.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scrawl │ │ │ │ │ ├── images │ │ │ │ │ │ ├── addimg.png │ │ │ │ │ │ ├── brush.png │ │ │ │ │ │ ├── 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 │ │ │ │ ├── index.html │ │ │ │ ├── jsp │ │ │ │ ├── config.json │ │ │ │ ├── controller.jsp │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── ueditor │ │ │ │ │ ├── ActionEnter.java │ │ │ │ │ ├── ConfigManager.java │ │ │ │ │ ├── Encoder.java │ │ │ │ │ ├── PathFormat.java │ │ │ │ │ ├── define │ │ │ │ │ ├── ActionMap.java │ │ │ │ │ ├── ActionState.java │ │ │ │ │ ├── AppInfo.java │ │ │ │ │ ├── BaseState.java │ │ │ │ │ ├── FileType.java │ │ │ │ │ ├── MIMEType.java │ │ │ │ │ ├── MultiState.java │ │ │ │ │ └── State.java │ │ │ │ │ ├── hunter │ │ │ │ │ ├── FileManager.java │ │ │ │ │ └── ImageHunter.java │ │ │ │ │ └── upload │ │ │ │ │ ├── Base64Uploader.java │ │ │ │ │ ├── BinaryUploader.java │ │ │ │ │ ├── StorageManager.java │ │ │ │ │ └── Uploader.java │ │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ ├── en.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── addimage.png │ │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ │ ├── listbackground.png │ │ │ │ │ │ ├── localimage.png │ │ │ │ │ │ ├── music.png │ │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ │ └── upload.png │ │ │ │ └── zh-cn │ │ │ │ │ ├── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ └── upload.png │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── net │ │ │ │ ├── App_Code │ │ │ │ │ ├── Config.cs │ │ │ │ │ ├── ConfigHandler.cs │ │ │ │ │ ├── CrawlerHandler.cs │ │ │ │ │ ├── Handler.cs │ │ │ │ │ ├── ListFileHandler.cs │ │ │ │ │ ├── NotSupportedHandler.cs │ │ │ │ │ ├── PathFormater.cs │ │ │ │ │ └── UploadHandler.cs │ │ │ │ ├── Bin │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ ├── Newtonsoft.Json.pdb │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── README.md │ │ │ │ ├── Web.config │ │ │ │ ├── config.json │ │ │ │ ├── controller.ashx │ │ │ │ └── net.sln │ │ │ │ ├── php │ │ │ │ ├── Uploader.class.php │ │ │ │ ├── action_crawler.php │ │ │ │ ├── action_list.php │ │ │ │ ├── action_upload.php │ │ │ │ ├── config.json │ │ │ │ └── controller.php │ │ │ │ ├── themes │ │ │ │ ├── default │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ueditor.css │ │ │ │ │ │ └── ueditor.min.css │ │ │ │ │ ├── dialogbase.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ │ ├── charts.png │ │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ │ ├── filescan.png │ │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── loaderror.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── lock.gif │ │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ │ ├── scale.png │ │ │ │ │ │ ├── sortable.png │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ ├── videologo.gif │ │ │ │ │ │ ├── word.gif │ │ │ │ │ │ └── wordpaste.png │ │ │ │ └── iframe.css │ │ │ │ ├── third-party │ │ │ │ ├── SyntaxHighlighter │ │ │ │ │ ├── shCore.js │ │ │ │ │ └── shCoreDefault.css │ │ │ │ ├── codemirror │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── highcharts │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highcharts-more.src.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── highcharts.src.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── annotations.js │ │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── data.src.js │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ │ ├── exporting.js │ │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── map.src.js │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ │ ├── dark-green.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ └── skies.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── snapscreen │ │ │ │ │ └── UEditorSnapscreen.exe │ │ │ │ ├── video-js │ │ │ │ │ ├── font │ │ │ │ │ │ ├── vjs.eot │ │ │ │ │ │ ├── vjs.svg │ │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ │ └── vjs.woff │ │ │ │ │ ├── video-js.css │ │ │ │ │ ├── video-js.min.css │ │ │ │ │ ├── video-js.swf │ │ │ │ │ ├── video.dev.js │ │ │ │ │ └── video.js │ │ │ │ ├── webuploader │ │ │ │ │ ├── Uploader.swf │ │ │ │ │ ├── webuploader.css │ │ │ │ │ ├── webuploader.custom.js │ │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ │ ├── webuploader.html5only.js │ │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ │ ├── webuploader.js │ │ │ │ │ ├── webuploader.min.js │ │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ │ └── zeroclipboard │ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ ├── ueditor.all.js │ │ │ │ ├── ueditor.all.min.js │ │ │ │ ├── ueditor.config.js │ │ │ │ ├── ueditor.parse.js │ │ │ │ └── ueditor.parse.min.js │ │ ├── webuploader │ │ │ └── 0.1.5 │ │ │ │ ├── README.md │ │ │ │ ├── Uploader.swf │ │ │ │ ├── cropper │ │ │ │ ├── cropper.js │ │ │ │ ├── index.html │ │ │ │ └── uploader.js │ │ │ │ ├── expressInstall.swf │ │ │ │ ├── image-upload │ │ │ │ ├── index.html │ │ │ │ └── upload.js │ │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── icons.png │ │ │ │ ├── icons.psd │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── progress.psd │ │ │ │ └── success.png │ │ │ │ ├── md5-demo │ │ │ │ ├── index.html │ │ │ │ └── script.js │ │ │ │ ├── requirejs │ │ │ │ ├── app.js │ │ │ │ ├── index.html │ │ │ │ └── require.js │ │ │ │ ├── server │ │ │ │ ├── crossdomain.xml │ │ │ │ ├── fileupload.php │ │ │ │ ├── fileupload2.php │ │ │ │ └── preview.php │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.fis.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.noimage.js │ │ │ │ ├── webuploader.noimage.min.js │ │ │ │ ├── webuploader.nolog.js │ │ │ │ ├── webuploader.nolog.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ └── zTree │ │ │ └── v3 │ │ │ ├── api │ │ │ ├── API_cn.html │ │ │ ├── API_en.html │ │ │ ├── apiCss │ │ │ │ ├── api.js │ │ │ │ ├── common.css │ │ │ │ ├── common_ie6.css │ │ │ │ ├── img │ │ │ │ │ ├── apiMenu.gif │ │ │ │ │ ├── apiMenu.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── chinese.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── contact-bg.png │ │ │ │ │ ├── english.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── overlay_arrow.gif │ │ │ │ │ ├── overlay_arrow.png │ │ │ │ │ ├── overlay_bg.png │ │ │ │ │ ├── overlay_close_IE6.gif │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ └── zTreeStandard.png │ │ │ │ ├── jquery-1.6.2.min.js │ │ │ │ ├── jquery.ztree.core-3.5.js │ │ │ │ └── zTreeStyleForApi.css │ │ │ ├── cn │ │ │ │ ├── fn.zTree._z.html │ │ │ │ ├── fn.zTree.destroy.html │ │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ │ ├── fn.zTree.init.html │ │ │ │ ├── setting.async.autoParam.html │ │ │ │ ├── setting.async.contentType.html │ │ │ │ ├── setting.async.dataFilter.html │ │ │ │ ├── setting.async.dataType.html │ │ │ │ ├── setting.async.enable.html │ │ │ │ ├── setting.async.otherParam.html │ │ │ │ ├── setting.async.type.html │ │ │ │ ├── setting.async.url.html │ │ │ │ ├── setting.callback.beforeAsync.html │ │ │ │ ├── setting.callback.beforeCheck.html │ │ │ │ ├── setting.callback.beforeClick.html │ │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ │ ├── setting.callback.beforeDrag.html │ │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ │ ├── setting.callback.beforeDrop.html │ │ │ │ ├── setting.callback.beforeEditName.html │ │ │ │ ├── setting.callback.beforeExpand.html │ │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ │ ├── setting.callback.beforeRemove.html │ │ │ │ ├── setting.callback.beforeRename.html │ │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ │ ├── setting.callback.onAsyncError.html │ │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ │ ├── setting.callback.onCheck.html │ │ │ │ ├── setting.callback.onClick.html │ │ │ │ ├── setting.callback.onCollapse.html │ │ │ │ ├── setting.callback.onDblClick.html │ │ │ │ ├── setting.callback.onDrag.html │ │ │ │ ├── setting.callback.onDragMove.html │ │ │ │ ├── setting.callback.onDrop.html │ │ │ │ ├── setting.callback.onExpand.html │ │ │ │ ├── setting.callback.onMouseDown.html │ │ │ │ ├── setting.callback.onMouseUp.html │ │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ │ ├── setting.callback.onRemove.html │ │ │ │ ├── setting.callback.onRename.html │ │ │ │ ├── setting.callback.onRightClick.html │ │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ │ ├── setting.check.chkStyle.html │ │ │ │ ├── setting.check.chkboxType.html │ │ │ │ ├── setting.check.enable.html │ │ │ │ ├── setting.check.nocheckInherit.html │ │ │ │ ├── setting.check.radioType.html │ │ │ │ ├── setting.data.keep.leaf.html │ │ │ │ ├── setting.data.keep.parent.html │ │ │ │ ├── setting.data.key.checked.html │ │ │ │ ├── setting.data.key.children.html │ │ │ │ ├── setting.data.key.name.html │ │ │ │ ├── setting.data.key.title.html │ │ │ │ ├── setting.data.key.url.html │ │ │ │ ├── setting.data.simpleData.enable.html │ │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ │ ├── setting.edit.drag.inner.html │ │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ │ ├── setting.edit.drag.isMove.html │ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ │ ├── setting.edit.drag.next.html │ │ │ │ ├── setting.edit.drag.prev.html │ │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ │ ├── setting.edit.enable.html │ │ │ │ ├── setting.edit.removeTitle.html │ │ │ │ ├── setting.edit.renameTitle.html │ │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ │ ├── setting.treeId.html │ │ │ │ ├── setting.treeObj.html │ │ │ │ ├── setting.view.addDiyDom.html │ │ │ │ ├── setting.view.addHoverDom.html │ │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ │ ├── setting.view.dblClickExpand.html │ │ │ │ ├── setting.view.expandSpeed.html │ │ │ │ ├── setting.view.fontCss.html │ │ │ │ ├── setting.view.nameIsHTML.html │ │ │ │ ├── setting.view.removeHoverDom.html │ │ │ │ ├── setting.view.selectedMulti.html │ │ │ │ ├── setting.view.showIcon.html │ │ │ │ ├── setting.view.showLine.html │ │ │ │ ├── setting.view.showTitle.html │ │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ │ ├── treeNode.check_Child_State.html │ │ │ │ ├── treeNode.check_Focus.html │ │ │ │ ├── treeNode.checked.html │ │ │ │ ├── treeNode.checkedOld.html │ │ │ │ ├── treeNode.children.html │ │ │ │ ├── treeNode.chkDisabled.html │ │ │ │ ├── treeNode.click.html │ │ │ │ ├── treeNode.diy.html │ │ │ │ ├── treeNode.editNameFlag.html │ │ │ │ ├── treeNode.getCheckStatus.html │ │ │ │ ├── treeNode.getNextNode.html │ │ │ │ ├── treeNode.getParentNode.html │ │ │ │ ├── treeNode.getPreNode.html │ │ │ │ ├── treeNode.halfCheck.html │ │ │ │ ├── treeNode.icon.html │ │ │ │ ├── treeNode.iconClose.html │ │ │ │ ├── treeNode.iconOpen.html │ │ │ │ ├── treeNode.iconSkin.html │ │ │ │ ├── treeNode.isAjaxing.html │ │ │ │ ├── treeNode.isFirstNode.html │ │ │ │ ├── treeNode.isHidden.html │ │ │ │ ├── treeNode.isHover.html │ │ │ │ ├── treeNode.isLastNode.html │ │ │ │ ├── treeNode.isParent.html │ │ │ │ ├── treeNode.level.html │ │ │ │ ├── treeNode.name.html │ │ │ │ ├── treeNode.nocheck.html │ │ │ │ ├── treeNode.open.html │ │ │ │ ├── treeNode.parentTId.html │ │ │ │ ├── treeNode.tId.html │ │ │ │ ├── treeNode.target.html │ │ │ │ ├── treeNode.url.html │ │ │ │ ├── treeNode.zAsync.html │ │ │ │ ├── zTreeObj.addNodes.html │ │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ │ ├── zTreeObj.checkNode.html │ │ │ │ ├── zTreeObj.copyNode.html │ │ │ │ ├── zTreeObj.destroy.html │ │ │ │ ├── zTreeObj.editName.html │ │ │ │ ├── zTreeObj.expandAll.html │ │ │ │ ├── zTreeObj.expandNode.html │ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ │ ├── zTreeObj.getNodes.html │ │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ │ ├── zTreeObj.hideNode.html │ │ │ │ ├── zTreeObj.hideNodes.html │ │ │ │ ├── zTreeObj.moveNode.html │ │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ │ ├── zTreeObj.refresh.html │ │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ │ ├── zTreeObj.removeNode.html │ │ │ │ ├── zTreeObj.selectNode.html │ │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ │ ├── zTreeObj.setEditable.html │ │ │ │ ├── zTreeObj.setting.html │ │ │ │ ├── zTreeObj.showNode.html │ │ │ │ ├── zTreeObj.showNodes.html │ │ │ │ ├── zTreeObj.transformToArray.html │ │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ │ └── zTreeObj.updateNode.html │ │ │ └── en │ │ │ │ ├── fn.zTree._z.html │ │ │ │ ├── fn.zTree.destroy.html │ │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ │ ├── fn.zTree.init.html │ │ │ │ ├── setting.async.autoParam.html │ │ │ │ ├── setting.async.contentType.html │ │ │ │ ├── setting.async.dataFilter.html │ │ │ │ ├── setting.async.dataType.html │ │ │ │ ├── setting.async.enable.html │ │ │ │ ├── setting.async.otherParam.html │ │ │ │ ├── setting.async.type.html │ │ │ │ ├── setting.async.url.html │ │ │ │ ├── setting.callback.beforeAsync.html │ │ │ │ ├── setting.callback.beforeCheck.html │ │ │ │ ├── setting.callback.beforeClick.html │ │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ │ ├── setting.callback.beforeDrag.html │ │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ │ ├── setting.callback.beforeDrop.html │ │ │ │ ├── setting.callback.beforeEditName.html │ │ │ │ ├── setting.callback.beforeExpand.html │ │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ │ ├── setting.callback.beforeRemove.html │ │ │ │ ├── setting.callback.beforeRename.html │ │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ │ ├── setting.callback.onAsyncError.html │ │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ │ ├── setting.callback.onCheck.html │ │ │ │ ├── setting.callback.onClick.html │ │ │ │ ├── setting.callback.onCollapse.html │ │ │ │ ├── setting.callback.onDblClick.html │ │ │ │ ├── setting.callback.onDrag.html │ │ │ │ ├── setting.callback.onDragMove.html │ │ │ │ ├── setting.callback.onDrop.html │ │ │ │ ├── setting.callback.onExpand.html │ │ │ │ ├── setting.callback.onMouseDown.html │ │ │ │ ├── setting.callback.onMouseUp.html │ │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ │ ├── setting.callback.onRemove.html │ │ │ │ ├── setting.callback.onRename.html │ │ │ │ ├── setting.callback.onRightClick.html │ │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ │ ├── setting.check.chkStyle.html │ │ │ │ ├── setting.check.chkboxType.html │ │ │ │ ├── setting.check.enable.html │ │ │ │ ├── setting.check.nocheckInherit.html │ │ │ │ ├── setting.check.radioType.html │ │ │ │ ├── setting.data.keep.leaf.html │ │ │ │ ├── setting.data.keep.parent.html │ │ │ │ ├── setting.data.key.checked.html │ │ │ │ ├── setting.data.key.children.html │ │ │ │ ├── setting.data.key.name.html │ │ │ │ ├── setting.data.key.title.html │ │ │ │ ├── setting.data.key.url.html │ │ │ │ ├── setting.data.simpleData.enable.html │ │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ │ ├── setting.edit.drag.inner.html │ │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ │ ├── setting.edit.drag.isMove.html │ │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ │ ├── setting.edit.drag.next.html │ │ │ │ ├── setting.edit.drag.prev.html │ │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ │ ├── setting.edit.enable.html │ │ │ │ ├── setting.edit.removeTitle.html │ │ │ │ ├── setting.edit.renameTitle.html │ │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ │ ├── setting.treeId.html │ │ │ │ ├── setting.treeObj.html │ │ │ │ ├── setting.view.addDiyDom.html │ │ │ │ ├── setting.view.addHoverDom.html │ │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ │ ├── setting.view.dblClickExpand.html │ │ │ │ ├── setting.view.expandSpeed.html │ │ │ │ ├── setting.view.fontCss.html │ │ │ │ ├── setting.view.nameIsHTML.html │ │ │ │ ├── setting.view.removeHoverDom.html │ │ │ │ ├── setting.view.selectedMulti.html │ │ │ │ ├── setting.view.showIcon.html │ │ │ │ ├── setting.view.showLine.html │ │ │ │ ├── setting.view.showTitle.html │ │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ │ ├── treeNode.check_Child_State.html │ │ │ │ ├── treeNode.check_Focus.html │ │ │ │ ├── treeNode.checked.html │ │ │ │ ├── treeNode.checkedOld.html │ │ │ │ ├── treeNode.children.html │ │ │ │ ├── treeNode.chkDisabled.html │ │ │ │ ├── treeNode.click.html │ │ │ │ ├── treeNode.diy.html │ │ │ │ ├── treeNode.editNameFlag.html │ │ │ │ ├── treeNode.getCheckStatus.html │ │ │ │ ├── treeNode.getNextNode.html │ │ │ │ ├── treeNode.getParentNode.html │ │ │ │ ├── treeNode.getPreNode.html │ │ │ │ ├── treeNode.halfCheck.html │ │ │ │ ├── treeNode.icon.html │ │ │ │ ├── treeNode.iconClose.html │ │ │ │ ├── treeNode.iconOpen.html │ │ │ │ ├── treeNode.iconSkin.html │ │ │ │ ├── treeNode.isAjaxing.html │ │ │ │ ├── treeNode.isFirstNode.html │ │ │ │ ├── treeNode.isHidden.html │ │ │ │ ├── treeNode.isHover.html │ │ │ │ ├── treeNode.isLastNode.html │ │ │ │ ├── treeNode.isParent.html │ │ │ │ ├── treeNode.level.html │ │ │ │ ├── treeNode.name.html │ │ │ │ ├── treeNode.nocheck.html │ │ │ │ ├── treeNode.open.html │ │ │ │ ├── treeNode.parentTId.html │ │ │ │ ├── treeNode.tId.html │ │ │ │ ├── treeNode.target.html │ │ │ │ ├── treeNode.url.html │ │ │ │ ├── treeNode.zAsync.html │ │ │ │ ├── zTreeObj.addNodes.html │ │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ │ ├── zTreeObj.checkNode.html │ │ │ │ ├── zTreeObj.copyNode.html │ │ │ │ ├── zTreeObj.destroy.html │ │ │ │ ├── zTreeObj.editName.html │ │ │ │ ├── zTreeObj.expandAll.html │ │ │ │ ├── zTreeObj.expandNode.html │ │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ │ ├── zTreeObj.getNodes.html │ │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ │ ├── zTreeObj.hideNode.html │ │ │ │ ├── zTreeObj.hideNodes.html │ │ │ │ ├── zTreeObj.moveNode.html │ │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ │ ├── zTreeObj.refresh.html │ │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ │ ├── zTreeObj.removeNode.html │ │ │ │ ├── zTreeObj.selectNode.html │ │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ │ ├── zTreeObj.setEditable.html │ │ │ │ ├── zTreeObj.setting.html │ │ │ │ ├── zTreeObj.showNode.html │ │ │ │ ├── zTreeObj.showNodes.html │ │ │ │ ├── zTreeObj.transformToArray.html │ │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ │ └── zTreeObj.updateNode.html │ │ │ ├── css │ │ │ ├── metroStyle │ │ │ │ ├── img │ │ │ │ │ ├── line_conn.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── metro.gif │ │ │ │ │ └── metro.png │ │ │ │ └── metroStyle.css │ │ │ └── zTreeStyle │ │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ │ └── zTreeStyle.css │ │ │ └── js │ │ │ ├── jquery.ztree.all-3.5.js │ │ │ ├── jquery.ztree.all-3.5.min.js │ │ │ ├── jquery.ztree.core-3.5.js │ │ │ ├── jquery.ztree.core-3.5.min.js │ │ │ ├── jquery.ztree.excheck-3.5.js │ │ │ ├── jquery.ztree.excheck-3.5.min.js │ │ │ ├── jquery.ztree.exedit-3.5.js │ │ │ ├── jquery.ztree.exedit-3.5.min.js │ │ │ ├── jquery.ztree.exedit.js │ │ │ ├── jquery.ztree.exhide-3.5.js │ │ │ └── jquery.ztree.exhide-3.5.min.js │ ├── static │ │ ├── h-ui.admin │ │ │ ├── css │ │ │ │ ├── H-ui.admin.css │ │ │ │ ├── H-ui.login.css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ ├── acrossTab │ │ │ │ │ └── acrossTab-2.png │ │ │ │ ├── admin-login-bg.jpg │ │ │ │ ├── admin-loginform-bg.png │ │ │ │ ├── cn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── logo.png │ │ │ │ └── um.gif │ │ │ ├── js │ │ │ │ ├── H-ui.admin.js │ │ │ │ └── de_DE.txt │ │ │ └── skin │ │ │ │ ├── blue │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ │ │ ├── default │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ │ │ ├── green │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ │ │ ├── orange │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ │ │ ├── red │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ │ │ └── yellow │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab.png │ │ │ │ ├── icon_arrow.png │ │ │ │ └── skin.css │ │ └── h-ui │ │ │ ├── css │ │ │ ├── H-ui.css │ │ │ ├── H-ui.ie.css │ │ │ ├── H-ui.min.css │ │ │ └── H-ui.reset.css │ │ │ ├── images │ │ │ ├── Hui-tags │ │ │ │ └── empty.png │ │ │ ├── acrossTab │ │ │ │ ├── acrossTab-bg.png │ │ │ │ ├── acrossTab-close.png │ │ │ │ └── acrossTab.png │ │ │ ├── dataTable │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ └── sort_desc.png │ │ │ ├── dropDown │ │ │ │ └── icon-jt.png │ │ │ ├── face │ │ │ │ ├── 201.gif │ │ │ │ ├── 202.gif │ │ │ │ ├── 203.gif │ │ │ │ ├── 204.gif │ │ │ │ ├── 205.gif │ │ │ │ ├── 206.gif │ │ │ │ ├── 207.gif │ │ │ │ ├── 208.gif │ │ │ │ ├── 209.gif │ │ │ │ ├── 210.gif │ │ │ │ └── QQ │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.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 │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ └── 99.gif │ │ │ ├── iCheck │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@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 │ │ │ ├── iconpic-arrow.png │ │ │ ├── jselect │ │ │ │ └── iconpic-arrow-down2.png │ │ │ ├── loading │ │ │ │ ├── loading-b.gif │ │ │ │ └── loading-s.gif │ │ │ ├── rollpic │ │ │ │ └── unslider-arrow.png │ │ │ ├── star │ │ │ │ ├── iconpic-star-S-default.png │ │ │ │ └── iconpic-star-S.png │ │ │ ├── steps │ │ │ │ ├── step_arrow-active.png │ │ │ │ ├── step_arrow.png │ │ │ │ ├── step_bg-active.png │ │ │ │ └── step_bg.png │ │ │ ├── ucnter │ │ │ │ ├── avatar-default-S.gif │ │ │ │ ├── avatar-default.jpg │ │ │ │ ├── avatar.png │ │ │ │ └── noavatar_small.gif │ │ │ ├── validform │ │ │ │ ├── iconpic-error.png │ │ │ │ ├── iconpic-right.png │ │ │ │ └── iconpic-warning.png │ │ │ └── verticalTab │ │ │ │ ├── tabNav-active.png │ │ │ │ ├── tabNav-hover.png │ │ │ │ ├── tabNav.png │ │ │ │ ├── tabNav_right-active.png │ │ │ │ ├── tabNav_right-hover.png │ │ │ │ ├── tabNav_right.png │ │ │ │ └── tab_bg.png │ │ │ └── js │ │ │ ├── H-ui.js │ │ │ └── H-ui.min.js │ └── temp │ │ ├── 200x150.jpg │ │ ├── Thumb │ │ ├── chai.jpg │ │ ├── chufang.jpg │ │ ├── keting.jpg │ │ ├── keting2.jpg │ │ ├── keting3.jpg │ │ ├── keting4.jpg │ │ ├── shouju.jpg │ │ ├── shufang.jpg │ │ ├── weishengjian.jpg │ │ ├── weishengjian2.jpg │ │ ├── woshi.jpg │ │ └── youyongchi.jpg │ │ ├── big │ │ ├── chai.jpg │ │ ├── chufang.jpg │ │ ├── keting.jpg │ │ ├── keting2.jpg │ │ ├── keting3.jpg │ │ ├── keting4.jpg │ │ ├── shouju.jpg │ │ ├── shufang.jpg │ │ ├── weishengjian.jpg │ │ ├── weishengjian2.jpg │ │ ├── woshi.jpg │ │ └── youyongchi.jpg │ │ ├── brand │ │ ├── ambio.jpg │ │ ├── dongpeng.jpeg │ │ └── shengxiang.jpg │ │ └── product │ │ └── Thumb │ │ ├── 5345.jpg │ │ └── 6204.jpg │ └── templates │ ├── bookinfo-add.html │ ├── bookinfo-list.html │ ├── bookinfo-update.html │ ├── contact-add.html │ ├── contact-list.html │ ├── contact-update.html │ ├── customer-add.html │ ├── customer-list.html │ ├── customer-update.html │ ├── document-add.html │ ├── document-list.html │ ├── home.html │ ├── index.html │ ├── log-add.html │ ├── log-list.html │ ├── log-update.html │ ├── user-add.html │ ├── user-list.html │ └── user-update.html └── test └── java └── com └── example └── cra ├── CraApplicationTests.java ├── mapper └── UsersMapperTest.java └── service └── UsersServiceTest.java /other-img/crms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/crms.jpg -------------------------------------------------------------------------------- /other-img/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/index.png -------------------------------------------------------------------------------- /other-img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/login.png -------------------------------------------------------------------------------- /other-img/修改客户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/修改客户.png -------------------------------------------------------------------------------- /other-img/修改日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/修改日志.png -------------------------------------------------------------------------------- /other-img/修改用户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/修改用户.png -------------------------------------------------------------------------------- /other-img/修改联络.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/修改联络.png -------------------------------------------------------------------------------- /other-img/修改预定.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/修改预定.png -------------------------------------------------------------------------------- /other-img/新增客户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/新增客户.png -------------------------------------------------------------------------------- /other-img/新增日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/新增日志.png -------------------------------------------------------------------------------- /other-img/新增用户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/新增用户.png -------------------------------------------------------------------------------- /other-img/新增联络.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/新增联络.png -------------------------------------------------------------------------------- /other-img/新增预定.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/新增预定.png -------------------------------------------------------------------------------- /other-img/管理客户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/管理客户.png -------------------------------------------------------------------------------- /other-img/管理日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/管理日志.png -------------------------------------------------------------------------------- /other-img/管理用户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/管理用户.png -------------------------------------------------------------------------------- /other-img/管理联络.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/管理联络.png -------------------------------------------------------------------------------- /other-img/管理预定.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/管理预定.png -------------------------------------------------------------------------------- /other-img/项目清单1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/项目清单1.png -------------------------------------------------------------------------------- /other-img/项目清单2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/项目清单2.png -------------------------------------------------------------------------------- /other-img/项目清单3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/other-img/项目清单3.png -------------------------------------------------------------------------------- /src/main/java/com/example/cra/CraApplication.java: -------------------------------------------------------------------------------- 1 | package com.example.cra; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class CraApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(CraApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/Interceptor/SessionInterceptor.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.Interceptor; 2 | 3 | import org.springframework.web.servlet.HandlerInterceptor; 4 | 5 | import javax.servlet.http.HttpServletRequest; 6 | import javax.servlet.http.HttpServletResponse; 7 | import java.io.IOException; 8 | 9 | public class SessionInterceptor implements HandlerInterceptor { 10 | @Override 11 | public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException { 12 | Object obj = request.getSession().getAttribute("username"); 13 | if (obj == null) { 14 | response.sendRedirect("/front/index"); 15 | return false; 16 | } 17 | return true; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/mapper/BookinfoMapper.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.mapper; 2 | 3 | import java.util.List; 4 | 5 | import com.example.cra.entity.Bookinfo; 6 | import org.apache.ibatis.annotations.Mapper; 7 | 8 | @Mapper 9 | public interface BookinfoMapper { 10 | public List getAllBookinfo();//查询全部数据 11 | 12 | public Bookinfo getABookinfo(int book_id);//id查询 13 | 14 | public List getBookinfoByCustName(String cust_name);//通过客户名称查询 15 | 16 | public boolean addBookinfo(Bookinfo bookinfo);//添加 17 | 18 | public boolean editBookinfo(Bookinfo bookinfo);//修改 19 | 20 | public boolean delBookinfo(int book_id);//删除 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/mapper/ContactsMapper.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.mapper; 2 | 3 | import com.example.cra.entity.Contacts; 4 | import org.apache.ibatis.annotations.Mapper; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.List; 8 | 9 | @Mapper 10 | public interface ContactsMapper { 11 | //添加 12 | public int addContacts(Contacts contacts); 13 | 14 | public List contactsList(); 15 | 16 | public int delContacts(int cont_id); 17 | 18 | public List queryContacts(@Param("datemin") String datemin, @Param("datemax") String datemax, @Param("cust_name") String cust_name); 19 | 20 | public Contacts selectContacts(int cont_id); 21 | 22 | public int updateContacts(Contacts contacts); 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/mapper/LogsMapper.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.mapper; 2 | 3 | import java.util.List; 4 | 5 | import com.example.cra.entity.Logs; 6 | import org.apache.ibatis.annotations.Mapper; 7 | 8 | @Mapper 9 | public interface LogsMapper { 10 | public List getAllLogs(); 11 | 12 | public Logs getALog(int log_id); 13 | 14 | public List getLogByCustName(String cust_name); 15 | 16 | public boolean addLog(Logs logs); 17 | 18 | public boolean editLog(Logs logs); 19 | 20 | public boolean delLog(int log_id); 21 | 22 | public List getCustName(); 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/service/BookinfoService.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.service; 2 | 3 | import java.util.List; 4 | 5 | import com.example.cra.entity.Bookinfo; 6 | 7 | public interface BookinfoService { 8 | public List getAllBookinfo(); 9 | 10 | public Bookinfo getABookinfo(int book_id); 11 | 12 | public boolean addBookinfo(Bookinfo bookinfo); 13 | 14 | public boolean editBookinfo(Bookinfo bookinfo); 15 | 16 | public boolean delBookinfo(int book_id); 17 | 18 | public List getBookinfoByCustName(String cust_name); 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/service/ContactsService.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.service; 2 | 3 | import com.example.cra.entity.Contacts; 4 | 5 | import java.util.List; 6 | 7 | public interface ContactsService { 8 | public String addContacts(Contacts contacts); 9 | 10 | public List contactsList(); 11 | 12 | public String delContacts(int cont_id); 13 | 14 | public List queryContacts(String datemin, String datemax, String cust_name); 15 | 16 | public Contacts selectContacts(int cont_id); 17 | 18 | public boolean updateContacts(Contacts contacts); 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/service/CustomersService.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.service; 2 | 3 | import com.example.cra.entity.Customers; 4 | 5 | import java.util.List; 6 | 7 | public interface CustomersService { 8 | public List getAllCustomers(); 9 | 10 | public Customers getCustomerById(int id); 11 | 12 | public Customers getCustomersByStatus(String status); 13 | 14 | public Customers getCustomersByCust_name(String Cust_name); 15 | 16 | public int deleteCustomerByName(String cust_name); 17 | 18 | public int updateCustomer(Customers customer); 19 | 20 | public int insertCustomer(Customers customer); 21 | 22 | public List queryCustomers(String cust_name, Integer user_id, Integer cust_background, Integer listed, 23 | Integer cust_type, Integer status); 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/service/LogsService.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.service; 2 | 3 | import java.util.List; 4 | 5 | import com.example.cra.entity.Logs; 6 | 7 | public interface LogsService { 8 | public List getAllLogs(); 9 | 10 | public Logs getALog(int log_id); 11 | 12 | public List getLogByCustName(String cust_name); 13 | 14 | public boolean addLog(Logs logs); 15 | 16 | public boolean editLog(Logs logs); 17 | 18 | public boolean delLog(int log_id); 19 | 20 | public List getCustName(); 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/example/cra/util/SessionConfiguration.java: -------------------------------------------------------------------------------- 1 | package com.example.cra.util; 2 | 3 | import com.example.cra.Interceptor.SessionInterceptor; 4 | import org.springframework.context.annotation.Configuration; 5 | import org.springframework.web.servlet.config.annotation.InterceptorRegistry; 6 | import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; 7 | 8 | @Configuration 9 | public class SessionConfiguration extends WebMvcConfigurerAdapter { 10 | @Override 11 | public void addInterceptors(InterceptorRegistry registry) { 12 | registry.addInterceptor(new SessionInterceptor()).addPathPatterns("/front/home"); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/img/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/js/home.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | changeName(); 3 | function changeName() { 4 | $.ajax({ 5 | url: "/users/session", 6 | type: "post", 7 | dataType: "json", 8 | success: function (data) { 9 | $("#index_name").text(data.session); 10 | } 11 | }); 12 | } 13 | }); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | var loginUrl = '/users/login'; 3 | $('#sub').click(function () { 4 | var username = $('#username').val(); 5 | var password = $('#password').val(); 6 | $.ajax({ 7 | url: loginUrl, 8 | async: false, 9 | cache: false, 10 | type: "post", 11 | dataType: 'json', 12 | data: {"username": username, "password": password}, 13 | success: function (data) { 14 | if (data.success) { 15 | window.location.href = "/front/home"; 16 | } else { 17 | alert(data.msg); 18 | } 19 | } 20 | }); 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/Hui-iconfont/1.0.8/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/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/resources/static/lib/My97DatePicker/4.8/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | background:#fff url(datePicker.gif) no-repeat right; 3 | } 4 | .Wdate::-ms-clear{display:none;} 5 | 6 | .WdateFmtErr{ 7 | font-weight:bold; 8 | color:red; 9 | } -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/datePicker.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/default/img.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/twoer/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/twoer/img.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/twoer/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/twoer/img.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/My97DatePicker/4.8/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/My97DatePicker/4.8/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/expressInstall.swf -------------------------------------------------------------------------------- /src/main/resources/static/lib/hcharts/Highcharts/5.0.6/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/hcharts/Highcharts/5.0.6/license.pdf -------------------------------------------------------------------------------- /src/main/resources/static/lib/hcharts/Highcharts/5.0.6/readme.txt: -------------------------------------------------------------------------------- 1 | Highcharts JS v5.0.6 (2016-12-07) 2 | 3 | License: http://www.highcharts.com.cn/license 4 | 5 | Changelog: http://www.hcharts.cn/docs/changelog 6 | 7 | Demos: http://www.hcharts.cn/demos/highcharts 8 | 9 | Docs: http://www.hcharts.cn/docs 10 | 11 | API: http://api.hcharts.cn/highcharts 12 | 13 | Copyright @ 2016 Highsoft AS (http://highsoft.com) 14 | 15 | 中国地区由杭州简数科技有限公司提供服务(http://jianshukeji.com) -------------------------------------------------------------------------------- /src/main/resources/static/lib/layer/2.4/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/layer/2.4/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/layer/2.4/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/layer/2.4/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/layer/2.4/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/layer/2.4/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/layer/2.4/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/layer/2.4/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/layer/2.4/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/layer/2.4/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/lightbox2/2.8.1/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/lightbox2/2.8.1/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/lightbox2/2.8.1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/lightbox2/2.8.1/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/lightbox2/2.8.1/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/lightbox2/2.8.1/images/next.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/lightbox2/2.8.1/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/lightbox2/2.8.1/images/prev.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/background/images/success.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/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/resources/static/lib/ueditor/1.4.3/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/image.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/image/images/success.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/image.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/video/images/success.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/controller.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/Encoder.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor; 2 | 3 | public class Encoder { 4 | 5 | public static String toUnicode ( String input ) { 6 | 7 | StringBuilder builder = new StringBuilder(); 8 | char[] chars = input.toCharArray(); 9 | 10 | for ( char ch : chars ) { 11 | 12 | if ( ch < 256 ) { 13 | builder.append( ch ); 14 | } else { 15 | builder.append( "\\u" + Integer.toHexString( ch& 0xffff ) ); 16 | } 17 | 18 | } 19 | 20 | return builder.toString(); 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/define/ActionState.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | public enum ActionState { 4 | UNKNOW_ERROR 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/define/FileType.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class FileType { 7 | 8 | public static final String JPG = "JPG"; 9 | 10 | private static final Map types = new HashMap(){{ 11 | 12 | put( FileType.JPG, ".jpg" ); 13 | 14 | }}; 15 | 16 | public static String getSuffix ( String key ) { 17 | return FileType.types.get( key ); 18 | } 19 | 20 | /** 21 | * 根据给定的文件名,获取其后缀信息 22 | * @param filename 23 | * @return 24 | */ 25 | public static String getSuffixByFilename ( String filename ) { 26 | 27 | return filename.substring( filename.lastIndexOf( "." ) ).toLowerCase(); 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/define/MIMEType.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class MIMEType { 7 | 8 | public static final Map types = new HashMap(){{ 9 | put( "image/gif", ".gif" ); 10 | put( "image/jpeg", ".jpg" ); 11 | put( "image/jpg", ".jpg" ); 12 | put( "image/png", ".png" ); 13 | put( "image/bmp", ".bmp" ); 14 | }}; 15 | 16 | public static String getSuffix ( String mime ) { 17 | return MIMEType.types.get( mime ); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/define/State.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | /** 4 | * 处理状态接口 5 | * @author hancong03@baidu.com 6 | * 7 | */ 8 | public interface State { 9 | 10 | public boolean isSuccess (); 11 | 12 | public void putInfo( String name, String val ); 13 | 14 | public void putInfo ( String name, long val ); 15 | 16 | public String toJSONString (); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/jsp/src/com/baidu/ueditor/upload/Uploader.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.upload; 2 | 3 | import com.baidu.ueditor.define.State; 4 | import java.util.Map; 5 | import javax.servlet.http.HttpServletRequest; 6 | 7 | public class Uploader { 8 | private HttpServletRequest request = null; 9 | private Map conf = null; 10 | 11 | public Uploader(HttpServletRequest request, Map conf) { 12 | this.request = request; 13 | this.conf = conf; 14 | } 15 | 16 | public final State doExec() { 17 | String filedName = (String) this.conf.get("fieldName"); 18 | State state = null; 19 | 20 | if ("true".equals(this.conf.get("isBase64"))) { 21 | state = Base64Uploader.save(this.request.getParameter(filedName), 22 | this.conf); 23 | } else { 24 | state = BinaryUploader.save(this.request, this.conf); 25 | } 26 | 27 | return state; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/background.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/button.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/music.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/net/App_Code/ConfigHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | /// 7 | /// Config 的摘要说明 8 | /// 9 | public class ConfigHandler : Handler 10 | { 11 | public ConfigHandler(HttpContext context) : base(context) { } 12 | 13 | public override void Process() 14 | { 15 | WriteJson(Config.Items); 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/net/App_Code/NotSupportedHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | /// 7 | /// NotSupportedHandler 的摘要说明 8 | /// 9 | public class NotSupportedHandler : Handler 10 | { 11 | public NotSupportedHandler(HttpContext context) 12 | : base(context) 13 | { 14 | } 15 | 16 | public override void Process() 17 | { 18 | WriteJson(new 19 | { 20 | state = "action 参数为空或者 action 不被支持。" 21 | }); 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/net/Bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/net/Bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/net/Bin/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/net/Bin/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/net/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/charts.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/filescan.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/lock.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/scale.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/sortable.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/upload.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/word.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/ueditor/1.4.3/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/ueditor/1.4.3/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 2 | 3 | 4 | 5 | WebUploader演示 - 带裁剪功能 6 | 7 | 8 | 9 |
10 |
11 |
html5版本
12 |
flash版本
13 |
14 |
console 会影响 md5 时间的计算,所以在测试 md5 速度的时候,把 console 关了
15 |
16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/webuploader/0.1.5/server/crossdomain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/apiMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/apiMenu.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/apiMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/apiMenu.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/background.jpg -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/chinese.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/close.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/contact-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/contact-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/english.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/header-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/lightbulb.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_arrow.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_close_IE6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/overlay_close_IE6.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/zTreeStandard.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/apiCss/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/api/apiCss/img/zTreeStandard.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree v3.x 内部的全部方法都可以通过 $.fn.zTree._z 进行调用,开放出来是为了更便于大家开发制作自己的 zTree 插件。

9 |

如无特殊需求请勿使用此对象,以及修改此对象内部的各个函数。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.check.enable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.check.enable

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

设置 zTree 的节点上是否显示 checkbox / radio

9 |

默认值: false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 复选框或单选框

15 |
16 |

setting 举例

17 |

1. 需要显示 checkbox

18 |
var setting = {
19 | 	check: {
20 | 		enable: true
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.keep.leaf.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.data.keep.leaf

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 的节点叶子节点属性锁,是否始终保持 isParent = false

9 |

默认值:false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 锁定 / 不锁定 叶子节点属性

15 |

如果设置为 true,则所有 isParent = false 的节点,都无法添加子节点。

16 |
17 |

setting 举例

18 |

1. 需要锁定叶子节点状态

19 |
var setting = {
20 | 	data: {
21 | 		keep: {
22 | 			leaf: true
23 | 		}
24 | 	}
25 | };
26 | ......
27 |
28 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.keep.parent.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.data.keep.parent

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 的节点父节点属性锁,是否始终保持 isParent = true

9 |

默认值:false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 锁定 / 不锁定 父节点属性

15 |

如果设置为 true,则所有 isParent = true 的节点,即使该节点的子节点被全部删除或移走,依旧保持父节点状态。

16 |
17 |

setting 举例

18 |

1. 需要锁定父节点状态

19 |
var setting = {
20 | 	data: {
21 | 		keep: {
22 | 			parent: true
23 | 		}
24 | 	}
25 | };
26 | ......
27 |
28 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.key.checked.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.checked

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

zTree 节点数据中保存 check 状态的属性名称。

9 |

默认值:"checked"

10 |

请勿与 zTree 节点数据的其他参数冲突,例如:checkedOld

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 isChecked 属性当做节点名称

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			checked: "isChecked"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据中保存子节点数据的属性名称。

9 |

默认值:"children"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 nodes 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点名称的属性名称。

9 |

默认值:"name"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 ename 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.key.title.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.title

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点提示信息的属性名称。[setting.view.showTitle = true 时生效]

9 |

如果设置为 "" ,则自动与 setting.data.key.name 保持一致,避免用户反复设置

10 |

默认值:""

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 fullName 属性当做节点名称

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			title: "fullName"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.data.key.url.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.url

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点链接的目标 URL 的属性名称。

9 |

特殊用途:当后台数据只能生成 url 属性,又不想实现点击节点跳转的功能时,可以直接修改此属性为其他不存在的属性名称

10 |

默认值:"url"

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 xUrl 属性当做节点链接的目标 URL

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			url: "xUrl"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.drag.autoOpenTime.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.autoOpenTime

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽时父节点自动展开的延时间隔。 (单位:ms)[setting.edit.enable = true 时生效]

9 |

默认值:500

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 设置拖拽到父节点上立刻自动展开

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			autoOpenTime: 0
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.drag.borderMax.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.borderMax

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽节点成为根节点时的 Tree 内边界范围 (单位:px)。[setting.edit.enable = true 时生效]

9 |

默认值:10

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作节点成为根节点时的 Tree 内边界范围为20px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			borderMax: 20
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.drag.borderMin.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.borderMin

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽节点成为根节点时的 Tree 外边界范围 (单位:px)。[setting.edit.enable = true 时生效]

9 |

默认值:-5

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作节点成为根节点时的 Tree 外边界范围为10px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			borderMin: -10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.drag.maxShowNodeNum.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.maxShowNodeNum

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽多个兄弟节点时,浮动图层中显示的最大节点数。 多余的节点用...代替。[setting.edit.enable = true 时生效]

9 |

默认值:5

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 设置拖拽时最多可显示10个节点

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			maxShowNodeNum: 10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.drag.minMoveSize.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.minMoveSize

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

判定是否拖拽操作的最小位移值 (单位:px)。[setting.edit.enable = true 时生效]

9 |

根据自己的需求可适当调整此值,如果太小容易导致点击鼠标时误操作进行拖拽

10 |

默认值:5

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作启动位移值为10px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			minMoveSize: 10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.edit.editNameSelectAll.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.edit.editNameSelectAll

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

节点编辑名称 input 初次显示时,设置 txt 内容是否为全选状态。 [setting.edit.enable = true 时生效]

9 |

默认值: false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true 表示 全选状态

15 |

false 表示 不是全选状态,光标默认在最后

16 |
17 |

setting 举例

18 |

1. 设置节点编辑名称 input 初次显示时,txt内容为全选状态

19 |
var setting = {
20 | 	edit: {
21 | 		enable: true,
22 | 		editNameSelectAll: true
23 | 	}
24 | };
25 | ......
26 |
27 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 的唯一标识,初始化后,等于 用户定义的 zTree 容器的 id 属性值。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 容器的 jQuery 对象,主要功能:便于操作。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.view.autoCancelSelected.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.autoCancelSelected

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

点击节点时,按下 Ctrl 或 Cmd 键是否允许取消选择操作。

9 |

如果不需要此功能,请设置为 false。

10 |

默认值: true

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true / false 分别表示 支持 / 不支持 配合 Ctrl 或 Cmd 键进行取消节点选择的操作

16 |
17 |

setting 举例

18 |

1. 禁止配合 Ctrl 或 Cmd 键进行取消节点选择的操作

19 |
var setting = {
20 | 	view: {
21 | 		autoCancelSelected: false
22 | 	}
23 | };
24 | ......
25 |
26 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.view.nameIsHTML.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.nameIsHTML

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 name 属性是否支持 HTML 脚本

9 |

如果允许 HTML 脚本,请根据自己的需求做校验,避免出现 js 注入等安全问题。

10 |

默认值: false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true / false 分别表示 支持 / 不支持 HTML 脚本

16 |
17 |

setting 举例

18 |

1. 设置 name 属性支持 HTML 脚本

19 |
var setting = {
20 | 	view: {
21 | 		nameIsHTML: true
22 | 	}
23 | };
24 | var node = {"name":"<font color='red'>test</font>"};
25 | ......
26 |
27 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.view.showLine.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.showLine

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 zTree 是否显示节点之间的连线。

9 |

默认值:true

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 连线

15 |
16 |

setting 举例

17 |

1. 设置 zTree 不显示节点之间的连线

18 |
var setting = {
19 | 	view: {
20 | 		showLine: false
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/setting.view.txtSelectedEnable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.txtSelectedEnable

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 zTree 是否允许可以选择 zTree DOM 内的文本。

9 |

默认值:false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 允许 / 不允许 选择 zTree Dom 内的文本

15 |
16 |

setting & function 举例

17 |

1. 设置 zTree 允许选择文本

18 |
var setting = {
19 | 	view: {
20 | 		txtSelectedEnable: true
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.check_Focus.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.check_Focus

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

用于设置节点的 checkBox / radio 的 focus 状态。[setting.check.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示当前鼠标移动到输入框内

16 |

false 表示当前鼠标移动到输入框外

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

用于保存节点的其他自定义数据信息,不要与 zTree 使用的属性相同即可,用户可随意设定。

9 |
10 |
11 |

treeNode 举例

12 |

1. 设置节点的备用英文名称

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.editNameFlag.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.editNameFlag

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

用于记录节点是否处于编辑名称状态。[setting.edit.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于编辑名称状态

16 |

false 表示节点未处于编辑名称状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.isAjaxing.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isAjaxing

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

记录 treeNode 节点是否正在进行异步加载。

9 |

初始化节点数据时,由 zTree 增加此属性,请勿提前赋值

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true 表示节点正在进行异步加载

15 |

false 表示节点没有进行异步加载

16 |
17 |

treeNode 举例

18 |

1. 查看当前被选中的节点是否节点正在进行异步加载

19 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
20 | var sNodes = treeObj.getSelectedNodes();
21 | if (sNodes.length > 0) {
22 | 	var isAjaxing = sNodes[0].isAjaxing;
23 | }
24 | 
25 |
26 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.isHover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isHover

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

记录节点 的 hover 状态,主要用于 setting.view.addHoverDom / removeHoverDom 。

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于 hover 状态

16 |

false 表示节点未处于 hover 状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.level.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

NumbertreeNode.level

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

记录节点的层级

9 |

初始化节点数据时,由 zTree 增加此属性,请勿提前赋值

10 |
11 |
12 |

Number 格式说明

13 |
14 |

根节点 level = 0,依次递增

15 |
16 |

treeNode 举例

17 |

1. 查看当前被选中的节点的级数

18 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
19 | var sNodes = treeObj.getSelectedNodes();
20 | if (sNodes.length > 0) {
21 | 	var level = sNodes[0].level;
22 | }
23 | 
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

StringtreeNode.name

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

节点名称。

9 |

1、如果不使用 name 属性保存节点名称,请修改 setting.data.key.name

10 |

默认值:无

11 |
12 |
13 |

String 格式说明

14 |
15 |

节点显示的名称字符串,标准 String 即可,所有特殊字符都会被自动转义

16 |
17 |

treeNode 举例

18 |

1. 设置节点的名称为 test1、test2、test3

19 |
var nodes = [
20 | 	{ "id":1, "name":"test1"},
21 | 	{ "id":2, "name":"test2"},
22 | 	{ "id":3, "name":"test3"}
23 | ]
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.tId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

StringtreeNode.tId

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

treeNode 节点的唯一标识 tId。

9 |

初始化节点数据时,由 zTree 增加此属性,请勿提前赋值

10 |
11 |
12 |

String 格式说明

13 |
14 |

生成规则:setting.treeId + "_" + 内部计数

15 |
16 |

treeNode 举例

17 |

1. 查看当前被选中的节点的 tId

18 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
19 | var sNodes = treeObj.getSelectedNodes();
20 | if (sNodes.length > 0) {
21 | 	var tId = sNodes[0].tId;
22 | }
23 | 
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.target.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

StringtreeNode.target

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置点击节点后在何处打开 url。[treeNode.url 存在时有效]

9 |

默认值:无

10 |
11 |
12 |

String 格式说明

13 |
14 |

同超链接 target 属性: "_blank", "_self" 或 其他指定窗口名称

15 |

省略此属性,则默认为 "_blank"

16 |
17 |

treeNode 举例

18 |

1. 设置点击某节点时,弹出新页面

19 |
var nodes = [
20 | 	{ "id":1, "name":"test1", "url":"http://myTest.com", "target":"_blank"},
21 | 	......
22 | ]
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/treeNode.url.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

StringtreeNode.url

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

节点链接的目标 URL

9 |

1、编辑模式 (setting.edit.enable = true) 下此属性功能失效,如果必须使用类似功能,请利用 onClick 事件回调函数自行控制。

10 |

2、如果需要在 onClick 事件回调函数中进行跳转控制,那么请将 URL 地址保存在其他自定义的属性内,请勿使用 url

11 |

默认值:无

12 |
13 |
14 |

String 格式说明

15 |
16 |

同超链接 href 属性

17 |
18 |

treeNode 举例

19 |

1. 设置某节点点击时,跳转到 g.cn

20 |
var nodes = [
21 | 	{ "id":1, "name":"Google CN", "url":"http://g.cn"},
22 | 	......
23 | ]
24 |
25 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/zTreeObj.getSelectedNodes.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Function()zTreeObj.getSelectedNodes

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

获取 zTree 当前被选中的节点数据集合

9 |

请通过 zTree 对象执行此方法。

10 |
11 |
12 |

Function 参数说明

13 |
14 |

返回值Array(JSON)

15 |

当前被选中的节点数据集合

16 |
17 |

function 举例

18 |

1. 获取当前被选中的节点数据集合

19 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
20 | var nodes = treeObj.getSelectedNodes();
21 | 
22 |
23 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/zTreeObj.refresh.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Function()zTreeObj.refresh

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

刷新 zTree 。

9 |

没有特殊必要,尽量不要使用此方法。单个节点更新请使用 updateNode 方法,异步加载模式下请使用 reAsyncChildNodes 方法。

10 |

请通过 zTree 对象执行此方法。

11 |
12 |
13 |

Function 参数说明

14 |
15 |

返回值

16 |

目前无任何返回值

17 |
18 |

function 举例

19 |

1. 刷新 zTree

20 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
21 | treeObj.refresh();
22 | 
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/cn/zTreeObj.setting.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSONzTreeObj.setting

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 对象使用的 setting 配置数据,详细请参考 “setting 配置详解”中的各个属性详细说明

9 |

v3.x 取消了原先操作 setting 的方法,让用户可以较自由的修改参数,但请注意,对于 zTree 初始化有影响的参数后期修改是不会起作用的,请对各个属性有较深入的了解以后再考虑进行修改。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

All of the internal methods in zTree v3.x are available through '$. fn.zTree._z', 9 | use this if you want to develop your own zTree plug-ins.

10 |

Unless you are writing a plugin, 11 | you should not use this object.

12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.check.enable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.check.enable

4 |

Overview[ depends on jquery.ztree.excheck js ]

5 |
6 |

7 |
8 |

Set to use checkbox or radio in zTree

9 |

Default: false

10 |
11 |
12 |

Boolean Format

13 |
14 |

true means: use the checkbox or radio

15 |

false means: don't use the checkbox or radio

16 |
17 |

Examples of setting

18 |

1. use the checkbox

19 |
var setting = {
20 | 	check: {
21 | 		enable: true
22 | 	}
23 | };
24 | ......
25 |
26 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.data.key.checked.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.checked

4 |

Overview[ depends on jquery.ztree.excheck js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the checked state.

9 |

Default: "checked"

10 |

Please don't set the other node attribute which zTree used. (e.g., checkedOld)

11 |
12 |
13 |

Examples of setting

14 |

1. set the 'isChecked' attribute to save the checked state.

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			checked: "isChecked"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the child nodes.

9 |

Default: "children"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'nodes' attribute to save the child nodes.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the node name.

9 |

Default: "name"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'ename' attribute to save the node name.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree unique identifier. After the initialization, it equals to the id attribute value of the user-defined zTree container.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree DOM's jQuery object, the main function: easy to internal operations.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/setting.view.showLine.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.showLine

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

Set to show or hide line.

9 |

Default: true

10 |
11 |
12 |

Boolean Format

13 |
14 |

true means: show line.

15 |

false means: hide line.

16 |
17 |

Examples of setting

18 |

1. Hide line

19 |
var setting = {
20 | 	view: {
21 | 		showLine: false
22 | 	}
23 | };
24 | ......
25 |
26 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/treeNode.check_Focus.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.check_Focus

4 |

Overview[ depends on jquery.ztree.excheck js ]

5 |
6 |

7 |
8 |

Used to record the status which the checkbox or radio get focus. It is valid when [setting.check.enable = true]

9 |

Do not initialize or modify it, it is an internal argument.

10 |

Default: false

11 |
12 |
13 |

Boolean Format

14 |
15 |

true means: mouse move over the checkbox

16 |

false means: mouse move out the checkbox

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

Used to save other custom data of node, do not use the same attribute name with ztree used, the user can freely set.

9 |
10 |
11 |

Examples of treeNode

12 |

1. Use 'ename' attribute to save more info

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/treeNode.editNameFlag.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.editNameFlag

4 |

Overview[ depends on jquery.ztree.exedit js ]

5 |
6 |

7 |
8 |

Used to save the node editing name status. It is valid when [setting.edit.enable = true]

9 |

Do not initialize or modify it, it is an internal argument.

10 |

Default: false

11 |
12 |
13 |

Boolean Format

14 |
15 |

true means: node is being edited.

16 |

false means: node is not being edited.

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/treeNode.isHover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isHover

4 |

Overview[ depends on jquery.ztree.exedit js ]

5 |
6 |

7 |
8 |

Used to record the hover status of node's DOM. For 'setting.view.addHoverDom / removeHoverDom'.

9 |

Do not initialize or modify it, it is an internal argument.

10 |

Default: false

11 |
12 |
13 |

Boolean Format

14 |
15 |

true means: the node's DOM is in hover.

16 |

false means: the node's DOM is not in hover.

17 |
18 |
19 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/api/en/zTreeObj.setting.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSONzTreeObj.setting

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The configuration data of zTree, refer to "setting details"

9 |

zTree v3.x to cancel the original operation setting method, so users can modify.

10 |

Note: Modify the parameters which affect zTree initialization will not work, please first understand the different attributes.

11 |
12 |
13 |
14 |
-------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/lib/zTree/v3/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/css/style.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 你自己的样式 */ 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/acrossTab/acrossTab-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/acrossTab/acrossTab-2.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/admin-login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/admin-login-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/admin-loginform-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/admin-loginform-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/cn.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/images/um.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/images/um.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/js/de_DE.txt: -------------------------------------------------------------------------------- 1 | { 2 | "processing": "处理中...", 3 | "lengthMenu": "每页显示 _MENU_ 条", 4 | "zeroRecords": "没有找到匹配的记录", 5 | "sProcessing": "<img src=’./loading.gif’ />", 6 | "info": "显示 _START_ 到 _END_ ,共 _TOTAL_ 条", 7 | "infoEmpty": "0条", 8 | "infoFiltered": "(从 _MAX_ 条中过滤)", 9 | "infoPostFix": "", 10 | "search": "当前检索", 11 | "url": "", 12 | "paginate": { 13 | "first": "第一页", 14 | "previous": "上一页", 15 | "next": "下一页", 16 | "last": "最后一页" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/blue/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/blue/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/blue/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/blue/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/blue/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/blue/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/default/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/default/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/default/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/default/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/default/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/default/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/green/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/green/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/green/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/green/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/green/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/green/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/orange/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/orange/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/orange/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/orange/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/orange/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/orange/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/red/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/red/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/red/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/red/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/red/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/red/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/yellow/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/yellow/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/yellow/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/yellow/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui.admin/skin/yellow/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui.admin/skin/yellow/icon_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/Hui-tags/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/Hui-tags/empty.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/acrossTab/acrossTab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/acrossTab/acrossTab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/acrossTab/acrossTab-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/acrossTab/acrossTab-close.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/acrossTab/acrossTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/acrossTab/acrossTab.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/dataTable/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/dataTable/sort_asc.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/dataTable/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/dataTable/sort_both.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/dataTable/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/dataTable/sort_desc.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/dropDown/icon-jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/dropDown/icon-jt.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/201.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/201.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/202.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/202.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/203.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/203.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/204.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/204.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/205.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/205.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/206.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/206.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/207.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/207.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/208.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/208.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/209.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/209.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/210.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/210.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/100.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/101.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/102.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/103.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/104.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/105.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/106.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/72.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/73.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/74.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/75.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/76.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/77.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/78.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/79.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/80.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/81.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/82.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/83.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/84.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/85.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/86.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/87.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/88.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/89.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/90.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/91.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/92.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/93.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/94.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/95.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/96.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/97.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/98.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/face/QQ/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/face/QQ/99.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/aero.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/aero@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/blue.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/blue@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/green.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/green@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/grey.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/grey@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/minimal.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/minimal@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/orange.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/orange@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/pink.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/pink@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/purple.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/purple@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/red.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/red@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/yellow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iCheck/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iCheck/yellow@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/iconpic-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/iconpic-arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/jselect/iconpic-arrow-down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/jselect/iconpic-arrow-down2.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/loading/loading-b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/loading/loading-b.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/loading/loading-s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/loading/loading-s.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/rollpic/unslider-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/rollpic/unslider-arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/star/iconpic-star-S-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/star/iconpic-star-S-default.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/star/iconpic-star-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/star/iconpic-star-S.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/steps/step_arrow-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/steps/step_arrow-active.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/steps/step_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/steps/step_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/steps/step_bg-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/steps/step_bg-active.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/steps/step_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/steps/step_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/ucnter/avatar-default-S.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/ucnter/avatar-default-S.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/ucnter/avatar-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/ucnter/avatar-default.jpg -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/ucnter/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/ucnter/avatar.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/ucnter/noavatar_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/ucnter/noavatar_small.gif -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/validform/iconpic-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/validform/iconpic-error.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/validform/iconpic-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/validform/iconpic-right.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/validform/iconpic-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/validform/iconpic-warning.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav-active.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav-hover.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right-active.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right-hover.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tabNav_right.png -------------------------------------------------------------------------------- /src/main/resources/static/static/h-ui/images/verticalTab/tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/static/h-ui/images/verticalTab/tab_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/temp/200x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/200x150.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/chai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/chai.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/chufang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/chufang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/keting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/keting.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/keting2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/keting2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/keting3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/keting3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/keting4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/keting4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/shouju.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/shouju.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/shufang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/shufang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/weishengjian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/weishengjian.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/weishengjian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/weishengjian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/woshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/woshi.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/Thumb/youyongchi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/Thumb/youyongchi.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/chai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/chai.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/chufang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/chufang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/keting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/keting.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/keting2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/keting2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/keting3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/keting3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/keting4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/keting4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/shouju.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/shouju.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/shufang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/shufang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/weishengjian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/weishengjian.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/weishengjian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/weishengjian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/woshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/woshi.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/big/youyongchi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/big/youyongchi.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/brand/ambio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/brand/ambio.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/brand/dongpeng.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/brand/dongpeng.jpeg -------------------------------------------------------------------------------- /src/main/resources/static/temp/brand/shengxiang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/brand/shengxiang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/product/Thumb/5345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/product/Thumb/5345.jpg -------------------------------------------------------------------------------- /src/main/resources/static/temp/product/Thumb/6204.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestrow/crms/ebeb29d337275c585d5197c54a4d736b1207cf16/src/main/resources/static/temp/product/Thumb/6204.jpg -------------------------------------------------------------------------------- /src/test/java/com/example/cra/CraApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.example.cra; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class CraApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | --------------------------------------------------------------------------------