├── .DS_Store ├── .gitattributes ├── README.md ├── WebRoot ├── 404.jsp ├── META-INF │ ├── MANIFEST.MF │ └── context.xml ├── WEB-INF │ ├── lib │ │ ├── aopalliance-1.0.jar │ │ ├── asm-3.3.1.jar │ │ ├── aspectjweaver-1.6.9.jar │ │ ├── c3p0-0.9.1.2.jar │ │ ├── cglib-2.2.2.jar │ │ ├── cglib-nodep-2.2.jar │ │ ├── commons-beanutils-1.7.0.jar │ │ ├── commons-beanutils.jar │ │ ├── commons-collections-3.2.1.jar │ │ ├── commons-collections-3.2.jar │ │ ├── commons-dbcp-1.4.jar │ │ ├── commons-fileupload-1.2.jar │ │ ├── commons-fileupload.jar │ │ ├── commons-httpclient-3.1.jar │ │ ├── commons-httpclient.jar │ │ ├── commons-io.jar │ │ ├── commons-lang-2.5.jar │ │ ├── commons-lang.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── commons-logging.jar │ │ ├── commons-pool-1.5.3.jar │ │ ├── ezmorph-1.0.5.jar │ │ ├── javassist-3.17.1-GA.jar │ │ ├── javax.servlet.jsp.jstl.jar │ │ ├── json-lib-2.2-jdk15.jar │ │ ├── json_simple-1.1.jar │ │ ├── jsp-api.jar │ │ ├── jspsmartupload.jar │ │ ├── jstl-impl.jar │ │ ├── jxl.jar │ │ ├── log4j-1.2.16.jar │ │ ├── log4j-1.2.17.jar │ │ ├── mybatis-3.2.2.jar │ │ ├── mybatis-generator-core-1.3.2.jar │ │ ├── mybatis-spring-1.2.2.jar │ │ ├── mysql-connector-java-5.1.18-bin.jar │ │ ├── mysql-connector-java-5.1.34.jar │ │ ├── ojdbc6.jar │ │ ├── org.springframework.aop-3.1.1.RELEASE.jar │ │ ├── org.springframework.asm-3.1.1.RELEASE.jar │ │ ├── org.springframework.aspects-3.1.1.RELEASE.jar │ │ ├── org.springframework.beans-3.1.1.RELEASE.jar │ │ ├── org.springframework.context-3.1.1.RELEASE.jar │ │ ├── org.springframework.context.support-3.1.1.RELEASE.jar │ │ ├── org.springframework.core-3.1.1.RELEASE.jar │ │ ├── org.springframework.expression-3.1.1.RELEASE.jar │ │ ├── org.springframework.instrument-3.1.1.RELEASE.jar │ │ ├── org.springframework.instrument.tomcat-3.1.1.RELEASE.jar │ │ ├── org.springframework.jdbc-3.1.1.RELEASE.jar │ │ ├── org.springframework.jms-3.1.1.RELEASE.jar │ │ ├── org.springframework.orm-3.1.1.RELEASE.jar │ │ ├── org.springframework.oxm-3.1.1.RELEASE.jar │ │ ├── org.springframework.transaction-3.1.1.RELEASE.jar │ │ ├── org.springframework.web-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.portlet-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.servlet-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.struts-3.1.1.RELEASE.jar │ │ ├── servlet-api.jar │ │ ├── slf4j-api-1.7.5.jar │ │ └── slf4j-log4j12-1.7.5.jar │ └── web.xml ├── addBbs.jsp ├── admin │ ├── 404.jsp │ ├── bbs_list.jsp │ ├── bbs_update.jsp │ ├── css │ │ ├── children.css │ │ ├── children.min.css │ │ ├── main.css │ │ ├── style.css │ │ └── util.css │ ├── error.jsp │ ├── fonts │ │ ├── font-awesome-4.7.0 │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ └── iconic │ │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ ├── goods_add.jsp │ ├── goods_list.jsp │ ├── goods_tj.jsp │ ├── goods_update.jsp │ ├── images │ │ ├── 20171120.jpg │ │ ├── 20180604.jpg │ │ ├── 20190415.jpg │ │ ├── X.png │ │ ├── Y.png │ │ ├── ban_yuan.png │ │ ├── bg-01.jpg │ │ ├── bg_default.jpg │ │ ├── flag.png │ │ ├── head.jpg │ │ ├── hong.png │ │ ├── honor_1.png │ │ ├── honor_2.png │ │ ├── honor_3.png │ │ ├── icon_01.png │ │ ├── icon_02.png │ │ ├── icon_03.png │ │ ├── icon_04.png │ │ ├── icon_05.png │ │ ├── icon_06.png │ │ ├── icon_add.png │ │ ├── jiant.png │ │ ├── jiant1.png │ │ ├── jiant3.png │ │ ├── jl.jpg │ │ ├── jt_left.png │ │ ├── logo01.png │ │ ├── logo_touming.gif │ │ ├── logotxt.png │ │ ├── mor_bj.jpg │ │ ├── mor_bj1.jpg │ │ ├── mor_bj2.jpg │ │ ├── mor_bj3.jpg │ │ ├── mor_bj4.jpg │ │ ├── my_in.png │ │ ├── rgba2.png │ │ ├── rgba3.png │ │ ├── riq.png │ │ ├── sm_icon01.png │ │ ├── sm_icon02.png │ │ ├── sm_icon03.png │ │ ├── sm_icon04.png │ │ ├── sm_icon05.png │ │ ├── sm_icon06.png │ │ ├── top_exit.png │ │ ├── top_home.png │ │ ├── top_person.png │ │ └── word.png │ ├── index.jsp │ ├── index2.jsp │ ├── js │ │ ├── Tdrag.min.js │ │ ├── echarts.min.js │ │ ├── jquery-1.11.0.min.js │ │ ├── main.js │ │ ├── typeSave.js │ │ └── userAdd.js │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── icon1.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── rate.js │ │ │ │ ├── slider.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ ├── layui.all.min.js │ │ └── layui.js │ ├── login.jsp │ ├── news_add.jsp │ ├── news_list.jsp │ ├── news_update.jsp │ ├── order_detail.jsp │ ├── order_list.jsp │ ├── success.jsp │ ├── type_add.jsp │ ├── type_list.jsp │ ├── type_update.jsp │ ├── user_add.jsp │ ├── user_list.jsp │ ├── user_update.jsp │ ├── user_update_persion.jsp │ └── vendor │ │ ├── bootstrap │ │ └── css │ │ │ └── bootstrap.min.css │ │ └── jquery │ │ └── jquery-3.2.1.min.js ├── bbs_list.jsp ├── bbsx.jsp ├── car_list.jsp ├── css │ ├── bootstrap.min.css │ ├── color.css │ ├── custom.css │ ├── magnefic-popup.min.css │ ├── meanmenu.css │ ├── nice-select.min.css │ ├── plugins.css │ ├── range-slider.css │ ├── slick.min.css │ ├── style.css │ ├── style.css.map │ └── themify-icons.min.css ├── err_cz.jsp ├── error_fore.jsp ├── error_login.jsp ├── fonts │ ├── slick.eot │ ├── slick.svg │ ├── slick.ttf │ ├── slick.woff │ ├── themify.eot │ ├── themify.svg │ ├── themify.ttf │ └── themify.woff ├── foot.jsp ├── foot2.jsp ├── goods_List.jsp ├── goodsx.jsp ├── img │ ├── ajax-loader.gif │ ├── author-image │ │ ├── author-image-1.png │ │ └── author-image-2.png │ ├── banners │ │ ├── banner-image-1.jpg │ │ ├── banner-image-10.jpg │ │ ├── banner-image-11.jpg │ │ ├── banner-image-2.jpg │ │ ├── banner-image-3.jpg │ │ ├── banner-image-4.jpg │ │ ├── banner-image-5.jpg │ │ ├── banner-image-6.jpg │ │ ├── banner-image-7.jpg │ │ ├── banner-image-8.jpg │ │ ├── banner-image-9.jpg │ │ ├── bg-banner-1.jpg │ │ ├── bg-banner-2.jpg │ │ ├── contact-banner.jpg │ │ └── widget-banner-1.jpg │ ├── bg │ │ ├── bg-breadcrumb-1.jpg │ │ └── bg-image-1.jpg │ ├── blog │ │ ├── blog-details │ │ │ └── blog-image-1.jpg │ │ ├── blog-image-1.jpg │ │ ├── blog-image-2.jpg │ │ ├── blog-image-3.jpg │ │ ├── blog-image-4.jpg │ │ ├── blog-image-5.jpg │ │ ├── blog-image-6.jpg │ │ ├── blog-image-7.jpg │ │ └── blog-image-8.jpg │ ├── brand-logos │ │ ├── brand-logo-1.jpg │ │ ├── brand-logo-2.jpg │ │ ├── brand-logo-3.jpg │ │ └── brand-logo-4.jpg │ ├── favicon.ico │ ├── hero-image │ │ ├── hero-image-1.png │ │ ├── hero-image-2.png │ │ ├── hero-image-3.png │ │ ├── hero-image-4.png │ │ └── hero-image-5.png │ ├── icon.png │ ├── icons │ │ ├── icon-close.png │ │ ├── icon-origami.svg │ │ ├── icon-present.svg │ │ ├── icon-reload.svg │ │ ├── icon-support.svg │ │ ├── marker.png │ │ ├── payment.png │ │ └── triangle-icon-dark.png │ ├── logo │ │ ├── logo-dark.png │ │ ├── logo-light.png │ │ └── logo-theme.png │ ├── others │ │ └── about-image.jpg │ ├── product │ │ ├── large-size │ │ │ ├── product-image-1.jpg │ │ │ ├── product-image-2.jpg │ │ │ ├── product-image-3.jpg │ │ │ ├── product-image-4.jpg │ │ │ └── product-image-5.jpg │ │ ├── mini-size │ │ │ ├── product-image-mini-1.png │ │ │ ├── product-image-mini-10.png │ │ │ ├── product-image-mini-11.png │ │ │ ├── product-image-mini-12.png │ │ │ ├── product-image-mini-2.png │ │ │ ├── product-image-mini-3.png │ │ │ ├── product-image-mini-4.png │ │ │ ├── product-image-mini-5.png │ │ │ ├── product-image-mini-6.png │ │ │ ├── product-image-mini-7.png │ │ │ ├── product-image-mini-8.png │ │ │ └── product-image-mini-9.png │ │ ├── small-size │ │ │ ├── product-image-1.jpg │ │ │ ├── product-image-2.jpg │ │ │ ├── product-image-3.jpg │ │ │ ├── product-image-4.jpg │ │ │ ├── product-image-5.jpg │ │ │ └── product-image-6.jpg │ │ └── thumbnail-size │ │ │ ├── product-image-1.jpg │ │ │ ├── product-image-10.jpg │ │ │ ├── product-image-11.jpg │ │ │ ├── product-image-12.jpg │ │ │ ├── product-image-13.jpg │ │ │ ├── product-image-14.jpg │ │ │ ├── product-image-15.jpg │ │ │ ├── product-image-16.jpg │ │ │ ├── product-image-17.jpg │ │ │ ├── product-image-18.jpg │ │ │ ├── product-image-2.jpg │ │ │ ├── product-image-3.jpg │ │ │ ├── product-image-4.jpg │ │ │ ├── product-image-5.jpg │ │ │ ├── product-image-6.jpg │ │ │ ├── product-image-7.jpg │ │ │ ├── product-image-8.jpg │ │ │ └── product-image-9.jpg │ ├── team-member │ │ ├── team-member-1.jpg │ │ ├── team-member-2.jpg │ │ └── team-member-3.jpg │ └── zhifu.png ├── index.jsp ├── index2.jsp ├── js │ ├── ajax-mail.js │ ├── bootstrap.min.js │ ├── google-map.js │ ├── jquery-1.11.0.min.js │ ├── main.js │ ├── plugins.js │ ├── popper.min.js │ ├── shop.js │ ├── userAdd.js │ └── vendor │ │ ├── jquery-3.3.1.min.js │ │ └── modernizr-3.6.0.min.js ├── kindeditor │ ├── asp.net │ │ ├── README.txt │ │ ├── bin │ │ │ └── LitJSON.dll │ │ ├── demo.aspx │ │ ├── file_manager_json.ashx │ │ └── upload_json.ashx │ ├── asp │ │ ├── JSON_2.0.4.asp │ │ ├── UpLoad_Class.asp │ │ ├── demo.asp │ │ ├── file_manager_json.asp │ │ └── upload_json.asp │ ├── examples │ │ ├── auto-height.html │ │ ├── colorpicker.html │ │ ├── custom-plugin.html │ │ ├── custom-theme.html │ │ ├── default.html │ │ ├── dialog.html │ │ ├── dynamic-load.html │ │ ├── file-dialog.html │ │ ├── file-manager.html │ │ ├── filter-mode.html │ │ ├── image-dialog.html │ │ ├── index.css │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── jquery-ui │ │ │ ├── css │ │ │ │ └── smoothness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui-1.9.2.custom.css │ │ │ │ │ └── jquery-ui-1.9.2.custom.min.css │ │ │ └── js │ │ │ │ ├── jquery-ui-1.9.2.custom.js │ │ │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery.html │ │ ├── jquery.js │ │ ├── multi-image-dialog.html │ │ ├── multi-language.html │ │ ├── newline.html │ │ ├── node.html │ │ ├── paste-type.html │ │ ├── qqstyle.html │ │ ├── readonly.html │ │ ├── simple.html │ │ ├── uploadbutton.html │ │ ├── url-type.html │ │ └── word-count.html │ ├── jsp │ │ ├── README.txt │ │ ├── demo.jsp │ │ ├── file_manager_json.jsp │ │ ├── lib │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ ├── commons-io-1.4.jar │ │ │ └── json_simple-1.1.jar │ │ └── upload_json.jsp │ ├── kindeditor-all-min.js │ ├── kindeditor-all.js │ ├── kindeditor-min.js │ ├── kindeditor.js │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── ko.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── php │ │ ├── JSON.php │ │ ├── demo.php │ │ ├── file_manager_json.php │ │ └── upload_json.php │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── autoheight │ │ │ └── autoheight.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 100.gif │ │ │ │ ├── 101.gif │ │ │ │ ├── 102.gif │ │ │ │ ├── 103.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 105.gif │ │ │ │ ├── 106.gif │ │ │ │ ├── 107.gif │ │ │ │ ├── 108.gif │ │ │ │ ├── 109.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 110.gif │ │ │ │ ├── 111.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 113.gif │ │ │ │ ├── 114.gif │ │ │ │ ├── 115.gif │ │ │ │ ├── 116.gif │ │ │ │ ├── 117.gif │ │ │ │ ├── 118.gif │ │ │ │ ├── 119.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 120.gif │ │ │ │ ├── 121.gif │ │ │ │ ├── 122.gif │ │ │ │ ├── 123.gif │ │ │ │ ├── 124.gif │ │ │ │ ├── 125.gif │ │ │ │ ├── 126.gif │ │ │ │ ├── 127.gif │ │ │ │ ├── 128.gif │ │ │ │ ├── 129.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 130.gif │ │ │ │ ├── 131.gif │ │ │ │ ├── 132.gif │ │ │ │ ├── 133.gif │ │ │ │ ├── 134.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 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 │ │ │ │ └── static.gif │ │ ├── filemanager │ │ │ ├── filemanager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash │ │ │ └── flash.js │ │ ├── image │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.png │ │ ├── insertfile │ │ │ └── insertfile.js │ │ ├── lineheight │ │ │ └── lineheight.js │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ ├── media │ │ │ └── media.js │ │ ├── multiimage │ │ │ ├── images │ │ │ │ ├── image.png │ │ │ │ ├── select-files-en.png │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ └── swfupload.swf │ │ │ └── multiimage.js │ │ ├── pagebreak │ │ │ └── pagebreak.js │ │ ├── plainpaste │ │ │ └── plainpaste.js │ │ ├── preview │ │ │ └── preview.js │ │ ├── quickformat │ │ │ └── quickformat.js │ │ ├── table │ │ │ └── table.js │ │ ├── template │ │ │ ├── html │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ └── template.js │ │ └── wordpaste │ │ │ └── wordpaste.js │ └── themes │ │ ├── common │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default │ │ ├── background.png │ │ ├── default.css │ │ └── default.png │ │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ │ └── simple │ │ └── simple.css ├── login.jsp ├── myorderlist.jsp ├── newsList.jsp ├── newsx.jsp ├── noOrder.jsp ├── nologin.jsp ├── orderx.jsp ├── regist.jsp ├── scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── basic │ │ ├── _animations.scss │ │ ├── _reset.scss │ │ ├── _typography.scss │ │ └── _utilities.scss │ ├── blocks │ │ ├── _about.scss │ │ ├── _banner.scss │ │ ├── _blog-item.scss │ │ ├── _comments.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _header.scss │ │ ├── _hero-slider.scss │ │ ├── _minicart.scss │ │ ├── _navigation.scss │ │ ├── _newsletter.scss │ │ ├── _product-details.scss │ │ ├── _product.scss │ │ ├── _shop-page.scss │ │ ├── _support.scss │ │ ├── _team-member.scss │ │ └── _widgets.scss │ ├── elements │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _pagination.scss │ │ ├── _progress.scss │ │ ├── _section-title.scss │ │ ├── _shop-toolbars.scss │ │ ├── _slider-elements.scss │ │ └── _social-icons.scss │ ├── pages │ │ ├── _cart.scss │ │ ├── _checkout.scss │ │ ├── _compare.scss │ │ └── _my-account.scss │ └── style.scss ├── showUserinfo.jsp ├── success.jsp ├── top.jsp ├── updateMoney.jsp └── upload │ ├── 2222.jpg │ ├── head.jpg │ ├── u=1045070544,122660903&fm=26&gp=0.jpg │ ├── u=13817902,3773003626&fm=15&gp=0.jpg │ ├── u=1417376669,1484393435&fm=214&gp=0.jpg │ ├── u=1815200850,2404805575&fm=26&gp=0.jpg │ ├── u=1824058507,3591465435&fm=26&gp=0.jpg │ ├── u=2299554852,1457149679&fm=26&gp=0.jpg │ ├── u=2610044188,1651506069&fm=26&gp=0.jpg │ ├── u=3051595091,2451375513&fm=26&gp=0.jpg │ ├── u=3432959313,610374323&fm=15&gp=0.jpg │ ├── u=3447255015,2782201405&fm=26&gp=0.jpg │ ├── u=3491441648,2108724052&fm=15&gp=0.jpg │ ├── u=3602657960,1951750931&fm=26&gp=0.jpg │ ├── u=3650899014,375092003&fm=26&gp=0.jpg │ ├── u=4272221629,935508397&fm=11&gp=0.jpg │ └── zanwu.jpg └── src ├── applicationContext.xml ├── com ├── controller │ ├── BbsController.java │ ├── ForderController.java │ ├── FtypeController.java │ ├── GoodsController.java │ ├── ImgCodeController.java │ ├── NewsController.java │ └── SysuserController.java ├── dao │ ├── BbsMapper.java │ ├── BbsMapper2.java │ ├── ForderMapper.java │ ├── FshopMapper.java │ ├── FshopMapper2.java │ ├── FtypeMapper.java │ ├── GoodsMapper.java │ ├── GoodsMapper2.java │ ├── NewsMapper.java │ ├── SysuserMapper.java │ └── SysuserMapper2.java ├── entity │ ├── Bbs.java │ ├── BbsWithBLOBs.java │ ├── Forder.java │ ├── Fshop.java │ ├── Ftype.java │ ├── Goods.java │ ├── News.java │ ├── Sysuser.java │ └── TongJi.java ├── mapper │ ├── BbsMapper.xml │ ├── ForderMapper.xml │ ├── FshopMapper.xml │ ├── FtypeMapper.xml │ ├── GoodsMapper.xml │ ├── NewsMapper.xml │ └── SysuserMapper.xml ├── server │ ├── BbsServer.java │ ├── ForderServer.java │ ├── FshopServer.java │ ├── FtypeServer.java │ ├── GoodsServer.java │ ├── NewsServer.java │ ├── SysuserServier.java │ └── impl │ │ ├── BbsServerImpi.java │ │ ├── ForderServerImpi.java │ │ ├── FshopServerImpi.java │ │ ├── FtypeSeverImpi.java │ │ ├── GoodsServerImpi.java │ │ ├── NewsServerImpi.java │ │ └── SysuserServiceImpi.java └── util │ ├── CheckCodeServlet.java │ ├── ImgCodeUtil.java │ ├── Info.java │ ├── Md5.java │ ├── PageBean.java │ ├── SetChar.java │ ├── StrUtil.java │ └── testFilter.java ├── mybatis-config.xml └── springMVC-config.xml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjweaver-1.6.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/aspectjweaver-1.6.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/cglib-2.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-nodep-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/cglib-nodep-2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-beanutils.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-collections-3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-fileupload-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-fileupload.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-httpclient.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-httpclient.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-io.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-lang-2.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-lang.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-logging.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-pool-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/commons-pool-1.5.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ezmorph-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/ezmorph-1.0.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javax.servlet.jsp.jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/javax.servlet.jsp.jstl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json-lib-2.2-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/json-lib-2.2-jdk15.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/json_simple-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/jsp-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jspsmartupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/jspsmartupload.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/jstl-impl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jxl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/jxl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/log4j-1.2.16.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/mybatis-3.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-generator-core-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/mybatis-generator-core-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-spring-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/mybatis-spring-1.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.18-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.18-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.34.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.34.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ojdbc6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/ojdbc6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.aop-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.aop-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.asm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.asm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.aspects-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.aspects-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.beans-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.beans-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.context-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.context-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.context.support-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.context.support-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.core-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.core-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.expression-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.expression-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.instrument-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.instrument-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.instrument.tomcat-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.instrument.tomcat-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.jdbc-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.jdbc-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.jms-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.jms-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.orm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.orm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.oxm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.oxm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.transaction-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.transaction-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.web-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.portlet-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.web.portlet-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.servlet-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.web.servlet-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.struts-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/org.springframework.web.struts-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/admin/404.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | <%-- --%> 9 | 10 |
11 | 12 |

