└── lianbangtrans ├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── antlr-2.7.6.jar │ │ ├── asm-3.3.1.jar │ │ ├── cglib-2.2.2.jar │ │ ├── com.springsource.javax.servlet.jsp.jstl-1.1.2.jar │ │ ├── com.springsource.org.aopalliance-1.0.0.jar │ │ ├── com.springsource.org.apache.commons.logging-1.1.1.jar │ │ ├── com.springsource.org.apache.taglibs.standard-1.1.2.jar │ │ ├── com.springsource.org.aspectj.tools-1.6.6.RELEASE.jar │ │ ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar │ │ ├── commons-collections-3.1.jar │ │ ├── commons-fileupload-1.2.2.jar │ │ ├── commons-io-2.0.1.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── javassist-3.17.1-GA.jar │ │ ├── javassist-3.9.0.GA.jar │ │ ├── jstl-1.2.jar │ │ ├── jta-1.1.jar │ │ ├── junit-4.9.jar │ │ ├── log4j-1.2.17.jar │ │ ├── log4j-api-2.0.2.jar │ │ ├── log4j-core-2.0.2.jar │ │ ├── mybatis-3.3.0.jar │ │ ├── mysql-connector-5.1.8.jar │ │ ├── mysql-connector-java-3.0.17-ga-bin.jar │ │ ├── slf4j-api-1.7.5.jar │ │ ├── slf4j-log4j12-1.7.5.jar │ │ ├── spring-aop-3.2.2.jar │ │ ├── spring-aspects-3.2.2.jar │ │ ├── spring-beans-3.2.2.jar │ │ ├── spring-context-3.2.2.jar │ │ ├── spring-context-support-3.2.2.jar │ │ ├── spring-core-3.2.2.jar │ │ ├── spring-expression-3.2.2.jar │ │ ├── spring-mvc.xml │ │ ├── spring-web-3.2.2.jar │ │ └── spring-webmvc-3.2.2.jar │ ├── views │ │ ├── c_mainpage.jsp │ │ ├── c_order.jsp │ │ ├── c_order_confirm.jsp │ │ ├── c_order_confirm_success.jsp │ │ ├── c_order_manage_accomplished.jsp │ │ ├── c_order_manage_detail.jsp │ │ ├── c_order_manage_receive.jsp │ │ ├── c_order_manage_send.jsp │ │ ├── car.jsp │ │ ├── countdown.jsp │ │ ├── countdown2.jsp │ │ ├── driver.jsp │ │ ├── driverRegister.jsp │ │ ├── mission.jsp │ │ ├── moreinf.jsp │ │ ├── order.jsp │ │ └── user.jsp │ └── web.xml ├── c_agree.html ├── c_contact us.html ├── c_login.html ├── c_order_confirm.html ├── css │ ├── bootstrap-table.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── button_new.css │ ├── cd-arrow.svg │ ├── component.css │ ├── css-table.css │ ├── datepicker.css │ ├── datepicker3.css │ ├── fontnew.css │ ├── lightbox.css │ ├── main.css │ ├── newform.css │ ├── panel.css │ ├── style.css │ ├── style1.css │ ├── styles.css │ └── timeline.css ├── d_route.jsp ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── point.png ├── images │ ├── 1.jpg │ ├── 1.png │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── QQ图片20160630145309.jpg │ ├── QQ图片20160630145540.jpg │ ├── QQ图片20160630145758.jpg │ ├── QQ图片20160630150332.jpg │ ├── QQ图片20160630151256.jpg │ ├── QQ图片20160630151404.jpg │ ├── Thumbs.db │ ├── banner.jpg │ ├── banner1.jpg │ ├── biggerdot.png │ ├── check-icon.png │ ├── close.png │ ├── dot.gif │ ├── ico10.gif │ ├── ico11.gif │ ├── ico9.gif │ ├── img-sp.png │ ├── img-sp1.png │ ├── img.png │ ├── next.png │ ├── po1.jpg │ ├── po2.jpg │ ├── prev.png │ ├── search.png │ ├── side_icon01.png │ ├── side_icon02.png │ ├── side_icon03.png │ ├── side_icon04.png │ ├── side_icon05.png │ ├── spirit.png │ ├── star-half-big.png │ ├── star-half.png │ ├── star-off-big.png │ ├── star-off.png │ ├── star-on-big.png │ └── star-on.png ├── js │ ├── bootstrap-datepicker.js │ ├── bootstrap-table.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── chart-data.js │ ├── chart.min.js │ ├── easypiechart-data.js │ ├── easypiechart.js │ ├── html5shiv.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery-1.8.3.min.js │ ├── jquery-2.0.3.min.js │ ├── jquery.SuperSlide.2.1.1.js │ ├── jquery.easing.js │ ├── jquery.mousewheel.js │ ├── jquery.raty.min.js │ ├── jquery1.10.2.js │ ├── lrtk.js │ ├── modernizr.js │ ├── prefixfree.min.js │ ├── respond.min.js │ └── timeline.js └── tables │ ├── data1.json │ └── data2.json ├── build └── classes │ ├── com │ └── lianbang │ │ ├── dao │ │ ├── OrderDao.class │ │ └── UserDao.class │ │ ├── entity │ │ ├── City.class │ │ ├── Driver.class │ │ ├── MissCity.class │ │ ├── Order.class │ │ ├── User.class │ │ └── mapper │ │ │ ├── CityMapper.xml │ │ │ ├── MissCityMapper.xml │ │ │ ├── OrderMapper.xml │ │ │ └── UserMapper.xml │ │ ├── service │ │ ├── OrderService.class │ │ └── UserService.class │ │ └── web │ │ ├── LoginController.class │ │ └── OrderController.class │ ├── spring-mvc.xml │ └── sqlMapConfig.xml └── src ├── com └── lianbang │ ├── dao │ ├── OrderDao.java │ └── UserDao.java │ ├── entity │ ├── City.java │ ├── Driver.java │ ├── MissCity.java │ ├── Order.java │ ├── User.java │ └── mapper │ │ ├── CityMapper.xml │ │ ├── MissCityMapper.xml │ │ ├── OrderMapper.xml │ │ └── UserMapper.xml │ ├── service │ ├── OrderService.java │ └── UserService.java │ └── web │ ├── LoginController.java │ └── OrderController.java ├── spring-mvc.xml └── sqlMapConfig.xml /lianbangtrans/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /lianbangtrans/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | lianbangtrans 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.wst.common.project.facet.core.builder 20 | 21 | 22 | 23 | 24 | org.eclipse.wst.validation.validationbuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jem.workbench.JavaEMFNature 31 | org.eclipse.wst.common.modulecore.ModuleCoreNature 32 | org.eclipse.wst.common.project.facet.core.nature 33 | org.eclipse.jdt.core.javanature 34 | org.eclipse.wst.jsdt.core.jsNature 35 | 36 | 37 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//WebContent/c_login.html=UTF-8 3 | encoding//WebContent/d_route.jsp=UTF-8 4 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.7 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.7 13 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /lianbangtrans/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /lianbangtrans/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/cglib-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/cglib-2.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.apache.commons.logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.apache.commons.logging-1.1.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.apache.taglibs.standard-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.apache.taglibs.standard-1.1.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aspectj.tools-1.6.6.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aspectj.tools-1.6.6.RELEASE.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/commons-io-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/commons-io-2.0.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/javassist-3.17.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/javassist-3.17.1-GA.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/javassist-3.9.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/javassist-3.9.0.GA.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/junit-4.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/junit-4.9.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/log4j-api-2.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/log4j-api-2.0.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/log4j-core-2.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/log4j-core-2.0.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/mybatis-3.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/mybatis-3.3.0.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/mysql-connector-5.1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/mysql-connector-5.1.8.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/mysql-connector-java-3.0.17-ga-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/mysql-connector-java-3.0.17-ga-bin.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-aop-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-aop-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-aspects-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-aspects-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-beans-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-beans-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-context-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-context-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-context-support-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-context-support-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-core-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-core-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-expression-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-expression-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-mvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-web-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-web-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/lib/spring-webmvc-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/WEB-INF/lib/spring-webmvc-3.2.2.jar -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/c_order_confirm_success.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ page language="java" contentType="text/html; charset=utf-8" 3 | pageEncoding="utf-8"%> 4 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 5 | 6 | 7 | 8 | c_main_page 9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | 38 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 |
120 |
121 |
122 |
123 |

联邦物流运输管理系统————客户端

124 |
125 | 126 |
127 |

任何疑问?拨打189-3802-6328联系我们

128 |
129 |
130 |
131 | 133 |
134 | 156 |
157 |
158 |
159 | 160 | 161 |
162 |

下单成功! 163 | 请在规定时间内将包裹送至投递处! 164 |

165 | 170 | 174 |
175 | 176 | 177 | 178 |
179 |
180 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/car.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理车辆信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 36 | 37 |
38 |
39 |
40 |
41 |
车队信息
42 |
43 |
44 | 司机编号 45 | 46 |
47 |
48 |
49 |
50 | 车牌号 51 | 52 |
53 |
54 |
55 |
56 | 隶属公司 57 | 58 |
59 |
60 |
61 | 62 |
63 |
64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 |
车牌号司机编号保险事故次数装载体积装载重量状态年检
${car.carNum}${car.driverNum}${car.carIns}${car.carAccident}${car.carV}${car.carW}${car.carState}${car.carAS}
91 |
92 |
93 | 94 |
95 |
96 |
97 |
98 |
99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/countdown.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 106 | 107 | 108 |
109 | 110 | 111 | secs 112 | 113 |
114 |
115 |
116 |
117 |

正在前往登陆

118 |

您将在我们的网站享受便捷服务

119 |
120 | 立即前往登陆
121 | 131 |
132 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/countdown2.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 106 | 107 | 108 |
109 | 110 | 111 | secs 112 | 113 |
114 |
115 |
116 |
117 |

用户名不存在或密码错误

118 |

正在跳转登陆页面

119 |
120 | 立即前往登陆
121 | 131 |
132 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/driver.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理司机信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 36 |
37 |
38 |
39 |
40 |
司机信息
41 |
42 |
43 | 司机编号 44 | 45 |
46 | 47 |
48 |
49 |
50 | 隶属公司 51 | 52 |
53 |
54 |
55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 |
checkbox司机编号城市编号车辆编号姓名性别身份证号电话状态总订单数总里程KPA保险隶属公司等级密码删除
${driver.driverNum}${driver.cityNum}${driver.carNum}${driver.driverName}${driver.driverGender}${driver.driverID}${driver.driverTel}${driver.driverState}${driver.driverOrderNum}${driver.driverMileNum}${driver.driverKPA}${driver.driverIns}${driver.driverCompany}${driver.driverLevel}${driver.driverKey} 
100 | 101 | 102 | 103 |
104 |
105 | 106 |
107 |
108 |
109 |
110 |
111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/driverRegister.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理司机信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 |
联邦物流系统
23 |
24 | 75 |
76 | 77 |
78 | 118 |
119 | 120 |
121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/mission.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 管理任务信息 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 24 | 25 | 35 | 36 |
37 |
38 |
39 |
40 |
任务分配管理
41 |
42 |
43 | 任务编号 44 | 45 |
46 |
47 |
48 |
49 | 司机编号 50 | 51 |
52 |
53 |
54 |
55 | 线路 56 | 62 |
63 |
64 |
65 | 66 |
67 |
68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 |
任务编号司机编号起点终点费用/元任务完成时间
${mission.missNum}${mission.driverNum}${mission.missOriPlace}${mission.missEndPlace}${mission.missPay}${mission.missTime}
90 | 91 |
92 |
93 | 94 |
95 |
96 |
97 |
98 |
99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/moreinf.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理司机信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 |
27 |
28 |
29 |
30 |
司机信息
31 |
32 |
33 |

司机姓名

34 | 35 |
36 |
37 |
38 |
39 |

司机编号