非常遗憾,您访问的页面不存在!确认下你的操作是否有误!

13 | 14 | 15 | 16 |
17 | 18 | <%-- --%> 19 | -------------------------------------------------------------------------------- /WebRoot/admin/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | <%-- --%> 9 |
10 | 11 |

对不起!操作失败!

12 | 13 |
返回登录页面
14 | 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /WebRoot/admin/images/20171120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/20171120.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/20180604.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/20180604.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/20190415.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/20190415.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/X.png -------------------------------------------------------------------------------- /WebRoot/admin/images/Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/Y.png -------------------------------------------------------------------------------- /WebRoot/admin/images/ban_yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/ban_yuan.png -------------------------------------------------------------------------------- /WebRoot/admin/images/bg-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/bg-01.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/bg_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/bg_default.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/flag.png -------------------------------------------------------------------------------- /WebRoot/admin/images/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/head.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/hong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/hong.png -------------------------------------------------------------------------------- /WebRoot/admin/images/honor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/honor_1.png -------------------------------------------------------------------------------- /WebRoot/admin/images/honor_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/honor_2.png -------------------------------------------------------------------------------- /WebRoot/admin/images/honor_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/honor_3.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_01.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_02.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_03.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_04.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_05.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_06.png -------------------------------------------------------------------------------- /WebRoot/admin/images/icon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/icon_add.png -------------------------------------------------------------------------------- /WebRoot/admin/images/jiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/jiant.png -------------------------------------------------------------------------------- /WebRoot/admin/images/jiant1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/jiant1.png -------------------------------------------------------------------------------- /WebRoot/admin/images/jiant3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/jiant3.png -------------------------------------------------------------------------------- /WebRoot/admin/images/jl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/jl.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/jt_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/jt_left.png -------------------------------------------------------------------------------- /WebRoot/admin/images/logo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/logo01.png -------------------------------------------------------------------------------- /WebRoot/admin/images/logo_touming.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/logo_touming.gif -------------------------------------------------------------------------------- /WebRoot/admin/images/logotxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/logotxt.png -------------------------------------------------------------------------------- /WebRoot/admin/images/mor_bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/mor_bj.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/mor_bj1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/mor_bj1.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/mor_bj2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/mor_bj2.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/mor_bj3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/mor_bj3.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/mor_bj4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/mor_bj4.jpg -------------------------------------------------------------------------------- /WebRoot/admin/images/my_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/my_in.png -------------------------------------------------------------------------------- /WebRoot/admin/images/rgba2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/rgba2.png -------------------------------------------------------------------------------- /WebRoot/admin/images/rgba3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/rgba3.png -------------------------------------------------------------------------------- /WebRoot/admin/images/riq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/riq.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon01.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon02.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon03.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon04.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon05.png -------------------------------------------------------------------------------- /WebRoot/admin/images/sm_icon06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/sm_icon06.png -------------------------------------------------------------------------------- /WebRoot/admin/images/top_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/top_exit.png -------------------------------------------------------------------------------- /WebRoot/admin/images/top_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/top_home.png -------------------------------------------------------------------------------- /WebRoot/admin/images/top_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/top_person.png -------------------------------------------------------------------------------- /WebRoot/admin/images/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/images/word.png -------------------------------------------------------------------------------- /WebRoot/admin/index.jsp: -------------------------------------------------------------------------------- 1 | <%response.sendRedirect("http://localhost:8080/tongchengweixiu/admin/login.jsp"); %> 2 | -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/icon1.png -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/font/iconfont.eot -------------------------------------------------------------------------------- /WebRoot/admin/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /WebRoot/admin/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/font/iconfont.woff -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/0.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/1.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/10.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/11.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/12.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/13.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/14.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/15.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/16.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/17.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/18.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/19.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/2.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/20.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/21.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/22.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/23.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/24.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/25.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/26.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/27.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/28.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/29.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/3.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/30.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/31.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/32.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/33.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/34.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/35.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/36.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/37.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/38.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/39.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/4.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/40.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/41.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/42.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/43.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/44.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/45.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/46.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/47.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/48.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/49.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/5.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/50.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/51.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/52.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/53.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/54.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/55.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/56.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/57.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/58.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/59.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/6.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/60.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/61.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/62.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/63.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/64.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/65.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/66.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/67.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/68.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/69.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/7.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/70.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/71.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/8.gif -------------------------------------------------------------------------------- /WebRoot/admin/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/admin/layui/images/face/9.gif -------------------------------------------------------------------------------- /WebRoot/admin/success.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 |
9 |

恭喜您操作成功!

10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /WebRoot/css/color.css: -------------------------------------------------------------------------------- 1 | 2 | .single-hero-item .hero-content p{ 3 | color: #ffffff; 4 | } 5 | .hero-area.slider-navigation-1 .slider-navigation{ 6 | border-color: rgba(255, 255, 255, 0.8); 7 | color: rgba(255, 255, 255, 0.8); 8 | } 9 | .header-bottom-area{ 10 | background: #000000; 11 | } 12 | .product-item-badge{ 13 | background: #333333; 14 | } 15 | .sticky-header.is-sticky .header-bottom-area{ 16 | box-shadow: 0 0 3px rgba(255, 255, 255, 0.2); 17 | } -------------------------------------------------------------------------------- /WebRoot/css/custom.css: -------------------------------------------------------------------------------- 1 | /********************************************************************************* 2 | 3 | Template Name: 同城上门维修平台 4 | Description: A perfect template to build beautiful and unique eCommerce websites. It comes with nice and clean design. 5 | Version: 1.0 6 | 7 | Note: This is custom css. 8 | 9 | **********************************************************************************/ -------------------------------------------------------------------------------- /WebRoot/css/plugins.css: -------------------------------------------------------------------------------- 1 | /********************************************************************************* 2 | 3 | Template Name: 同城上门维修平台 4 | Description: A perfect template to build beautiful and unique eCommerce websites. It comes with nice and clean design. 5 | Version: 1.0 6 | 7 | Note: This is plugins css. 8 | 9 | **********************************************************************************/ 10 | 11 | 12 | @import 'themify-icons.min.css'; 13 | @import 'meanmenu.css'; 14 | @import 'slick.min.css'; 15 | @import 'nice-select.min.css'; 16 | @import 'magnefic-popup.min.css'; 17 | @import 'range-slider.css'; 18 | -------------------------------------------------------------------------------- /WebRoot/err_cz.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 |
10 | 11 |

对不起!操作失败

12 | 13 |
返回
14 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /WebRoot/error_fore.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 |
10 | 11 |

对不起!操作失败

12 | 13 |
返回
14 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /WebRoot/error_login.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 |
10 | 11 |

对不起!操作失败!

12 | 13 |
返回登录
14 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /WebRoot/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/slick.eot -------------------------------------------------------------------------------- /WebRoot/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/slick.ttf -------------------------------------------------------------------------------- /WebRoot/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/slick.woff -------------------------------------------------------------------------------- /WebRoot/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/themify.eot -------------------------------------------------------------------------------- /WebRoot/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/themify.ttf -------------------------------------------------------------------------------- /WebRoot/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/fonts/themify.woff -------------------------------------------------------------------------------- /WebRoot/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/ajax-loader.gif -------------------------------------------------------------------------------- /WebRoot/img/author-image/author-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/author-image/author-image-1.png -------------------------------------------------------------------------------- /WebRoot/img/author-image/author-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/author-image/author-image-2.png -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-10.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-11.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-5.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-6.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-7.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-8.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/banner-image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/banner-image-9.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/bg-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/bg-banner-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/bg-banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/bg-banner-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/contact-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/contact-banner.jpg -------------------------------------------------------------------------------- /WebRoot/img/banners/widget-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/banners/widget-banner-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/bg/bg-breadcrumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/bg/bg-breadcrumb-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/bg/bg-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/bg/bg-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-details/blog-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-details/blog-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-5.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-6.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-7.jpg -------------------------------------------------------------------------------- /WebRoot/img/blog/blog-image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/blog/blog-image-8.jpg -------------------------------------------------------------------------------- /WebRoot/img/brand-logos/brand-logo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/brand-logos/brand-logo-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/brand-logos/brand-logo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/brand-logos/brand-logo-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/brand-logos/brand-logo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/brand-logos/brand-logo-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/brand-logos/brand-logo-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/brand-logos/brand-logo-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/favicon.ico -------------------------------------------------------------------------------- /WebRoot/img/hero-image/hero-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/hero-image/hero-image-1.png -------------------------------------------------------------------------------- /WebRoot/img/hero-image/hero-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/hero-image/hero-image-2.png -------------------------------------------------------------------------------- /WebRoot/img/hero-image/hero-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/hero-image/hero-image-3.png -------------------------------------------------------------------------------- /WebRoot/img/hero-image/hero-image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/hero-image/hero-image-4.png -------------------------------------------------------------------------------- /WebRoot/img/hero-image/hero-image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/hero-image/hero-image-5.png -------------------------------------------------------------------------------- /WebRoot/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/icon.png -------------------------------------------------------------------------------- /WebRoot/img/icons/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/icons/icon-close.png -------------------------------------------------------------------------------- /WebRoot/img/icons/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/icons/marker.png -------------------------------------------------------------------------------- /WebRoot/img/icons/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/icons/payment.png -------------------------------------------------------------------------------- /WebRoot/img/icons/triangle-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/icons/triangle-icon-dark.png -------------------------------------------------------------------------------- /WebRoot/img/logo/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/logo/logo-dark.png -------------------------------------------------------------------------------- /WebRoot/img/logo/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/logo/logo-light.png -------------------------------------------------------------------------------- /WebRoot/img/logo/logo-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/logo/logo-theme.png -------------------------------------------------------------------------------- /WebRoot/img/others/about-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/others/about-image.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/large-size/product-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/large-size/product-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/large-size/product-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/large-size/product-image-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/large-size/product-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/large-size/product-image-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/large-size/product-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/large-size/product-image-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/large-size/product-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/large-size/product-image-5.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-1.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-10.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-11.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-12.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-2.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-3.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-4.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-5.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-6.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-7.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-8.png -------------------------------------------------------------------------------- /WebRoot/img/product/mini-size/product-image-mini-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/mini-size/product-image-mini-9.png -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-5.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/small-size/product-image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/small-size/product-image-6.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-10.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-11.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-12.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-13.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-14.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-15.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-16.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-17.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-18.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-4.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-5.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-6.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-7.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-8.jpg -------------------------------------------------------------------------------- /WebRoot/img/product/thumbnail-size/product-image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/product/thumbnail-size/product-image-9.jpg -------------------------------------------------------------------------------- /WebRoot/img/team-member/team-member-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/team-member/team-member-1.jpg -------------------------------------------------------------------------------- /WebRoot/img/team-member/team-member-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/team-member/team-member-2.jpg -------------------------------------------------------------------------------- /WebRoot/img/team-member/team-member-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/team-member/team-member-3.jpg -------------------------------------------------------------------------------- /WebRoot/img/zhifu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/img/zhifu.png -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | 4 | <% 5 | String path = request.getContextPath(); 6 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 7 | %> 8 | 9 | 10 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/asp.net/README.txt: -------------------------------------------------------------------------------- 1 | KindEditor ASP.NET 2 | 3 | 本ASP.NET程序是演示程序,建议不要直接在实际项目中使用。 4 | 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。 5 | 6 | 使用方法: 7 | 8 | 1. 解压zip文件,将所有文件复制到IIS的wwwroot/kindeditor目录下。 9 | 10 | 2. 将kindeditor/asp.net/bin目录下的dll文件复制到wwwroot/bin目录下。 11 | 12 | 3. 打开浏览器,输入http://localhost:[P0RT]/kindeditor/asp.net/demo.aspx。 13 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/asp.net/bin/LitJSON.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/asp.net/bin/LitJSON.dll -------------------------------------------------------------------------------- /WebRoot/kindeditor/asp/JSON_2.0.4.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/asp/JSON_2.0.4.asp -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/index.css: -------------------------------------------------------------------------------- 1 | .ke-content { 2 | font-size: 12px; 3 | background-color: #ffffff; 4 | } 5 | .ke-content table { 6 | border-collapse:collapse; 7 | } 8 | .red { 9 | color: white; 10 | background-color: red; 11 | } 12 | .green { 13 | color: white; 14 | background-color: green; 15 | } 16 | .yellow { 17 | color: white; 18 | background-color: yellow; 19 | } -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/examples/jquery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | With jQuery 6 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 25 |

使用jQuery

26 |
27 | 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/jsp/README.txt: -------------------------------------------------------------------------------- 1 | KindEditor JSP 2 | 3 | 本JSP程序是演示程序,建议不要直接在实际项目中使用。 4 | 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。 5 | 6 | 使用方法: 7 | 8 | 1. 解压zip文件,将所有文件复制到Tomcat的webapps/kindeditor目录下。 9 | 10 | 2. 将kindeditor/jsp/lib目录下的3个jar文件复制到Tomcat的lib目录下,并重新启动Tomcat。 11 | * commons-fileupload-1.2.1.jar 12 | * commons-io-1.4.jar 13 | * json_simple-1.1.jar 14 | 15 | 3. 打开浏览器,输入http://localhost:[P0RT]/kindeditor/jsp/demo.jsp。 16 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/jsp/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/jsp/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/kindeditor/jsp/lib/commons-io-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/jsp/lib/commons-io-1.4.jar -------------------------------------------------------------------------------- /WebRoot/kindeditor/jsp/lib/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/jsp/lib/json_simple-1.1.jar -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
14 |

标题1

15 |
17 |

标题1

18 |
22 | 内容1 23 | 25 | 内容2 26 |
30 | 内容3 31 | 33 | 内容4 34 |
38 |

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

10 |
    11 |
  1. 12 | 描述1 13 |
  2. 14 |
  3. 15 | 描述2 16 |
  4. 17 |
  5. 18 | 描述3 19 |
  6. 20 |
21 |

22 | 在此处输入内容 23 |

24 | 35 | 36 | -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/default/background.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /WebRoot/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /WebRoot/noOrder.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 |
10 | 11 |

对不起!您还没有订单,请下单后再操作!

12 |
返回登录页面
13 |
返回注册页面
14 | 15 |
16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /WebRoot/nologin.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 |
10 | 11 |

对不起!操作失败,请重新登录后再操作!

12 | 13 |
返回登录页面
14 |
返回注册页面
15 | 16 |
17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/scss/blocks/_support.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Support 3 | */ 4 | 5 | .support-items-wrapper{ 6 | margin-bottom: -30px; 7 | display: flex; 8 | justify-content: space-between; 9 | flex-wrap: wrap; 10 | } 11 | .support-item{ 12 | flex-basis: 1; 13 | margin-bottom: 30px; 14 | padding-left: 35px; 15 | position: relative; 16 | &-icon{ 17 | width: 25px; 18 | max-height: 25px; 19 | display: inline-block; 20 | position: absolute; 21 | left: 0; 22 | top: 5px; 23 | } 24 | h5{ 25 | font-weight: 500; 26 | margin-bottom: 10px; 27 | color: #000000; 28 | } 29 | p{ 30 | margin-bottom: 0; 31 | } 32 | } -------------------------------------------------------------------------------- /WebRoot/scss/elements/_section-title.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Section Title 3 | */ 4 | 5 | .section-title{ 6 | margin-bottom: 20px; 7 | h6{ 8 | font-weight: 400; 9 | font-size: 13px; 10 | color: $body-color; 11 | margin-bottom: 10px; 12 | } 13 | h3{ 14 | font-weight: 700; 15 | } 16 | 17 | @media #{$lg-layout}{ 18 | margin-bottom: 20px; 19 | } 20 | 21 | @media #{$md-layout}{ 22 | margin-bottom: 10px; 23 | } 24 | 25 | } 26 | 27 | 28 | 29 | .small-title{ 30 | border-bottom: 1px solid #d5d5d5; 31 | padding-bottom: 10px; 32 | margin-bottom: 20px; 33 | font-weight: 700; 34 | } -------------------------------------------------------------------------------- /WebRoot/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/scss/style.scss -------------------------------------------------------------------------------- /WebRoot/success.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |

恭喜您,操作成功!

17 | 18 | -------------------------------------------------------------------------------- /WebRoot/upload/2222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/2222.jpg -------------------------------------------------------------------------------- /WebRoot/upload/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/head.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=1045070544,122660903&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=1045070544,122660903&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=13817902,3773003626&fm=15&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=13817902,3773003626&fm=15&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=1417376669,1484393435&fm=214&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=1417376669,1484393435&fm=214&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=1815200850,2404805575&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=1815200850,2404805575&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=1824058507,3591465435&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=1824058507,3591465435&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=2299554852,1457149679&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=2299554852,1457149679&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=2610044188,1651506069&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=2610044188,1651506069&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3051595091,2451375513&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3051595091,2451375513&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3432959313,610374323&fm=15&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3432959313,610374323&fm=15&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3447255015,2782201405&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3447255015,2782201405&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3491441648,2108724052&fm=15&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3491441648,2108724052&fm=15&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3602657960,1951750931&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3602657960,1951750931&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=3650899014,375092003&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=3650899014,375092003&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/u=4272221629,935508397&fm=11&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/u=4272221629,935508397&fm=11&gp=0.jpg -------------------------------------------------------------------------------- /WebRoot/upload/zanwu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/SameCityComeToTheDoorMaintenancePlatformManagementSystem/0ffde1c9aa28139278518af585fa9d6a6af00ef0/WebRoot/upload/zanwu.jpg -------------------------------------------------------------------------------- /src/com/dao/FshopMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Fshop; 7 | 8 | public interface FshopMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Fshop record); 12 | 13 | int insertSelective(Fshop record); 14 | 15 | Fshop selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Fshop record); 18 | 19 | int updateByPrimaryKey(Fshop record); 20 | 21 | public Fshop checkUname(Map uname); 22 | // 查询所有信息 23 | public List getAll(Map map); 24 | // 获取条数 25 | public int getCount(Map po); 26 | // 分页 27 | public List getByPage(Map map); 28 | // 模糊查询并分页 29 | public List select(Map map); 30 | } -------------------------------------------------------------------------------- /src/com/dao/FshopMapper2.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Fshop; 7 | 8 | public interface FshopMapper2 { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Fshop record); 12 | 13 | int insertSelective(Fshop record); 14 | 15 | Fshop selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Fshop record); 18 | 19 | int updateByPrimaryKey(Fshop record); 20 | 21 | 22 | public Fshop checkUname(Map uname); 23 | // 查询所有信息 24 | public List getAll(Map map); 25 | // 获取条数 26 | public int getCount(Map po); 27 | // 分页 28 | public List getByPage(Map map); 29 | // 模糊查询并分页 30 | public List select(Map map); 31 | } -------------------------------------------------------------------------------- /src/com/dao/FtypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Ftype; 7 | 8 | public interface FtypeMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Ftype record); 12 | 13 | int insertSelective(Ftype record); 14 | 15 | Ftype selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Ftype record); 18 | 19 | int updateByPrimaryKey(Ftype record); 20 | 21 | 22 | public Ftype checkUname(Map uname); 23 | // 查询所有信息 24 | public List getAll(Map map); 25 | // 获取条数 26 | public int getCount(Map po); 27 | // 分页 28 | public List getByPage(Map map); 29 | // 模糊查询并分页 30 | public List select(Map map); 31 | } -------------------------------------------------------------------------------- /src/com/entity/BbsWithBLOBs.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class BbsWithBLOBs extends Bbs { 4 | private String note; 5 | 6 | private String note2; 7 | 8 | public String getNote() { 9 | return note; 10 | } 11 | 12 | public void setNote(String note) { 13 | this.note = note == null ? null : note.trim(); 14 | } 15 | 16 | public String getNote2() { 17 | return note2; 18 | } 19 | 20 | public void setNote2(String note2) { 21 | this.note2 = note2 == null ? null : note2.trim(); 22 | } 23 | } -------------------------------------------------------------------------------- /src/com/entity/Ftype.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Ftype { 4 | private Integer id; 5 | 6 | private String name; 7 | 8 | private String isdel; 9 | 10 | public Integer getId() { 11 | return id; 12 | } 13 | 14 | public void setId(Integer id) { 15 | this.id = id; 16 | } 17 | 18 | public String getName() { 19 | return name; 20 | } 21 | 22 | public void setName(String name) { 23 | this.name = name == null ? null : name.trim(); 24 | } 25 | 26 | public String getIsdel() { 27 | return isdel; 28 | } 29 | 30 | public void setIsdel(String isdel) { 31 | this.isdel = isdel == null ? null : isdel.trim(); 32 | } 33 | } -------------------------------------------------------------------------------- /src/com/entity/TongJi.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class TongJi { 4 | private String amount; 5 | private String name; 6 | 7 | public String getAmount() { 8 | return amount; 9 | } 10 | 11 | public void setAmount(String amount) { 12 | this.amount = amount; 13 | } 14 | 15 | public String getName() { 16 | return name; 17 | } 18 | 19 | public void setName(String name) { 20 | this.name = name; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/com/server/BbsServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Bbs; 8 | import com.entity.BbsWithBLOBs; 9 | 10 | public interface BbsServer { 11 | // 添加 12 | public int add(BbsWithBLOBs po); 13 | // 修改 14 | public int update(BbsWithBLOBs po); 15 | // 删除 16 | public int delete(int id); 17 | // 查询 18 | public List getAll(Map map); 19 | // 验证 20 | public Bbs checkUname(String account); 21 | // 获取对象 22 | public Bbs getById( int id); 23 | // 分页显示 24 | public List getByPage(Map map); 25 | // 获取信息的条数 26 | public int getCount(Map map); 27 | // 模糊查询 28 | public List select(Map map); 29 | } 30 | -------------------------------------------------------------------------------- /src/com/server/ForderServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Forder; 8 | import com.entity.TongJi; 9 | 10 | public interface ForderServer { 11 | // 添加 12 | public int add(Forder po); 13 | // 修改 14 | public int update(Forder po); 15 | // 删除 16 | public int delete(int id); 17 | // 查询 18 | public List getAll(Map map); 19 | // 验证 20 | public Forder checkUname(String account); 21 | // 获取对象 22 | public Forder getById( int id); 23 | // 分页显示 24 | public List getByPage(Map map); 25 | // 获取信息的条数 26 | public int getCount(Map map); 27 | // 模糊查询 28 | public List select(Map map); 29 | 30 | public List getTongJi(Map map); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/com/server/FshopServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Fshop; 8 | 9 | public interface FshopServer { 10 | // 添加 11 | public int add(Fshop po); 12 | // 修改 13 | public int update(Fshop po); 14 | // 删除 15 | public int delete(int id); 16 | // 查询 17 | public List getAll(Map map); 18 | // 验证 19 | public Fshop checkUname(String account); 20 | // 获取对象 21 | public Fshop getById( int id); 22 | // 分页显示 23 | public List getByPage(Map map); 24 | // 获取信息的条数 25 | public int getCount(Map map); 26 | // 模糊查询 27 | public List select(Map map); 28 | } 29 | -------------------------------------------------------------------------------- /src/com/server/FtypeServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | 6 | import java.util.Map; 7 | import com.entity.Ftype; 8 | 9 | public interface FtypeServer { 10 | // 添加 11 | public int add(Ftype po); 12 | // 修改 13 | public int update(Ftype po); 14 | // 删除 15 | public int delete(int id); 16 | // 查询 17 | public List getAll(Map map); 18 | // 验证 19 | public Ftype checkUname(Map account); 20 | //获取对象 21 | public Ftype getById( int id); 22 | // 分页显示 23 | public List getByPage(Map map); 24 | // 获取信息的条数 25 | public int getCount(Map map); 26 | // 模糊查询 27 | public List select(Map map); 28 | } 29 | -------------------------------------------------------------------------------- /src/com/server/GoodsServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Goods; 8 | 9 | public interface GoodsServer { 10 | // 添加 11 | public int add(Goods po); 12 | // 修改 13 | public int update(Goods po); 14 | // 删除 15 | public int delete(int id); 16 | // 查询 17 | public List getAll(Map map); 18 | //查询所有信息 19 | public List getAll2(Map map); 20 | // 验证 21 | public Goods checkUname(String account); 22 | // 获取对象 23 | public Goods getById( int id); 24 | // 分页显示 25 | public List getByPage(Map map); 26 | //分页 27 | public List getByPage2(Map map); 28 | // 获取信息的条数 29 | public int getCount(Map map); 30 | // 模糊查询 31 | public List select(Map map); 32 | } 33 | -------------------------------------------------------------------------------- /src/com/server/NewsServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | 6 | import java.util.Map; 7 | 8 | import com.entity.News; 9 | 10 | public interface NewsServer { 11 | // 添加 12 | public int add(News po); 13 | // 修改 14 | public int update(News po); 15 | // 删除 16 | public int delete(int id); 17 | // 查询 18 | public List getAll(Map map); 19 | //获取对象 20 | public News getById( int id); 21 | // 验证 22 | public News checkUname(String account); 23 | // 分页显示 24 | public List getByPage(Map map); 25 | // 获取信息的条数 26 | public int getCount(Map map); 27 | // 模糊查询 28 | public List select(Map map); 29 | } 30 | -------------------------------------------------------------------------------- /src/com/server/SysuserServier.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Sysuser; 8 | 9 | 10 | 11 | public interface SysuserServier { 12 | // 验证后台登录 13 | public Sysuser adminLogin(Map po); 14 | // 添加用户 15 | public int add(Sysuser po); 16 | // 获取单个用户信息 17 | public Sysuser getById(int id); 18 | // 修改用户 19 | public int update(Sysuser po); 20 | // 删除用户 21 | public int delete(int id); 22 | // 查询用户 23 | public List getAll(Map map); 24 | // 验证用户名 25 | public Sysuser checkUname(Map account); 26 | // 分页显示 27 | public List getByPage(Map map); 28 | // 获取信息的条数 29 | public int getCount(Map po); 30 | //模糊查询并分页 31 | public List select(Map map); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/springMVC-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | --------------------------------------------------------------------------------