40 | 41 |
42 |
43 |
44 |
45 | 46 |
47 | 63 |
64 | 65 |
66 | 82 |
83 | 84 |
85 |
86 | 87 |
88 |
89 |
90 |
91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/order.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理订单信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 36 | 37 |
38 |
39 |
40 |
41 |
订单信息
42 |
43 |
44 | 订单编号 45 | 46 |
47 |
48 |
49 |
50 | 司机编号 51 | 52 |
53 |
54 |
55 |
56 | 订单状态 57 | 63 |
64 |
65 |
66 |
67 | 线路 68 | 74 |
75 |
76 |
77 | 78 |
79 |
80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 |
订单编号用户编号任务编号收件人体积重量起点终点状态用户评价
${order.orderNum}${order.userNum}${order.missNum}${order.orderReceiver}${order.orderV}${order.orderW}${order.orderOriPlace}${order.orderDes}${order.orderState}${order.orderUserCom}
110 | 111 |
112 |
113 | 114 |
115 |
116 |
117 |
118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/views/user.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=utf-8" 2 | pageEncoding="utf-8"%> 3 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 管理用户信息 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 26 | 27 | 37 |
38 |
39 |
40 |
41 |
客户信息
42 |
43 |
44 |
45 | 客户编号 46 | 47 |
48 |
49 |
50 |
51 | 客户名 52 | 53 |
54 |
55 |
56 |
57 | 客户身份证号 58 | 59 |
60 |
61 |
62 | 63 |
64 |
65 |
66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 |
checkbox用户编号用户姓名运单数电话密码修改删除
${user.num}${user.name}${user.orderNum}${user.tel}${user.key}修改删除
92 | 93 | 94 | 95 |
96 |
97 | 98 |
99 |
100 |
101 |
102 |
103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | lianbangtrans 4 | 5 | 6 | action 7 | org.springframework.web.servlet.DispatcherServlet 8 | 9 | contextConfigLocation 10 | 11 | classpath:spring-mvc.xml 12 | 13 | 14 | 15 | 16 | action 17 | / 18 | 19 | 20 | 21 | 22 | 23 | index.html 24 | index.htm 25 | index.jsp 26 | default.html 27 | default.htm 28 | default.jsp 29 | 30 | 31 | 32 | CharacterEncodingFilter 33 | org.springframework.web.filter.CharacterEncodingFilter 34 | 35 | encoding 36 | utf-8 37 | 38 | 39 | 40 | CharacterEncodingFilter 41 | /* 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/c_contact us.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | c_main page 6 | 7 | 8 | 9 | 10 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 |
40 |
41 |
42 |

联邦物流运输管理系统————客户端

43 |
44 |
45 |
    46 |
  • 47 |
  • 48 |
  • 49 |
  • 50 |
  • 51 |
    52 |
53 |
54 |
55 |

任何疑问?拨打189-3802-6328联系我们

56 |
57 |
58 |
59 | 61 |
62 | 84 |
85 |
86 |
87 | 88 | 89 |
90 |
91 |
92 |
93 |

联系信息

94 |
    95 |
  • 地址:成都市郫县菁蓉小镇
  • 96 |
  • 189-3802-6328
  • 97 |
  • qq.com
  • 98 |
99 |
100 |
101 |

预约您的到访

102 |
103 | 104 | 105 | 106 | 107 | 108 |
109 |
110 |
111 |
112 |
113 |
114 | 115 | 116 | 117 |
118 |
119 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/c_order_confirm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | c_order confirm 6 | 7 | 8 | 9 | 10 | 11 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |
42 |
43 |
44 |
45 |

联邦物流运输管理系统————客户端

46 |
47 | 48 |
49 |

任何疑问?拨打189-3802-6328联系我们

50 |
51 |
52 |
53 | 55 |
56 | 78 |
79 |
80 |
81 | 82 | 83 |
84 |

我要下单————订单内容确认 85 | 请确认下列信息 86 |

87 |
寄件人信息
88 |
寄件人 :

89 |
身份证号 :

90 |
联系电话 :

91 |
地址 :

92 |
收件人信息
93 |
收件人 :

94 |
联系电话 :

95 |
地址 :

96 |
货物信息
97 |
件数 :

98 |
货物类型 :


99 | 104 | 108 |
109 | 110 | 111 | 112 |
113 |
114 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/bootstrap-table.css: -------------------------------------------------------------------------------- 1 | .table { 2 | margin-bottom: 0 !important; 3 | border-bottom: 1px solid #dddddd; 4 | border-collapse: collapse !important; 5 | border-radius: 1px; 6 | } 7 | 8 | .fixed-table-container { 9 | position: relative; 10 | clear: both; 11 | border: 1px solid #dddddd; 12 | border-radius: 4px; 13 | -webkit-border-radius: 4px; 14 | -moz-border-radius: 4px; 15 | } 16 | 17 | .fixed-table-header { 18 | overflow: hidden; 19 | border-radius: 4px 4px 0 0; 20 | -webkit-border-radius: 4px 4px 0 0; 21 | -moz-border-radius: 4px 4px 0 0; 22 | } 23 | 24 | .fixed-table-body { 25 | overflow-x: auto; 26 | overflow-y: auto; 27 | height: 100%; 28 | } 29 | 30 | .fixed-table-container table { 31 | width: 100%; 32 | } 33 | 34 | .fixed-table-container thead th { 35 | height: 0; 36 | padding: 0; 37 | margin: 0; 38 | border-left: 1px solid #dddddd; 39 | } 40 | 41 | .fixed-table-container thead th:first-child { 42 | border-left: none; 43 | } 44 | 45 | .fixed-table-container thead th .th-inner { 46 | padding: 8px; 47 | line-height: 24px; 48 | vertical-align: top; 49 | overflow: hidden; 50 | text-overflow: ellipsis; 51 | white-space: nowrap; 52 | } 53 | 54 | .fixed-table-container thead th .sortable { 55 | cursor: pointer; 56 | } 57 | 58 | .fixed-table-container tbody td { 59 | border-left: 1px solid #dddddd; 60 | } 61 | 62 | .fixed-table-container tbody tr:first-child td { 63 | border-top: none; 64 | } 65 | 66 | .fixed-table-container tbody td:first-child { 67 | border-left: none; 68 | } 69 | 70 | /* the same color with .active */ 71 | .fixed-table-container tbody .selected td { 72 | background-color: #f5f5f5; 73 | } 74 | 75 | .fixed-table-container .bs-checkbox { 76 | text-align: center; 77 | } 78 | 79 | .fixed-table-container .bs-checkbox .th-inner { 80 | padding: 8px 0; 81 | } 82 | 83 | .fixed-table-container input[type="radio"], 84 | .fixed-table-container input[type="checkbox"] { 85 | margin: 0 auto !important; 86 | } 87 | 88 | .fixed-table-container .no-records-found { 89 | text-align: center; 90 | } 91 | 92 | 93 | .fixed-table-pagination .pagination, 94 | .fixed-table-pagination .pagination-detail { 95 | margin-top: 10px; 96 | margin-bottom: 10px; 97 | } 98 | 99 | .fixed-table-pagination .pagination a { 100 | padding: 6px 12px; 101 | line-height: 1.428571429; 102 | } 103 | 104 | .fixed-table-pagination .pagination-info { 105 | line-height: 34px; 106 | margin-right: 5px; 107 | } 108 | 109 | .fixed-table-pagination .btn-group { 110 | position: relative; 111 | display: inline-block; 112 | vertical-align: middle; 113 | } 114 | 115 | .fixed-table-pagination .dropup .dropdown-menu { 116 | margin-bottom: 0; 117 | } 118 | 119 | .fixed-table-pagination .page-list { 120 | display: inline-block; 121 | } 122 | 123 | .fixed-table-toolbar .columns { 124 | margin-left: 5px; 125 | } 126 | 127 | .fixed-table-toolbar .columns label { 128 | display: block; 129 | padding: 3px 20px; 130 | clear: both; 131 | font-weight: normal; 132 | line-height: 1.428571429; 133 | } 134 | 135 | .fixed-table-toolbar .bars, 136 | .fixed-table-toolbar .search, 137 | .fixed-table-toolbar .columns { 138 | position: relative; 139 | margin-top: 10px; 140 | margin-bottom: 10px; 141 | line-height: 34px; 142 | } 143 | 144 | .fixed-table-pagination li.disabled a { 145 | pointer-events: none; 146 | cursor: default; 147 | } 148 | 149 | .fixed-table-loading { 150 | display: none; 151 | position: absolute; 152 | top: 42px; 153 | right: 0; 154 | bottom: 0; 155 | left: 0; 156 | z-index: 99; 157 | background-color: #fff; 158 | text-align: center; 159 | } 160 | 161 | .fixed-table-body .card-view .title { 162 | font-weight: bold; 163 | display: inline-block; 164 | min-width: 30%; 165 | text-align: left !important; 166 | } 167 | 168 | /* support bootstrap 2 */ 169 | .fixed-table-body thead th .th-inner { 170 | box-sizing: border-box; 171 | } 172 | 173 | .table th, .table td { 174 | vertical-align: middle; 175 | box-sizing: border-box; 176 | } 177 | 178 | .fixed-table-toolbar .dropdown-menu { 179 | text-align: left; 180 | max-height: 300px; 181 | overflow: auto; 182 | } 183 | 184 | .fixed-table-toolbar .btn-group>.btn-group { 185 | display: inline-block; 186 | margin-left: -1px !important; 187 | } 188 | 189 | .fixed-table-toolbar .btn-group>.btn-group>.btn { 190 | border-radius: 0; 191 | } 192 | 193 | .fixed-table-toolbar .btn-group>.btn-group:first-child>.btn { 194 | border-top-left-radius: 4px; 195 | border-bottom-left-radius: 4px; 196 | } 197 | 198 | .fixed-table-toolbar .btn-group>.btn-group:last-child>.btn { 199 | border-top-right-radius: 4px; 200 | border-bottom-right-radius: 4px; 201 | } 202 | 203 | .table>thead>tr>th { 204 | vertical-align: bottom; 205 | border-bottom: 2px solid #ddd; 206 | } 207 | 208 | /* support bootstrap 3 */ 209 | .table thead>tr>th { 210 | padding: 0; 211 | margin: 0; 212 | } 213 | 214 | .pull-right .dropdown-menu { 215 | right: 0; 216 | left: auto; 217 | } 218 | 219 | /* calculate scrollbar width */ 220 | p.fixed-table-scroll-inner { 221 | width: 100%; 222 | height: 200px; 223 | } 224 | 225 | div.fixed-table-scroll-outer { 226 | top: 0; 227 | left: 0; 228 | visibility: hidden; 229 | width: 200px; 230 | height: 150px; 231 | overflow: hidden; 232 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/button_new.css: -------------------------------------------------------------------------------- 1 | .button_new { 2 | float: left; 3 | min-width: 50px; 4 | max-width: 100px; 5 | display: block; 6 | margin-left:300px; 7 | padding: 8px 16px; 8 | border: none; 9 | background: none; 10 | color: inherit; 11 | vertical-align: middle; 12 | position: relative; 13 | z-index: 1; 14 | -webkit-backface-visibility: hidden; 15 | -moz-osx-font-smoothing: grayscale; 16 | } 17 | .button_ujarak { 18 | -webkit-transition: border-color 0.4s, color 0.4s; 19 | transition: border-color 0.4s, color 0.4s; 20 | } 21 | .button_ujarak::before { 22 | content: ''; 23 | position: absolute; 24 | top: 0; 25 | left: 0; 26 | width: 100%; 27 | height: 100%; 28 | background: #D54F30; 29 | z-index: -1; 30 | opacity: 0; 31 | -webkit-transform: scale3d(0.7, 1, 1); 32 | transform: scale3d(0.7, 1, 1); 33 | -webkit-transition: -webkit-transform 0.4s, opacity 0.4s; 34 | transition: transform 0.4s, opacity 0.4s; 35 | -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); 36 | transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); 37 | } 38 | .button_ujarak, 39 | .button_ujarak::before { 40 | -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); 41 | transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); 42 | } 43 | .button_ujarak:hover { 44 | color: #fff; 45 | border-color: #D54F30; 46 | } 47 | .button_ujarak:hover::before { 48 | opacity: 1; 49 | -webkit-transform: translate3d(0, 0, 0); 50 | transform: translate3d(0, 0, 0); 51 | } 52 | .button_antiman { 53 | background: none; 54 | border: none; 55 | height: 60px; 56 | } 57 | .button_border_thin { 58 | border: 1px solid; 59 | } 60 | .button_antiman.button_border_thin::before { 61 | border-width: 1px; 62 | } 63 | .button_text_thick { 64 | font-weight: 600; 65 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/cd-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .ac-custom { 4 | padding: 0 3em; 5 | max-width: 900px; 6 | margin: 0 auto; 7 | } 8 | 9 | .ac-custom h2 { 10 | font-size: 3em; 11 | font-weight: 300; 12 | padding: 0 0 0.5em; 13 | margin: 0 0 30px; 14 | } 15 | 16 | .ac-custom ul, 17 | .ac-custom ol { 18 | list-style: none; 19 | padding: 0; 20 | margin: 0 auto; 21 | max-width: 800px; 22 | } 23 | 24 | .ac-custom li { 25 | margin: 0 auto; 26 | padding: 2em 0; 27 | position: relative; 28 | } 29 | 30 | .ac-custom label { 31 | display: inline-block; 32 | position: relative; 33 | font-size: 2em; 34 | padding: 0 0 0 80px; 35 | vertical-align: top; 36 | color: rgba(0,0,0,0.2); 37 | cursor: pointer; 38 | -webkit-transition: color 0.3s; 39 | transition: color 0.3s; 40 | } 41 | 42 | .ac-custom input[type="checkbox"], 43 | .ac-custom input[type="radio"], 44 | .ac-custom label::before { 45 | width: 50px; 46 | height: 50px; 47 | top: 50%; 48 | left: 0; 49 | margin-top: -25px; 50 | position: absolute; 51 | cursor: pointer; 52 | } 53 | 54 | .ac-custom input[type="checkbox"], 55 | .ac-custom input[type="radio"] { 56 | opacity: 0; 57 | -webkit-appearance: none; 58 | display: inline-block; 59 | vertical-align: middle; 60 | z-index: 100; 61 | } 62 | 63 | .ac-custom label::before { 64 | content: ''; 65 | border: 4px solid #c0c0c0; 66 | -webkit-transition: opacity 0.3s; 67 | transition: opacity 0.3s; 68 | } 69 | 70 | .ac-radio label::before { 71 | border-radius: 50%; 72 | } 73 | 74 | .ac-custom input[type="checkbox"]:checked + label, 75 | .ac-custom input[type="radio"]:checked + label { 76 | color: #D54F30; 77 | } 78 | 79 | .ac-custom input[type="checkbox"]:checked + label::before, 80 | .ac-custom input[type="radio"]:checked + label::before { 81 | opacity: 0.8; 82 | } 83 | 84 | /* General SVG and path styles */ 85 | 86 | .ac-custom svg { 87 | position: absolute; 88 | width: 40px; 89 | height: 40px; 90 | top: 50%; 91 | margin-top: -20px; 92 | left: 5px; 93 | pointer-events: none; 94 | } 95 | 96 | .ac-custom svg path { 97 | stroke: #fdfcd3; 98 | stroke-width: 13px; 99 | stroke-linecap: round; 100 | stroke-linejoin: round; 101 | fill: none; 102 | } 103 | 104 | /* Specific input, SVG and path styles */ 105 | 106 | 107 | 108 | /* Box Fill */ 109 | .ac-boxfill svg path { 110 | stroke-width: 8px; 111 | } 112 | 113 | /* Swirl */ 114 | .ac-swirl svg path { 115 | stroke-width: 8px; 116 | } 117 | 118 | /* List */ 119 | .ac-list ol { 120 | list-style: decimal; 121 | list-style-position: inside; 122 | } 123 | 124 | .ac-list ol li { 125 | font-size: 2em; 126 | padding: 1em 1em 0 2em; 127 | text-indent: -40px; 128 | } 129 | 130 | .ac-list ol li label { 131 | font-size: 1em; 132 | text-indent: 0; 133 | padding-left: 30px; 134 | } 135 | 136 | .ac-list label::before { 137 | display: none; 138 | } 139 | 140 | .ac-list svg { 141 | width: 100%; 142 | height: 80px; 143 | left: 0; 144 | top: 1.2em; 145 | margin-top: 0px; 146 | } 147 | 148 | .ac-list svg path { 149 | stroke-width: 4px; 150 | } 151 | 152 | /* Media Queries */ 153 | @media screen and (max-width: 50em) { 154 | section { 155 | font-size: 80%; 156 | } 157 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/css-table.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin:0; 3 | padding:20px; 4 | font:13px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif; 5 | } 6 | 7 | /* ---- Some Resets ---- */ 8 | 9 | p, 10 | table, caption, td, tr, th { 11 | margin:0; 12 | padding:0; 13 | font-weight:normal; 14 | } 15 | 16 | /* ---- Paragraphs ---- */ 17 | 18 | p { 19 | margin-bottom:15px; 20 | } 21 | 22 | /* ---- Table ---- */ 23 | 24 | table { 25 | border-collapse:collapse; 26 | margin-bottom:15px; 27 | width:90%; 28 | } 29 | 30 | caption { 31 | text-align:left; 32 | font-size:15px; 33 | padding-bottom:10px; 34 | } 35 | 36 | table td, 37 | table th { 38 | padding:5px; 39 | border:1px solid #000; 40 | border-width:0 1px 1px 0; 41 | } 42 | 43 | thead th { 44 | background:#d7ffee; 45 | } 46 | 47 | thead th[colspan], 48 | thead th[rowspan] { 49 | background:#d7ffee; 50 | } 51 | 52 | tbody th, 53 | tfoot th { 54 | text-align:left; 55 | background:#d7ffee; 56 | } 57 | 58 | tbody td, 59 | tfoot td { 60 | text-align:center; 61 | background:#d5eaf0; 62 | } 63 | 64 | tfoot th { 65 | background:#b0cc7f; 66 | } 67 | 68 | tfoot td { 69 | background:#d7e1c5; 70 | font-weight:bold; 71 | } 72 | 73 | tbody tr.odd td { 74 | background:#bcd9e1; 75 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/fontnew.css: -------------------------------------------------------------------------------- 1 | .fontnew { 2 | font-family: "Helvetica Neue"; 3 | font-size: 12px; 4 | font-style: normal; 5 | color: #333; 6 | font-weight:bold; 7 | } 8 | 9 | .fontnew-big{ 10 | font-family:"Helvetica Neue"; 11 | font-size:25px; 12 | font-style:normal; 13 | color:#333; 14 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/lightbox.css: -------------------------------------------------------------------------------- 1 | /* Preload images */ 2 | body:after { 3 | content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png); 4 | display: none; 5 | } 6 | 7 | .lightboxOverlay { 8 | position: absolute; 9 | top: 0; 10 | left: 0; 11 | z-index: 9999; 12 | background-color: black; 13 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); 14 | opacity: 0.8; 15 | display: none; 16 | } 17 | 18 | .lightbox { 19 | position: absolute; 20 | left: 0; 21 | width: 100%; 22 | z-index: 10000; 23 | text-align: center; 24 | line-height: 0; 25 | font-weight: normal; 26 | } 27 | 28 | .lightbox .lb-image { 29 | display: block; 30 | height: auto; 31 | max-width: inherit; 32 | -webkit-border-radius: 3px; 33 | -moz-border-radius: 3px; 34 | -ms-border-radius: 3px; 35 | -o-border-radius: 3px; 36 | border-radius: 3px; 37 | } 38 | 39 | .lightbox a img { 40 | border: none; 41 | } 42 | 43 | .lb-outerContainer { 44 | position: relative; 45 | background-color: white; 46 | *zoom: 1; 47 | width: 250px; 48 | height: 250px; 49 | margin:5em auto 0.5em auto; 50 | -webkit-border-radius: 4px; 51 | -moz-border-radius: 4px; 52 | -ms-border-radius: 4px; 53 | -o-border-radius: 4px; 54 | border-radius: 4px; 55 | } 56 | 57 | .lb-outerContainer:after { 58 | content: ""; 59 | display: table; 60 | clear: both; 61 | } 62 | 63 | .lb-container { 64 | padding: 0px; 65 | } 66 | 67 | .lb-loader { 68 | position: absolute; 69 | top: 43%; 70 | left: 0; 71 | height: 25%; 72 | width: 100%; 73 | text-align: center; 74 | line-height: 0; 75 | } 76 | 77 | .lb-cancel { 78 | display: block; 79 | width: 32px; 80 | height: 32px; 81 | margin: 0 auto; 82 | background: url(../images/loading.gif) no-repeat; 83 | } 84 | 85 | .lb-nav { 86 | position: absolute; 87 | top: 0; 88 | left: 0; 89 | height: 100%; 90 | width: 100%; 91 | z-index: 10; 92 | } 93 | 94 | .lb-container > .nav { 95 | left: 0; 96 | } 97 | 98 | .lb-nav a { 99 | outline: none; 100 | background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); 101 | } 102 | 103 | .lb-prev, .lb-next { 104 | height: 100%; 105 | cursor: pointer; 106 | display: block; 107 | } 108 | 109 | .lb-nav a.lb-prev { 110 | width: 34%; 111 | left: 0; 112 | float: left; 113 | background: url(../images/prev.png) left 48% no-repeat; 114 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); 115 | opacity: 0; 116 | -webkit-transition: opacity 0.6s; 117 | -moz-transition: opacity 0.6s; 118 | -o-transition: opacity 0.6s; 119 | transition: opacity 0.6s; 120 | } 121 | 122 | .lb-nav a.lb-prev:hover { 123 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 124 | opacity: 1; 125 | } 126 | 127 | .lb-nav a.lb-next { 128 | width: 64%; 129 | right: 0; 130 | float: right; 131 | background: url(../images/next.png) right 48% no-repeat; 132 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); 133 | opacity: 0; 134 | -webkit-transition: opacity 0.6s; 135 | -moz-transition: opacity 0.6s; 136 | -o-transition: opacity 0.6s; 137 | transition: opacity 0.6s; 138 | } 139 | 140 | .lb-nav a.lb-next:hover { 141 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 142 | opacity: 1; 143 | } 144 | 145 | .lb-dataContainer { 146 | margin: 0 auto; 147 | padding-top: 5px; 148 | *zoom: 1; 149 | width: 100%; 150 | -moz-border-radius-bottomleft: 4px; 151 | -webkit-border-bottom-left-radius: 4px; 152 | border-bottom-left-radius: 4px; 153 | -moz-border-radius-bottomright: 4px; 154 | -webkit-border-bottom-right-radius: 4px; 155 | border-bottom-right-radius: 4px; 156 | } 157 | 158 | .lb-dataContainer:after { 159 | content: ""; 160 | display: table; 161 | clear: both; 162 | } 163 | 164 | .lb-data { 165 | padding: 0 4px; 166 | color: #ccc; 167 | } 168 | 169 | .lb-data .lb-details { 170 | width: 85%; 171 | float: left; 172 | text-align: left; 173 | line-height: 1.1em; 174 | } 175 | 176 | .lb-data .lb-caption { 177 | font-size: 13px; 178 | font-weight: bold; 179 | line-height: 1em; 180 | } 181 | 182 | .lb-data .lb-number { 183 | display: block; 184 | clear: left; 185 | padding-bottom: 1em; 186 | font-size: 12px; 187 | color: #999999; 188 | } 189 | 190 | .lb-data .lb-close { 191 | display: block; 192 | float: right; 193 | width: 30px; 194 | height: 30px; 195 | background: url(../images/close.png) top right no-repeat; 196 | text-align: right; 197 | outline: none; 198 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); 199 | opacity: 0.7; 200 | -webkit-transition: opacity 0.2s; 201 | -moz-transition: opacity 0.2s; 202 | -o-transition: opacity 0.2s; 203 | transition: opacity 0.2s; 204 | } 205 | 206 | .lb-data .lb-close:hover { 207 | cursor: pointer; 208 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 209 | opacity: 1; 210 | } 211 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/main.css: -------------------------------------------------------------------------------- 1 | /* 2 | * What follows is the result of much research on cross-browser styling. 3 | * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, 4 | * Kroc Camen, and the H5BP dev community and team. 5 | */ 6 | 7 | /* ========================================================================== 8 | Base styles: opinionated defaults 9 | ========================================================================== */ 10 | 11 | html { 12 | color: #222; 13 | font-size: 1em; 14 | line-height: 1.4; 15 | } 16 | 17 | /* 18 | * Remove text-shadow in selection highlight: 19 | * https://twitter.com/miketaylr/status/12228805301 20 | * 21 | * These selection rule sets have to be separate. 22 | * Customize the background color to match your design. 23 | */ 24 | 25 | ::selection { 26 | background: #b3d4fc; 27 | text-shadow: none; 28 | } 29 | 30 | /* 31 | * A better looking default horizontal rule 32 | */ 33 | 34 | hr { 35 | display: block; 36 | height: 1px; 37 | border: 0; 38 | border-top: 1px solid #ccc; 39 | margin: 1em 0; 40 | padding: 0; 41 | } 42 | 43 | /* 44 | * Remove the gap between audio, canvas, iframes, 45 | * images, videos and the bottom of their containers: 46 | * https://github.com/h5bp/html5-boilerplate/issues/440 47 | */ 48 | 49 | audio, 50 | canvas, 51 | iframe, 52 | img, 53 | svg, 54 | video { 55 | vertical-align: middle; 56 | } 57 | 58 | /* 59 | * Remove default fieldset styles. 60 | */ 61 | 62 | fieldset { 63 | border: 0; 64 | margin: 0; 65 | padding: 0; 66 | } 67 | 68 | /* 69 | * Allow only vertical resizing of textareas. 70 | */ 71 | 72 | textarea { 73 | resize: vertical; 74 | } 75 | 76 | /* ========================================================================== 77 | Browser Upgrade Prompt 78 | ========================================================================== */ 79 | 80 | .browserupgrade { 81 | margin: 0.2em 0; 82 | background: #ccc; 83 | color: #000; 84 | padding: 0.2em 0; 85 | } 86 | 87 | /* ========================================================================== 88 | Author's custom styles 89 | ========================================================================== */ 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | /* ========================================================================== 108 | Helper classes 109 | ========================================================================== */ 110 | 111 | /* 112 | * Hide visually and from screen readers 113 | */ 114 | 115 | .hidden { 116 | display: none !important; 117 | } 118 | 119 | /* 120 | * Hide only visually, but have it available for screen readers: 121 | * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility 122 | */ 123 | 124 | .visuallyhidden { 125 | border: 0; 126 | clip: rect(0 0 0 0); 127 | height: 1px; 128 | margin: -1px; 129 | overflow: hidden; 130 | padding: 0; 131 | position: absolute; 132 | width: 1px; 133 | } 134 | 135 | /* 136 | * Extends the .visuallyhidden class to allow the element 137 | * to be focusable when navigated to via the keyboard: 138 | * https://www.drupal.org/node/897638 139 | */ 140 | 141 | .visuallyhidden.focusable:active, 142 | .visuallyhidden.focusable:focus { 143 | clip: auto; 144 | height: auto; 145 | margin: 0; 146 | overflow: visible; 147 | position: static; 148 | width: auto; 149 | } 150 | 151 | /* 152 | * Hide visually and from screen readers, but maintain layout 153 | */ 154 | 155 | .invisible { 156 | visibility: hidden; 157 | } 158 | 159 | /* 160 | * Clearfix: contain floats 161 | * 162 | * For modern browsers 163 | * 1. The space content is one way to avoid an Opera bug when the 164 | * `contenteditable` attribute is included anywhere else in the document. 165 | * Otherwise it causes space to appear at the top and bottom of elements 166 | * that receive the `clearfix` class. 167 | * 2. The use of `table` rather than `block` is only necessary if using 168 | * `:before` to contain the top-margins of child elements. 169 | */ 170 | 171 | .clearfix:before, 172 | .clearfix:after { 173 | content: " "; /* 1 */ 174 | display: table; /* 2 */ 175 | } 176 | 177 | .clearfix:after { 178 | clear: both; 179 | } 180 | 181 | /* ========================================================================== 182 | EXAMPLE Media Queries for Responsive Design. 183 | These examples override the primary ('mobile first') styles. 184 | Modify as content requires. 185 | ========================================================================== */ 186 | 187 | @media only screen and (min-width: 35em) { 188 | /* Style adjustments for viewports that meet the condition */ 189 | } 190 | 191 | @media print, 192 | (min-resolution: 1.25dppx), 193 | (min-resolution: 120dpi) { 194 | /* Style adjustments for high resolution devices */ 195 | } 196 | 197 | /* ========================================================================== 198 | Print styles. 199 | Inlined to avoid the additional HTTP request: 200 | http://www.phpied.com/delay-loading-your-print-css/ 201 | ========================================================================== */ 202 | 203 | @media print { 204 | *, 205 | *:before, 206 | *:after, 207 | *:first-letter, 208 | *:first-line { 209 | background: transparent !important; 210 | color: #000 !important; /* Black prints faster: 211 | http://www.sanbeiji.com/archives/953 */ 212 | box-shadow: none !important; 213 | text-shadow: none !important; 214 | } 215 | 216 | a, 217 | a:visited { 218 | text-decoration: underline; 219 | } 220 | 221 | a[href]:after { 222 | content: " (" attr(href) ")"; 223 | } 224 | 225 | abbr[title]:after { 226 | content: " (" attr(title) ")"; 227 | } 228 | 229 | /* 230 | * Don't show links that are fragment identifiers, 231 | * or use the `javascript:` pseudo protocol 232 | */ 233 | 234 | a[href^="#"]:after, 235 | a[href^="javascript:"]:after { 236 | content: ""; 237 | } 238 | 239 | pre, 240 | blockquote { 241 | border: 1px solid #999; 242 | page-break-inside: avoid; 243 | } 244 | 245 | /* 246 | * Printing Tables: 247 | * http://css-discuss.incutio.com/wiki/Printing_Tables 248 | */ 249 | 250 | thead { 251 | display: table-header-group; 252 | } 253 | 254 | tr, 255 | img { 256 | page-break-inside: avoid; 257 | } 258 | 259 | img { 260 | max-width: 100% !important; 261 | } 262 | 263 | p, 264 | h2, 265 | h3 { 266 | orphans: 3; 267 | widows: 3; 268 | } 269 | 270 | h2, 271 | h3 { 272 | page-break-after: avoid; 273 | } 274 | } 275 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/newform.css: -------------------------------------------------------------------------------- 1 | .bootstrap-frm { 2 | margin-left:auto; 3 | margin-right:auto; 4 | max-width: 800px; 5 | max-height:none; 6 | background: #FFF; 7 | padding: 20px 30px 20px 30px; 8 | font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif; 9 | color: #888; 10 | text-shadow: 1px 1px 1px #FFF; 11 | border:1px solid #DDD; 12 | border-radius: 5px; 13 | -webkit-border-radius: 5px; 14 | -moz-border-radius: 5px; 15 | } 16 | .bootstrap-frm h1 { 17 | font: 25px "Helvetica Neue", Helvetica, Arial, sans-serif; 18 | padding: 0px 0px 10px 40px; 19 | display: block; 20 | border-bottom: 1px solid #DADADA; 21 | margin: -10px -30px 30px -30px; 22 | color: #888; 23 | } 24 | .bootstrap-frm h1>span { 25 | display: block; 26 | font-size: 11px; 27 | } 28 | .bootstrap-frm label { 29 | display: block; 30 | margin: 0px 0px 5px; 31 | } 32 | .bootstrap-frm label>span { 33 | float: left; 34 | width: 20%; 35 | text-align: right; 36 | padding-right: 10px; 37 | margin-top: 10px; 38 | color: #333; 39 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 40 | font-weight: bold; 41 | } 42 | .bootstrap-frm input[type="text"], .bootstrap-frm input[type="email"], .bootstrap-frm textarea, .bootstrap-frm select{ 43 | border: 1px solid #CCC; 44 | color: #888; 45 | height: 20px; 46 | line-height:15px; 47 | margin-bottom: 16px; 48 | margin-right: 6px; 49 | margin-top: 2px; 50 | outline: 0 none; 51 | padding: 5px 0px 5px 5px; 52 | width: 70%; 53 | border-radius: 4px; 54 | -webkit-border-radius: 4px; 55 | -moz-border-radius: 4px; 56 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 57 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 58 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 59 | } 60 | .bootstrap-frm select { 61 | background: #FFF url('down-arrow.png') no-repeat right; 62 | background: #FFF url('down-arrow.png') no-repeat right; 63 | appearance:none; 64 | -webkit-appearance:none; 65 | -moz-appearance: none; 66 | text-indent: 0.01px; 67 | text-overflow: ''; 68 | width: 70%; 69 | height: 35px; 70 | line-height:15px; 71 | } 72 | .bootstrap-frm textarea{ 73 | height:100px; 74 | padding: 5px 0px 0px 5px; 75 | width: 70%; 76 | } 77 | .bootstrap-frm .button { 78 | background: #FFF; 79 | border: 1px solid #CCC; 80 | padding: 10px 25px 10px 25px; 81 | color: #333; 82 | border-radius: 4px; 83 | } 84 | .bootstrap-frm .button:hover { 85 | color: #333; 86 | background-color: #EBEBEB; 87 | border-color: #ADADAD; 88 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/panel.css: -------------------------------------------------------------------------------- 1 | 2 | table, caption, tbody, tfoot, thead, tr,th, td { 3 | margin:0; 4 | padding:0; 5 | border:0; 6 | outline:0; 7 | font-size:100%; 8 | vertical-align:baseline; 9 | background:transparent; 10 | } 11 | 12 | .body { 13 | margin:0; 14 | padding:0; 15 | font:12px/15px "Helvetica Neue",Arial, Helvetica, sans-serif; 16 | color: #555; 17 | background:#f5f5f5 url(bg.jpg); 18 | } 19 | 20 | a {color:#666;} 21 | 22 | #content {width:65%; max-width:690px; margin:6% auto 0;} 23 | 24 | 25 | .table { 26 | overflow:hidden; 27 | border:1px solid #d3d3d3; 28 | background:#fefefe; 29 | width:800px; 30 | margin:5% auto 0; 31 | -moz-border-radius:5px; /* FF1+ */ 32 | -webkit-border-radius:5px; /* Saf3-4 */ 33 | border-radius:5px; 34 | -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); 35 | -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); 36 | } 37 | 38 | .table-font{ 39 | font-family:"Helvetica Neue"; 40 | font-size:25px; 41 | font-style:normal; 42 | color:#333; 43 | } 44 | 45 | th, td {padding:18px 28px 18px; text-align:center; } 46 | 47 | th {padding-top:22px; text-shadow: 1px 1px 1px #fff; background:#e8eaeb;} 48 | 49 | td {border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0;} 50 | 51 | tr.odd-row td {background:#f6f6f6;} 52 | 53 | td.first, th.first {text-align:left} 54 | 55 | td.last {border-right:none;} 56 | 57 | /* 58 | Background gradients are completely unnecessary but a neat effect. 59 | */ 60 | 61 | .table td { 62 | background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9); 63 | background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe)); 64 | } 65 | 66 | tr.odd-row td { 67 | background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1); 68 | background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6)); 69 | } 70 | 71 | .table th { 72 | background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed); 73 | background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb)); 74 | } 75 | 76 | 77 | tr:first-child th.first { 78 | -moz-border-radius-topleft:5px; 79 | -webkit-border-top-left-radius:5px; /* Saf3-4 */ 80 | } 81 | 82 | tr:first-child th.last { 83 | -moz-border-radius-topright:5px; 84 | -webkit-border-top-right-radius:5px; /* Saf3-4 */ 85 | } 86 | 87 | tr:last-child td.first { 88 | -moz-border-radius-bottomleft:5px; 89 | -webkit-border-bottom-left-radius:5px; /* Saf3-4 */ 90 | } 91 | 92 | tr:last-child td.last { 93 | -moz-border-radius-bottomright:5px; 94 | -webkit-border-bottom-right-radius:5px; /* Saf3-4 */ 95 | } -------------------------------------------------------------------------------- /lianbangtrans/WebContent/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/css/styles.css -------------------------------------------------------------------------------- /lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /lianbangtrans/WebContent/fonts/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/fonts/point.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/1.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/1.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/10.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/11.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/12.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/13.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/14.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/2.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/3.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/4.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/5.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/6.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/7.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/8.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/9.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630145309.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630145309.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630145540.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630145540.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630145758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630145758.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630150332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630150332.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630151256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630151256.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/QQ图片20160630151404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/QQ图片20160630151404.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/Thumbs.db -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/banner.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/banner1.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/biggerdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/biggerdot.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/check-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/check-icon.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/close.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/dot.gif -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/ico10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/ico10.gif -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/ico11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/ico11.gif -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/ico9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/ico9.gif -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/img-sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/img-sp.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/img-sp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/img-sp1.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/img.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/next.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/po1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/po1.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/po2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/po2.jpg -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/prev.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/search.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/side_icon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/side_icon01.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/side_icon02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/side_icon02.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/side_icon03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/side_icon03.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/side_icon04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/side_icon04.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/side_icon05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/side_icon05.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/spirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/spirit.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-half-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-half-big.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-half.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-off-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-off-big.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-off.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-on-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-on-big.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/images/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/WebContent/images/star-on.png -------------------------------------------------------------------------------- /lianbangtrans/WebContent/js/chart-data.js: -------------------------------------------------------------------------------- 1 | var randomScalingFactor = function(){ return Math.round(Math.random()*1000)}; 2 | 3 | var lineChartData = { 4 | labels : ["January","February","March","April","May","June","July"], 5 | datasets : [ 6 | { 7 | label: "My First dataset", 8 | fillColor : "rgba(220,220,220,0.2)", 9 | strokeColor : "rgba(220,220,220,1)", 10 | pointColor : "rgba(220,220,220,1)", 11 | pointStrokeColor : "#fff", 12 | pointHighlightFill : "#fff", 13 | pointHighlightStroke : "rgba(220,220,220,1)", 14 | data : [randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor()] 15 | }, 16 | { 17 | label: "My Second dataset", 18 | fillColor : "rgba(48, 164, 255, 0.2)", 19 | strokeColor : "rgba(48, 164, 255, 1)", 20 | pointColor : "rgba(48, 164, 255, 1)", 21 | pointStrokeColor : "#fff", 22 | pointHighlightFill : "#fff", 23 | pointHighlightStroke : "rgba(48, 164, 255, 1)", 24 | data : [randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor()] 25 | } 26 | ] 27 | 28 | } 29 | 30 | var barChartData = { 31 | labels : ["January","February","March","April","May","June","July"], 32 | datasets : [ 33 | { 34 | fillColor : "rgba(220,220,220,0.5)", 35 | strokeColor : "rgba(220,220,220,0.8)", 36 | highlightFill: "rgba(220,220,220,0.75)", 37 | highlightStroke: "rgba(220,220,220,1)", 38 | data : [randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor()] 39 | }, 40 | { 41 | fillColor : "rgba(48, 164, 255, 0.2)", 42 | strokeColor : "rgba(48, 164, 255, 0.8)", 43 | highlightFill : "rgba(48, 164, 255, 0.75)", 44 | highlightStroke : "rgba(48, 164, 255, 1)", 45 | data : [randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor(),randomScalingFactor()] 46 | } 47 | ] 48 | 49 | } 50 | 51 | var pieData = [ 52 | { 53 | value: 300, 54 | color:"#30a5ff", 55 | highlight: "#62b9fb", 56 | label: "Blue" 57 | }, 58 | { 59 | value: 50, 60 | color: "#ffb53e", 61 | highlight: "#fac878", 62 | label: "Orange" 63 | }, 64 | { 65 | value: 100, 66 | color: "#1ebfae", 67 | highlight: "#3cdfce", 68 | label: "Teal" 69 | }, 70 | { 71 | value: 120, 72 | color: "#f9243f", 73 | highlight: "#f6495f", 74 | label: "Red" 75 | } 76 | 77 | ]; 78 | 79 | var doughnutData = [ 80 | { 81 | value: 300, 82 | color:"#30a5ff", 83 | highlight: "#62b9fb", 84 | label: "Blue" 85 | }, 86 | { 87 | value: 50, 88 | color: "#ffb53e", 89 | highlight: "#fac878", 90 | label: "Orange" 91 | }, 92 | { 93 | value: 100, 94 | color: "#1ebfae", 95 | highlight: "#3cdfce", 96 | label: "Teal" 97 | }, 98 | { 99 | value: 120, 100 | color: "#f9243f", 101 | highlight: "#f6495f", 102 | label: "Red" 103 | } 104 | 105 | ]; 106 | 107 | window.onload = function(){ 108 | var chart1 = document.getElementById("line-chart").getContext("2d"); 109 | window.myLine = new Chart(chart1).Line(lineChartData, { 110 | responsive: true 111 | }); 112 | var chart2 = document.getElementById("bar-chart").getContext("2d"); 113 | window.myBar = new Chart(chart2).Bar(barChartData, { 114 | responsive : true 115 | }); 116 | var chart3 = document.getElementById("doughnut-chart").getContext("2d"); 117 | window.myDoughnut = new Chart(chart3).Doughnut(doughnutData, {responsive : true 118 | }); 119 | var chart4 = document.getElementById("pie-chart").getContext("2d"); 120 | window.myPie = new Chart(chart4).Pie(pieData, {responsive : true 121 | }); 122 | 123 | }; -------------------------------------------------------------------------------- /lianbangtrans/WebContent/js/easypiechart-data.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('#easypiechart-teal').easyPieChart({ 3 | scaleColor: false, 4 | barColor: '#1ebfae' 5 | }); 6 | }); 7 | 8 | $(function() { 9 | $('#easypiechart-orange').easyPieChart({ 10 | scaleColor: false, 11 | barColor: '#ffb53e' 12 | }); 13 | }); 14 | 15 | $(function() { 16 | $('#easypiechart-red').easyPieChart({ 17 | scaleColor: false, 18 | barColor: '#f9243f' 19 | }); 20 | }); 21 | 22 | $(function() { 23 | $('#easypiechart-blue').easyPieChart({ 24 | scaleColor: false, 25 | barColor: '#30a5ff' 26 | }); 27 | }); 28 | 29 | $('#calendar').datepicker({ 30 | }); 31 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/js/html5shiv.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @preserve HTML5 Shiv 3.7.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | !function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.2",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b)}(this,document); -------------------------------------------------------------------------------- /lianbangtrans/WebContent/js/jquery.easing.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ 3 | * 4 | * Uses the built in easing capabilities added In jQuery 1.1 5 | * to offer multiple easing options 6 | * 7 | * TERMS OF USE - EASING EQUATIONS 8 | * 9 | * Open source under the BSD License. 10 | * 11 | * Copyright © 2001 Robert Penner 12 | * All rights reserved. 13 | * 14 | * TERMS OF USE - jQuery Easing 15 | * 16 | * Open source under the BSD License. 17 | * 18 | * Copyright © 2008 George McGinley Smith 19 | * All rights reserved. 20 | * 21 | * Redistribution and use in source and binary forms, with or without modification, 22 | * are permitted provided that the following conditions are met: 23 | * 24 | * Redistributions of source code must retain the above copyright notice, this list of 25 | * conditions and the following disclaimer. 26 | * Redistributions in binary form must reproduce the above copyright notice, this list 27 | * of conditions and the following disclaimer in the documentation and/or other materials 28 | * provided with the distribution. 29 | * 30 | * Neither the name of the author nor the names of contributors may be used to endorse 31 | * or promote products derived from this software without specific prior written permission. 32 | * 33 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 34 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 35 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 36 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 37 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 38 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 39 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 40 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 41 | * OF THE POSSIBILITY OF SUCH DAMAGE. 42 | * 43 | */ 44 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g0){c=a._between(c,0,this.opt.number);this.score.val(c);}a._fill.call(this,c);if(c){a._roundStars.call(this,c);}},_between:function(e,d,c){return Math.min(Math.max(parseFloat(e),d),c);},_binds:function(){if(this.cancel){a._bindCancel.call(this);}a._bindClick.call(this);a._bindOut.call(this);a._bindOver.call(this);},_bindCancel:function(){a._bindClickCancel.call(this);a._bindOutCancel.call(this);a._bindOverCancel.call(this);},_bindClick:function(){var c=this,d=b(c);c.stars.on("click.raty",function(e){c.score.val((c.opt.half||c.opt.precision)?d.data("score"):this.alt);if(c.opt.click){c.opt.click.call(c,parseFloat(c.score.val()),e);}});},_bindClickCancel:function(){var c=this;c.cancel.on("click.raty",function(d){c.score.removeAttr("value");if(c.opt.click){c.opt.click.call(c,null,d);}});},_bindOut:function(){var c=this;b(this).on("mouseleave.raty",function(d){var e=parseFloat(c.score.val())||undefined;a._apply.call(c,e);a._target.call(c,e,d);if(c.opt.mouseout){c.opt.mouseout.call(c,e,d);}});},_bindOutCancel:function(){var c=this;c.cancel.on("mouseleave.raty",function(d){b(this).attr("src",c.opt.path+c.opt.cancelOff);if(c.opt.mouseout){c.opt.mouseout.call(c,c.score.val()||null,d);}});},_bindOverCancel:function(){var c=this;c.cancel.on("mouseover.raty",function(d){b(this).attr("src",c.opt.path+c.opt.cancelOn);c.stars.attr("src",c.opt.path+c.opt.starOff);a._target.call(c,null,d);if(c.opt.mouseover){c.opt.mouseover.call(c,null);}});},_bindOver:function(){var c=this,d=b(c),e=c.opt.half?"mousemove.raty":"mouseover.raty";c.stars.on(e,function(g){var h=parseInt(this.alt,10);if(c.opt.half){var f=parseFloat((g.pageX-b(this).offset().left)/c.opt.size),j=(f>0.5)?1:0.5;h=h-1+j;a._fill.call(c,h);if(c.opt.precision){h=h-j+f;}a._roundStars.call(c,h);d.data("score",h);}else{a._fill.call(c,h);}a._target.call(c,h,g);if(c.opt.mouseover){c.opt.mouseover.call(c,h,g);}});},_callback:function(c){for(i in c){if(typeof this.opt[c[i]]==="function"){this.opt[c[i]]=this.opt[c[i]].call(this);}}},_createCancel:function(){var e=b(this),c=this.opt.path+this.opt.cancelOff,d=b("",{src:c,alt:"x",title:this.opt.cancelHint,"class":"raty-cancel"});if(this.opt.cancelPlace=="left"){e.prepend(" ").prepend(d);}else{e.append(" ").append(d);}return d;},_createScore:function(){return b("",{type:"hidden",name:this.opt.scoreName}).appendTo(this);},_createStars:function(){var e=b(this);for(var c=1;c<=this.opt.number;c++){var f=a._getHint.call(this,c),d=(this.opt.score&&this.opt.score>=c)?"starOn":"starOff";d=this.opt.path+this.opt[d];b("",{src:d,alt:c,title:f}).appendTo(this);if(this.opt.space){e.append((ce){var j=m.opt.iconRange[e],h=j.on||m.opt.starOn,c=j.off||m.opt.starOff,k=l?h:c;if(f<=j.range){g.attr("src",m.opt.path+k);}if(f==j.range){e++;}}else{var k=l?"starOn":"starOff";g.attr("src",this.opt.path+this.opt[k]);}}},_getHint:function(d){var c=this.opt.hints[d-1];return(c==="")?"":(c||d);},_lock:function(){var d=parseInt(this.score.val(),10),c=d?a._getHint.call(this,d):this.opt.noRatedMsg;b(this).data("readonly",true).css("cursor","").attr("title",c);this.score.attr("readonly","readonly");this.stars.attr("title",c);if(this.cancel){this.cancel.hide();}},_roundStars:function(e){var d=(e-Math.floor(e)).toFixed(2);if(d>this.opt.round.down){var c="starOn";if(this.opt.halfShow&&d1)?d:d[0];},readOnly:function(c){return this.each(function(){var d=b(this);if(d.data("readonly")!==c){if(c){d.off(".raty").children("img").off(".raty");a._lock.call(this);}else{a._binds.call(this);a._unlock.call(this);}d.data("readonly",c);}});},reload:function(){return a.set.call(this,{});},score:function(){return arguments.length?a.setScore.apply(this,arguments):a.getScore.call(this);},set:function(c){return this.each(function(){var e=b(this),f=e.data("settings"),d=b.extend({},f,c);e.raty(d);});},setScore:function(c){return b(this).each(function(){if(b(this).data("readonly")!==true){a._apply.call(this,c);a._target.call(this,c);}});}};b.fn.raty=function(c){if(a[c]){return a[c].apply(this,Array.prototype.slice.call(arguments,1));}else{if(typeof c==="object"||!c){return a.init.apply(this,arguments);}else{b.error("Method "+c+" does not exist!");}}};b.fn.raty.defaults={cancel:false,cancelHint:"Cancel this rating!",cancelOff:"cancel-off.png",cancelOn:"cancel-on.png",cancelPlace:"left",click:undefined,half:false,halfShow:true,hints:["bad","poor","regular","good","gorgeous"],iconRange:undefined,mouseout:undefined,mouseover:undefined,noRatedMsg:"Not rated yet!",number:5,numberMax:20,path:"",precision:false,readOnly:false,round:{down:0.25,full:0.6,up:0.76},score:undefined,scoreName:"score",single:false,size:16,space:true,starHalf:"star-half.png",starOff:"star-off.png",starOn:"star-on.png",target:undefined,targetFormat:"{score}",targetKeep:false,targetText:"",targetType:"hint",width:undefined};})(jQuery); 13 | -------------------------------------------------------------------------------- /lianbangtrans/WebContent/js/prefixfree.min.js: -------------------------------------------------------------------------------- 1 | // StyleFix 1.0.1 & PrefixFree 1.0.4 / by Lea Verou / MIT license 2 | (function(){function f(a,b){return[].slice.call((b||document).querySelectorAll(a))}if(window.addEventListener){var b=window.StyleFix={link:function(a){try{if(!/\bstylesheet\b/i.test(a.rel)||!a.sheet.cssRules)return}catch(c){return}var d=a.href||a.getAttribute("data-href"),g=d.replace(/[^\/]+$/,""),e=a.parentNode,h=new XMLHttpRequest;h.open("GET",d);h.onreadystatechange=function(){if(h.readyState===4){var c=h.responseText;if(c&&a.parentNode){c=b.fix(c,true,a);g&&(c=c.replace(/url\((?:'|")?(.+?)(?:'|")?\)/gi, 3 | function(a,c){return!/^([a-z]{3,10}:|\/)/i.test(c)?'url("'+g+c+'")':a}),c=c.replace(RegExp("\\b(behavior:\\s*?url\\('?\"?)"+g,"gi"),"$1"));var d=document.createElement("style");d.textContent=c;d.media=a.media;d.disabled=a.disabled;d.setAttribute("data-href",a.getAttribute("href"));e.insertBefore(d,a);e.removeChild(a)}}};h.send(null);a.setAttribute("data-inprogress","")},styleElement:function(a){var c=a.disabled;a.textContent=b.fix(a.textContent,true,a);a.disabled=c},styleAttribute:function(a){var c= 4 | a.getAttribute("style"),c=b.fix(c,false,a);a.setAttribute("style",c)},process:function(){f('link[rel~="stylesheet"]:not([data-inprogress])').forEach(StyleFix.link);f("style").forEach(StyleFix.styleElement);f("[style]").forEach(StyleFix.styleAttribute)},register:function(a,c){(b.fixers=b.fixers||[]).splice(c===void 0?b.fixers.length:c,0,a)},fix:function(a,c){for(var d=0;d-1){var e=b.split("-"); 8 | if(b.charAt(0)==="-"){var b=e[1],f=++a[b]||1;a[b]=f;for(d3;)e.pop(),f=e.join("-"),StyleFix.camelCase(f)in h&&(b=g,b.indexOf(f)===-1&&b.push(f))}}};if(e.length>0)for(var i=0;i #mq-test-1 { width: 42px; }',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){v(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},g=function(a){return a.replace(c.regex.minmaxwh,"").match(c.regex.other)};if(c.ajax=f,c.queue=d,c.unsupportedmq=g,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,comments:/\/\*[^*]*\*+([^/][^*]*\*+)*\//gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,maxw:/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,minmaxwh:/\(\s*m(in|ax)\-(height|width)\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/gi,other:/\([^\)]*\)/g},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var h,i,j,k=a.document,l=k.documentElement,m=[],n=[],o=[],p={},q=30,r=k.getElementsByTagName("head")[0]||l,s=k.getElementsByTagName("base")[0],t=r.getElementsByTagName("link"),u=function(){var a,b=k.createElement("div"),c=k.body,d=l.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=k.createElement("body"),c.style.background="none"),l.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&l.insertBefore(c,l.firstChild),a=b.offsetWidth,f?l.removeChild(c):c.removeChild(b),l.style.fontSize=d,e&&(c.style.fontSize=e),a=j=parseFloat(a)},v=function(b){var c="clientWidth",d=l[c],e="CSS1Compat"===k.compatMode&&d||k.body[c]||d,f={},g=t[t.length-1],p=(new Date).getTime();if(b&&h&&q>p-h)return a.clearTimeout(i),i=a.setTimeout(v,q),void 0;h=p;for(var s in m)if(m.hasOwnProperty(s)){var w=m[s],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?j||u():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?j||u():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(n[w.rules]))}for(var C in o)o.hasOwnProperty(C)&&o[C]&&o[C].parentNode===r&&r.removeChild(o[C]);o.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=k.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,r.insertBefore(E,g.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(k.createTextNode(F)),o.push(E)}},w=function(a,b,d){var e=a.replace(c.regex.comments,"").replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},i=!f&&d;b.length&&(b+="/"),i&&(f=1);for(var j=0;f>j;j++){var k,l,o,p;i?(k=d,n.push(h(a))):(k=e[j].match(c.regex.findStyles)&&RegExp.$1,n.push(RegExp.$2&&h(RegExp.$2))),o=k.split(","),p=o.length;for(var q=0;p>q;q++)l=o[q],g(l)||m.push({media:l.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:n.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}v()},x=function(){if(d.length){var b=d.shift();f(b.href,function(c){w(c,b.href,b.media),p[b.href]=!0,a.setTimeout(function(){x()},0)})}},y=function(){for(var b=0;b 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 35 | 36 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/entity/mapper/MissCityMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/entity/mapper/OrderMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 33 | 34 | 39 | 44 | 45 | 50 | 51 | INSERT INTO 52 | orderinfo(User_Num,Order_Receiver,Rec_Tel,Order_City,Order_Time,Order_Des) 53 | Values 54 | (#{userNum},#{orderReceiver},#{rectel},#{orderCity},#{orderTime},#{orderDes}) 55 | 56 | 57 | 58 | 65 | 66 | UPDATE 67 | orderinfo 68 | SET 69 | Order_UserCom = #{orderUserCom} 70 | WHERE 71 | orderinfo.Order_Num = #{orderNum} 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/entity/mapper/UserMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | insert into userinfo( 31 | User_Name, 32 | User_Tel, 33 | User_Key, 34 | User_ConfKey, 35 | User_CardID, 36 | User_Mail, 37 | User_Address) 38 | values(#{name},#{tel},#{key},#{confkey},#{cardid},#{mail},#{userAddress}) 39 | 40 | 41 | 49 | 50 | 58 | 59 | -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/service/OrderService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/build/classes/com/lianbang/service/OrderService.class -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/build/classes/com/lianbang/service/UserService.class -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/web/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/build/classes/com/lianbang/web/LoginController.class -------------------------------------------------------------------------------- /lianbangtrans/build/classes/com/lianbang/web/OrderController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/build/classes/com/lianbang/web/OrderController.class -------------------------------------------------------------------------------- /lianbangtrans/build/classes/spring-mvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /lianbangtrans/build/classes/sqlMapConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/dao/OrderDao.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.dao; 2 | 3 | import java.io.IOException; 4 | import java.io.InputStream; 5 | import java.util.HashMap; 6 | import java.util.List; 7 | import java.util.Map; 8 | 9 | import org.apache.ibatis.io.Resources; 10 | import org.apache.ibatis.session.SqlSession; 11 | import org.apache.ibatis.session.SqlSessionFactory; 12 | import org.apache.ibatis.session.SqlSessionFactoryBuilder; 13 | 14 | import com.lianbang.entity.City; 15 | import com.lianbang.entity.MissCity; 16 | import com.lianbang.entity.Order; 17 | import com.lianbang.entity.User; 18 | 19 | public class OrderDao { 20 | private SqlSessionFactory factory; 21 | 22 | 23 | 24 | public OrderDao() { 25 | String resource = "sqlMapConfig.xml"; 26 | InputStream is; 27 | try { 28 | is = Resources.getResourceAsStream(resource); 29 | factory = new SqlSessionFactoryBuilder().build(is); 30 | } catch (IOException e) { 31 | e.printStackTrace(); 32 | } 33 | } 34 | 35 | 36 | 37 | public List getOrderSendList(int id) { 38 | SqlSession session=factory.openSession(); 39 | System.out.println(id+"dao1"); 40 | List orderlist=session.selectList("order.findsendlist",id); 41 | session.close(); 42 | return orderlist; 43 | } 44 | public Order getOrderSend(int id) { 45 | // TODO Auto-generated method stub 46 | SqlSession session=factory.openSession(); 47 | System.out.println(id+"AAAAA"); 48 | Order order = session.selectOne("order.finsendOne",id); 49 | return order; 50 | } 51 | 52 | 53 | 54 | public List getOrderReceiveList(int id) { 55 | SqlSession session=factory.openSession(); 56 | System.out.println(id+"dao1"); 57 | List orderlist=session.selectList("order.findreceivelist",id); 58 | session.close(); 59 | return orderlist; 60 | } 61 | 62 | public List getOrderAccomplishList(int id) { 63 | SqlSession session=factory.openSession(); 64 | System.out.println(id+"dao1"); 65 | List orderlist=session.selectList("order.findaccomplishlist",id); 66 | session.close(); 67 | return orderlist; 68 | } 69 | 70 | 71 | 72 | public User getUserList(int id) { 73 | SqlSession session=factory.openSession(); 74 | User user = session.selectOne("user.findUser", id); 75 | return user; 76 | // TODO Auto-generated method stub 77 | 78 | } 79 | 80 | public void add(Order order) { 81 | // TODO Auto-generated method stub 82 | SqlSession session=factory.openSession(); 83 | 84 | session.insert("order.insert",order); 85 | session.commit(); 86 | 87 | session.close(); 88 | } 89 | 90 | 91 | public Order findMissNum(int number1) { 92 | // TODO Auto-generated method stub 93 | SqlSession session = factory.openSession(); 94 | Order order1 = session.selectOne("order.findOrderNum",number1); 95 | 96 | session.close(); 97 | return order1; 98 | 99 | } 100 | public MissCity findCityNum(int aaa){ 101 | SqlSession session = factory.openSession(); 102 | MissCity missCity = session.selectOne("missCity.findCityNum",aaa); 103 | 104 | session.close(); 105 | 106 | 107 | return missCity; 108 | 109 | 110 | } 111 | 112 | 113 | 114 | public List findCityName(City city) { 115 | // TODO Auto-generated method stub 116 | SqlSession session = factory.openSession(); 117 | List listCity = session.selectList("city.findCityName",city); 118 | 119 | session.close(); 120 | return listCity; 121 | } 122 | 123 | 124 | 125 | public int findCityLine(int f) { 126 | // TODO Auto-generated method stub 127 | SqlSession session = factory.openSession(); 128 | int a = session.selectOne("city.findCityLine",f); 129 | 130 | session.close(); 131 | return a; 132 | } 133 | 134 | 135 | 136 | public void updatePing(Order order1) { 137 | // TODO Auto-generated method stub 138 | SqlSession session = factory.openSession(); 139 | session.insert("order.updatePing",order1); 140 | session.commit(); 141 | session.close(); 142 | 143 | 144 | } 145 | 146 | 147 | 148 | } 149 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/src/com/lianbang/dao/UserDao.java -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/City.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.entity; 2 | 3 | 4 | 5 | 6 | import org.eclipse.core.internal.runtime.DataArea; 7 | 8 | public class City { 9 | private int cityNum; 10 | private String cityName; 11 | private int cityLine; 12 | private int cityDis; 13 | private String cityTime; 14 | 15 | 16 | 17 | 18 | public String getCityTime() { 19 | return cityTime; 20 | } 21 | public void setCityTime(String cityTime) { 22 | this.cityTime = cityTime; 23 | } 24 | public City() { 25 | super(); 26 | } 27 | public int getCityNum() { 28 | return cityNum; 29 | } 30 | public void setCityNum(int cityNum) { 31 | this.cityNum = cityNum; 32 | } 33 | public String getCityName() { 34 | return cityName; 35 | } 36 | public void setCityName(String cityName) { 37 | this.cityName = cityName; 38 | } 39 | public int getCityLine() { 40 | return cityLine; 41 | } 42 | public void setCityLine(int cityLine) { 43 | this.cityLine = cityLine; 44 | } 45 | public int getCityDis() { 46 | return cityDis; 47 | } 48 | public void setCityDis(int cityDis) { 49 | this.cityDis = cityDis; 50 | } 51 | 52 | 53 | 54 | 55 | public City(int cityNum, String cityName, int cityLine, 56 | int cityDis, String cityTime) { 57 | super(); 58 | this.cityNum = cityNum; 59 | this.cityName = cityName; 60 | this.cityLine = cityLine; 61 | this.cityDis = cityDis; 62 | this.cityTime = cityTime; 63 | } 64 | @Override 65 | public String toString() { 66 | return "City [cityNum=" + cityNum + ", cityName=" + cityName 67 | + ", cityLine=" + cityLine + ", cityDis=" + cityDis 68 | + "]"; 69 | } 70 | 71 | 72 | } -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/Driver.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.entity; 2 | 3 | public class Driver { 4 | 5 | private int driverNum; 6 | private int cityNum; 7 | private int carNum; 8 | private String driverName; 9 | private boolean driverGender; 10 | private String driverID; 11 | private String driverTel; 12 | private String driverState; 13 | private int driverOrderNum; 14 | private int driverMileNum; 15 | private int driverKPA; 16 | private boolean driverIns; 17 | private String driverCompany; 18 | private int driverLevel; 19 | private String driverKey; 20 | 21 | 22 | public Driver() { 23 | super(); 24 | } 25 | 26 | 27 | public Driver(int driverNum, int cityNum, int carNum, String driverName, boolean driverGender, 28 | String driverID, String driverTel, String driverState, int driverOrderNum, int driverMileNum, 29 | int driverKPA, boolean driverIns, String driverCompany, int driverLevel, String driverKey) { 30 | super(); 31 | this.driverNum = driverNum; 32 | this.cityNum = cityNum; 33 | this.carNum = carNum; 34 | this.driverName = driverName; 35 | this.driverGender = driverGender; 36 | this.driverID = driverID; 37 | this.driverTel = driverTel; 38 | this.driverState = driverState; 39 | this.driverOrderNum = driverOrderNum; 40 | this.driverMileNum = driverMileNum; 41 | this.driverKPA = driverKPA; 42 | this.driverIns = driverIns; 43 | this.driverCompany = driverCompany; 44 | this.driverLevel = driverLevel; 45 | this.driverKey = driverKey; 46 | } 47 | 48 | 49 | public int getDriverNum() { 50 | return driverNum; 51 | } 52 | 53 | 54 | public void setDriverNum(int driverNum) { 55 | this.driverNum = driverNum; 56 | } 57 | 58 | 59 | public int getCityNum() { 60 | return cityNum; 61 | } 62 | 63 | 64 | public void setCityNum(int cityNum) { 65 | this.cityNum = cityNum; 66 | } 67 | 68 | 69 | public int getCarNum() { 70 | return carNum; 71 | } 72 | 73 | 74 | public void setCarNum(int carNum) { 75 | this.carNum = carNum; 76 | } 77 | 78 | 79 | public String getDriverName() { 80 | return driverName; 81 | } 82 | 83 | 84 | public void setDriverName(String driverName) { 85 | this.driverName = driverName; 86 | } 87 | 88 | 89 | public boolean isDriverGender() { 90 | return driverGender; 91 | } 92 | 93 | 94 | public void setDriverGender(boolean driverGender) { 95 | this.driverGender = driverGender; 96 | } 97 | 98 | 99 | public String getDriverID() { 100 | return driverID; 101 | } 102 | 103 | 104 | public void setDriverID(String driverID) { 105 | this.driverID = driverID; 106 | } 107 | 108 | 109 | public String getDriverTel() { 110 | return driverTel; 111 | } 112 | 113 | 114 | public void setDriverTel(String driverTel) { 115 | this.driverTel = driverTel; 116 | } 117 | 118 | 119 | public String getDriverState() { 120 | return driverState; 121 | } 122 | 123 | 124 | public void setDriverState(String driverState) { 125 | this.driverState = driverState; 126 | } 127 | 128 | 129 | public int getDriverOrderNum() { 130 | return driverOrderNum; 131 | } 132 | 133 | 134 | public void setDriverOrderNum(int driverOrderNum) { 135 | this.driverOrderNum = driverOrderNum; 136 | } 137 | 138 | 139 | public int getDriverMileNum() { 140 | return driverMileNum; 141 | } 142 | 143 | 144 | public void setDriverMileNum(int driverMileNum) { 145 | this.driverMileNum = driverMileNum; 146 | } 147 | 148 | 149 | public int getDriverKPA() { 150 | return driverKPA; 151 | } 152 | 153 | 154 | public void setDriverKPA(int driverKPA) { 155 | this.driverKPA = driverKPA; 156 | } 157 | 158 | 159 | public boolean isDriverIns() { 160 | return driverIns; 161 | } 162 | 163 | 164 | public void setDriverIns(boolean driverIns) { 165 | this.driverIns = driverIns; 166 | } 167 | 168 | 169 | public String getDriverCompany() { 170 | return driverCompany; 171 | } 172 | 173 | 174 | public void setDriverCompany(String driverCompany) { 175 | this.driverCompany = driverCompany; 176 | } 177 | 178 | 179 | public int getDriverLevel() { 180 | return driverLevel; 181 | } 182 | 183 | 184 | public void setDriverLevel(int driverLevel) { 185 | this.driverLevel = driverLevel; 186 | } 187 | 188 | 189 | public String getDriverKey() { 190 | return driverKey; 191 | } 192 | 193 | 194 | public void setDriverKey(String driverKey) { 195 | this.driverKey = driverKey; 196 | } 197 | 198 | } 199 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/MissCity.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.entity; 2 | 3 | import java.sql.Date; 4 | 5 | public class MissCity { 6 | private int missNum; 7 | private int cityNum; 8 | private Date mcTime; 9 | private int mcDis; 10 | 11 | 12 | public int getMissNum() { 13 | return missNum; 14 | } 15 | public void setMissNum(int missNum) { 16 | this.missNum = missNum; 17 | } 18 | public int getCityNum() { 19 | return cityNum; 20 | } 21 | public void setCityNum(int cityNum) { 22 | this.cityNum = cityNum; 23 | } 24 | public Date getMcTime() { 25 | return mcTime; 26 | } 27 | public void setMcTime(Date mcTime) { 28 | this.mcTime = mcTime; 29 | } 30 | public int getMcDis() { 31 | return mcDis; 32 | } 33 | public void setMcDis(int mcDis) { 34 | this.mcDis = mcDis; 35 | } 36 | @Override 37 | public String toString() { 38 | return "MissCity [missNum=" + missNum + ", cityNum=" + cityNum + ", mcTime=" + mcTime + ", mcDis=" + mcDis 39 | + "]"; 40 | } 41 | 42 | 43 | } 44 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/Order.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.entity; 2 | 3 | import java.util.Date; 4 | 5 | public class Order { 6 | private int orderNum; 7 | private int userNum; 8 | private int missNum; 9 | private String orderReceiver; 10 | private String rectel; 11 | private int orderV; 12 | private int orderW; 13 | private int orderOriPlace; 14 | private int orderDes; 15 | private int orderState; 16 | private int orderUserCom; 17 | private Date orderTime; 18 | private String orderCity; 19 | 20 | 21 | public String getOrderCity() { 22 | return orderCity; 23 | } 24 | 25 | 26 | 27 | public void setOrderCity(String orderCity) { 28 | this.orderCity = orderCity; 29 | } 30 | 31 | 32 | 33 | public Order() { 34 | super(); 35 | } 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | @Override 47 | public String toString() { 48 | return "Order [orderNum=" + orderNum + ", userNum=" + userNum + ", missNum=" + missNum 49 | + ", orderReceiver=" + orderReceiver + ", rectel=" + rectel + ", orderV=" + orderV + ", orderW=" 50 | + orderW + ", orderOriPlace=" + orderOriPlace + ", orderDes=" + orderDes + ", orderState=" 51 | + orderState + ", orderUserCom=" + orderUserCom + ", orderTime=" + orderTime + ", orderCity=" 52 | + orderCity + "]"; 53 | } 54 | 55 | 56 | 57 | public String getRectel() { 58 | return rectel; 59 | } 60 | 61 | 62 | 63 | public void setRectel(String rectel) { 64 | this.rectel = rectel; 65 | } 66 | 67 | 68 | 69 | public Date getOrderTime() { 70 | return orderTime; 71 | } 72 | 73 | 74 | 75 | public void setOrderTime(Date orderTime) { 76 | this.orderTime = orderTime; 77 | } 78 | 79 | 80 | 81 | public int getOrderNum() { 82 | return orderNum; 83 | } 84 | 85 | 86 | 87 | public void setOrderNum(int orderNum) { 88 | this.orderNum = orderNum; 89 | } 90 | 91 | 92 | 93 | public int getUserNum() { 94 | return userNum; 95 | } 96 | 97 | 98 | 99 | public void setUserNum(int userNum) { 100 | this.userNum = userNum; 101 | } 102 | 103 | 104 | 105 | public int getMissNum() { 106 | return missNum; 107 | } 108 | 109 | 110 | 111 | public void setMissNum(int missNum) { 112 | this.missNum = missNum; 113 | } 114 | 115 | 116 | 117 | public String getOrderReceiver() { 118 | return orderReceiver; 119 | } 120 | 121 | 122 | 123 | public void setOrderReceiver(String orderReceiver) { 124 | this.orderReceiver = orderReceiver; 125 | } 126 | 127 | 128 | 129 | public int getOrderV() { 130 | return orderV; 131 | } 132 | 133 | 134 | 135 | public void setOrderV(int orderV) { 136 | this.orderV = orderV; 137 | } 138 | 139 | 140 | 141 | public int getOrderW() { 142 | return orderW; 143 | } 144 | 145 | 146 | 147 | public void setOrderW(int orderW) { 148 | this.orderW = orderW; 149 | } 150 | 151 | 152 | 153 | public int getOrderOriPlace() { 154 | return orderOriPlace; 155 | } 156 | 157 | 158 | 159 | public void setOrderOriPlace(int orderOriPlace) { 160 | this.orderOriPlace = orderOriPlace; 161 | } 162 | 163 | 164 | 165 | public int getOrderDes() { 166 | return orderDes; 167 | } 168 | 169 | 170 | 171 | public void setOrderDes(int orderDes) { 172 | this.orderDes = orderDes; 173 | } 174 | 175 | 176 | 177 | public int getOrderState() { 178 | return orderState; 179 | } 180 | 181 | 182 | 183 | public void setOrderState(int orderState) { 184 | this.orderState = orderState; 185 | } 186 | 187 | 188 | 189 | public int getOrderUserCom() { 190 | return orderUserCom; 191 | } 192 | 193 | 194 | 195 | public void setOrderUserCom(int orderUserCom) { 196 | this.orderUserCom = orderUserCom; 197 | } 198 | 199 | 200 | 201 | 202 | } 203 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/User.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.entity; 2 | 3 | public class User { 4 | @Override 5 | public String toString() { 6 | return "User [num=" + num + ", name=" + name + ", tel=" + tel 7 | + ", key=" + key + ", confkey=" + confkey + ", cardid=" 8 | + cardid + ", mail=" + mail + ", userAddress=" + userAddress 9 | + "]"; 10 | } 11 | 12 | private int num; 13 | private String name; 14 | //private Integer orderNum; 15 | private String tel; 16 | private String key; 17 | private String confkey; 18 | private String cardid; 19 | private String mail; 20 | private String userAddress; 21 | 22 | 23 | 24 | public User() { 25 | super(); 26 | } 27 | 28 | 29 | 30 | 31 | 32 | public User(int num, String name, String tel, String key, String confkey, 33 | String cardid, String mail, String userAddress) { 34 | super(); 35 | this.num = num; 36 | this.name = name; 37 | this.tel = tel; 38 | this.key = key; 39 | this.confkey = confkey; 40 | this.cardid = cardid; 41 | this.mail = mail; 42 | this.userAddress = userAddress; 43 | } 44 | 45 | 46 | 47 | 48 | 49 | public String getConfkey() { 50 | return confkey; 51 | } 52 | 53 | public void setConfkey(String confkey) { 54 | this.confkey = confkey; 55 | } 56 | 57 | public String getCardid() { 58 | return cardid; 59 | } 60 | 61 | public void setCardid(String cardid) { 62 | this.cardid = cardid; 63 | } 64 | 65 | public int getNum() { 66 | return num; 67 | } 68 | 69 | 70 | 71 | public void setNum(int num) { 72 | this.num = num; 73 | } 74 | 75 | 76 | 77 | public String getName() { 78 | return name; 79 | } 80 | 81 | 82 | 83 | public void setName(String name) { 84 | this.name = name; 85 | } 86 | 87 | 88 | 89 | public String getTel() { 90 | return tel; 91 | } 92 | 93 | 94 | 95 | public void setTel(String tel) { 96 | this.tel = tel; 97 | } 98 | 99 | 100 | 101 | public String getKey() { 102 | return key; 103 | } 104 | 105 | 106 | 107 | public void setKey(String key) { 108 | this.key = key; 109 | } 110 | 111 | 112 | public String getCardID() { 113 | return cardid; 114 | } 115 | public void setCardID(String cardid) { 116 | this.cardid = cardid; 117 | } 118 | 119 | public String getMail() { 120 | return mail; 121 | } 122 | 123 | public void setMail(String mail) { 124 | this.mail = mail; 125 | } 126 | 127 | 128 | 129 | public String getUserAddress() { 130 | return userAddress; 131 | } 132 | 133 | 134 | 135 | public void setUserAddress(String userAddress) { 136 | this.userAddress = userAddress; 137 | } 138 | 139 | 140 | 141 | } 142 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/mapper/CityMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 35 | 36 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/mapper/MissCityMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/mapper/OrderMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 33 | 34 | 39 | 44 | 45 | 50 | 51 | INSERT INTO 52 | orderinfo(User_Num,Order_Receiver,Rec_Tel,Order_City,Order_Time,Order_Des) 53 | Values 54 | (#{userNum},#{orderReceiver},#{rectel},#{orderCity},#{orderTime},#{orderDes}) 55 | 56 | 57 | 58 | 65 | 66 | UPDATE 67 | orderinfo 68 | SET 69 | Order_UserCom = #{orderUserCom} 70 | WHERE 71 | orderinfo.Order_Num = #{orderNum} 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/entity/mapper/UserMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | insert into userinfo( 31 | User_Name, 32 | User_Tel, 33 | User_Key, 34 | User_ConfKey, 35 | User_CardID, 36 | User_Mail, 37 | User_Address) 38 | values(#{name},#{tel},#{key},#{confkey},#{cardid},#{mail},#{userAddress}) 39 | 40 | 41 | 49 | 50 | 58 | 59 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/service/OrderService.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.service; 2 | 3 | import java.util.List; 4 | 5 | import com.lianbang.dao.OrderDao; 6 | import com.lianbang.entity.City; 7 | import com.lianbang.entity.MissCity; 8 | import com.lianbang.entity.Order; 9 | import com.lianbang.entity.User; 10 | 11 | public class OrderService { 12 | private OrderDao orderdao=new OrderDao(); 13 | public List getOrderSendList(int id) { 14 | System.out.println(id); 15 | List orderlist=orderdao.getOrderSendList(id); 16 | return orderlist; 17 | } 18 | 19 | public Order getOrderSend(int id) { 20 | // TODO Auto-generated method stub 21 | System.out.println(id+"bbb"); 22 | Order order = orderdao.getOrderSend(id); 23 | return order; 24 | } 25 | 26 | 27 | public List getOrderReceiveList(int id) { 28 | System.out.println(id); 29 | List orderlist=orderdao.getOrderReceiveList(id); 30 | return orderlist; 31 | } 32 | 33 | 34 | public List getOrderAccomplishList(int id) { 35 | System.out.println(id); 36 | List orderlist=orderdao.getOrderAccomplishList(id); 37 | return orderlist; 38 | } 39 | 40 | 41 | public User getUserList(int id) { 42 | User user = orderdao.getUserList(id); 43 | return user; 44 | } 45 | 46 | 47 | public void add(Order order) { 48 | // TODO Auto-generated method stub 49 | orderdao.add(order); 50 | 51 | } 52 | public Order findMissNum(int number1){ 53 | Order order1 = orderdao.findMissNum(number1); 54 | return order1; 55 | } 56 | public MissCity findCityNum(int number2){ 57 | MissCity missCity = orderdao.findCityNum(number2); 58 | 59 | return missCity; 60 | } 61 | 62 | public List findCityName(City city) { 63 | List listCity = orderdao.findCityName(city); 64 | 65 | return listCity; 66 | // TODO Auto-generated method stub 67 | 68 | } 69 | 70 | public int findCityLine(int f) { 71 | // TODO Auto-generated method stub 72 | int a = orderdao.findCityLine(f); 73 | return a; 74 | } 75 | 76 | public void updatePing(Order order1) { 77 | // TODO Auto-generated method stub 78 | orderdao.updatePing(order1); 79 | 80 | } 81 | 82 | 83 | } 84 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chissycode/SpringMVC-LianbangTrans/a53d5053e61b6b48319b860c91e1ae6fda7798c0/lianbangtrans/src/com/lianbang/service/UserService.java -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/web/LoginController.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.web; 2 | 3 | 4 | import javax.servlet.http.HttpSession; 5 | 6 | import org.springframework.stereotype.Controller; 7 | import org.springframework.ui.Model; 8 | import org.springframework.ui.ModelMap; 9 | import org.springframework.web.bind.annotation.ModelAttribute; 10 | import org.springframework.web.bind.annotation.RequestMapping; 11 | import org.springframework.web.bind.annotation.SessionAttributes; 12 | 13 | import com.lianbang.entity.User; 14 | import com.lianbang.service.UserService; 15 | 16 | @Controller 17 | @RequestMapping("/user") 18 | 19 | public class LoginController { 20 | private UserService userService=new UserService(); 21 | 22 | @RequestMapping("/registerController") 23 | public String register(User user) 24 | { 25 | System.out.println(user.getName()); 26 | userService.save(user); 27 | return "countdown"; 28 | } 29 | 30 | @RequestMapping("/loginController") 31 | public String login(User user,HttpSession session) 32 | { 33 | 34 | if(userService.check(user)){ 35 | System.out.println("checktrue"); 36 | int id=userService.getid(user); 37 | session.setAttribute("userid", id); 38 | 39 | return "c_mainpage"; 40 | }; 41 | if(!userService.check(user)){ 42 | return "countdown2"; 43 | } 44 | else return "countdown2"; 45 | } 46 | 47 | 48 | } 49 | -------------------------------------------------------------------------------- /lianbangtrans/src/com/lianbang/web/OrderController.java: -------------------------------------------------------------------------------- 1 | package com.lianbang.web; 2 | 3 | import java.text.SimpleDateFormat; 4 | import java.util.Date; 5 | import java.util.List; 6 | 7 | import javax.servlet.http.HttpServletRequest; 8 | import javax.servlet.http.HttpSession; 9 | 10 | import org.springframework.beans.propertyeditors.CustomDateEditor; 11 | import org.springframework.stereotype.Controller; 12 | import org.springframework.ui.Model; 13 | import org.springframework.ui.ModelMap; 14 | import org.springframework.web.bind.ServletRequestDataBinder; 15 | import org.springframework.web.bind.annotation.InitBinder; 16 | import org.springframework.web.bind.annotation.ModelAttribute; 17 | import org.springframework.web.bind.annotation.RequestMapping; 18 | import org.springframework.web.bind.annotation.ResponseBody; 19 | import org.springframework.web.bind.annotation.SessionAttributes; 20 | 21 | import com.lianbang.entity.City; 22 | import com.lianbang.entity.MissCity; 23 | import com.lianbang.entity.Order; 24 | import com.lianbang.entity.User; 25 | import com.lianbang.service.OrderService; 26 | import com.lianbang.service.UserService; 27 | import com.sun.org.apache.bcel.internal.generic.NEW; 28 | 29 | @Controller 30 | @RequestMapping("/ordermanage") 31 | public class OrderController { 32 | 33 | @InitBinder 34 | public void initBinder(HttpServletRequest request, 35 | ServletRequestDataBinder binder) throws Exception { 36 | binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"),true)); 37 | } 38 | 39 | private OrderService orderService=new OrderService(); 40 | 41 | @RequestMapping("/main") 42 | public String main() 43 | { 44 | return "c_mainpage"; 45 | } 46 | 47 | @RequestMapping("/findUserInfo") 48 | public String findUserInfo(ModelMap map,HttpSession session) 49 | { 50 | int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 51 | System.out.println(id); 52 | User user1 =orderService.getUserList(id); 53 | session.setAttribute("user",user1); 54 | return "c_order"; 55 | } 56 | 57 | @RequestMapping("/send") 58 | public String send(User user,ModelMap map,HttpSession session) 59 | { 60 | int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 61 | System.out.println(id); 62 | List orderlist=orderService.getOrderSendList(id); 63 | 64 | map.put("orderlist", orderlist); 65 | return "c_order_manage_send"; 66 | } 67 | 68 | @RequestMapping("/receive") 69 | public String receive(User user,ModelMap map ,HttpSession session) 70 | { 71 | int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 72 | List orderlist=orderService.getOrderReceiveList(id); 73 | map.put("orderlist", orderlist); 74 | return "c_order_manage_receive"; 75 | } 76 | 77 | @RequestMapping("/accomplish") 78 | public String accomplish(User user,ModelMap map,HttpSession session ) 79 | { 80 | int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 81 | List orderlist=orderService.getOrderAccomplishList(id); 82 | map.put("orderlist", orderlist); 83 | return "c_order_manage_accomplished"; 84 | } 85 | 86 | @RequestMapping("/addOrder") 87 | public String addOrder(Order order,HttpSession session){ 88 | System.out.println("a a a "+ order.getOrderDes()); 89 | 90 | int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 91 | System.out.println(id); 92 | order.setUserNum(id); 93 | System.out.println("a a a "+ order.getUserNum()); 94 | // SimpleDateFormat ot=new SimpleDateFormat("yyyy-MM-dd"); 95 | order.setOrderTime(new Date()); 96 | orderService.add(order); 97 | /* System.out.println(order.toString());*/ 98 | session.setAttribute("order",order); 99 | return "c_order_confirm"; 100 | 101 | } 102 | @RequestMapping("/getDetail") 103 | public String getDetail(Order order,HttpSession session){ 104 | 105 | int a = order.getOrderNum(); 106 | 107 | int number1 = order.getMissNum(); 108 | System.out.println("a a aaaa "+a); 109 | System.out.println("a a aBBB "+number1); 110 | Order order1 = orderService.findMissNum(a); 111 | System.out.println("a a aBBB "+number1); 112 | session.setAttribute("order11", order1); 113 | System.out.println("a a aBCC "+number1); 114 | 115 | /*int number = order1.getMissNum(); 116 | System.out.println("a a a "+number);*/ 117 | /* missCity.setMissNum(number1); 118 | 119 | int number2 = missCity.getMissNum(); 120 | System.out.println("citymissnum "+number2);*/ 121 | MissCity missCity = orderService.findCityNum(number1); 122 | System.out.println("a a aBDC "+number1); 123 | int d = missCity.getMissNum(); 124 | int f = missCity.getCityNum(); 125 | City city =new City(); 126 | city.setCityNum(f); 127 | System.out.println("cityNum:"+f); 128 | int e = orderService.findCityLine(f); 129 | city.setCityLine(e); 130 | System.out.println("CityLine:"+e); 131 | List list = orderService.findCityName(city); 132 | System.out.println("list"+list); 133 | System.out.println("daan" + d +" nene"+f); 134 | session.setAttribute("CityList", list); 135 | 136 | session.setAttribute("missCity1",missCity); 137 | return "c_order_manage_detail"; 138 | 139 | } 140 | @RequestMapping("/updatePing") 141 | @ResponseBody 142 | public String updatePing(int score, int orderNum, Order order,ModelMap map,HttpSession session ) 143 | { 144 | System.out.println(score); 145 | System.out.println(orderNum); 146 | /*int id=Integer.parseInt(String.valueOf(session.getAttribute("userid"))); 147 | List orderlist=orderService.getOrderAccomplishList(id); 148 | map.put("orderlist", orderlist);*/ 149 | 150 | System.out.println(session.getAttribute("order11")); 151 | Order order1 = (Order) session.getAttribute("order11"); 152 | order1.setOrderUserCom(score); 153 | orderService.updatePing(order1); 154 | 155 | System.out.println("aaa"+order1.getOrderUserCom()); 156 | System.out.println(order1); 157 | return "c_order_manage_accomplished"; 158 | } 159 | 160 | } 161 | -------------------------------------------------------------------------------- /lianbangtrans/src/spring-mvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /lianbangtrans/src/sqlMapConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | --------------------------------------------------------------------------------