Commit 78f04fec by 周添尉

添加了一个pad测试程序的页面

parent 631ae4dc
...@@ -137,12 +137,20 @@ public class MobileController { ...@@ -137,12 +137,20 @@ public class MobileController {
public String solution() { public String solution() {
return "mobile/solution"; return "mobile/solution";
} }
@RequestMapping("/executive") @RequestMapping("/executive")
public String executive() { public String executive() {
return "mobile/executive"; return "mobile/executive";
} }
@RequestMapping("/downFile") @RequestMapping("/downFile")
public String downFile() { public String downFile() {
return "mobile/downFile"; return "mobile/downFile";
} }
@RequestMapping("/padTest")
public String padTest() {
return "mobile/padTest";
}
} }
\ No newline at end of file
...@@ -7,9 +7,9 @@ spring: ...@@ -7,9 +7,9 @@ spring:
suffix: .jsp suffix: .jsp
jdbc: jdbc:
driverClassName: com.mysql.jdbc.Driver driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://122.112.244.210:3306/company_web?useUnicode=true&characterEncoding=utf-8 url: jdbc:mysql://192.168.1.249:3306/company_web?useUnicode=true&characterEncoding=utf-8
username: root username: company_web
password: jf2016 password: company_web
mybatis: mybatis:
typeAliasesPackage: com.jfbrother.model typeAliasesPackage: com.jfbrother.model
mapperLocations: classpath:mapper/*.xml mapperLocations: classpath:mapper/*.xml
......
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PAD的测试程序</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="css/downFile.css" />
<%@ include file="common.jsp" %>
<script src="js/jquery.js"></script>
</head>
<body>
<%@ include file="navigation.jsp" %>
<div class="layout_banner_image">
<div style="position:absolute;z-index:-1;top:0;height:100%;width:100%"><img src="images/downFile_minImage.jpg"/></div>
</div>
<div class="downFile_header">PAD的测试程序</div>
<div class="downFile_content">
<div class="downFile_content_img"><img src="images/downFile_pdf.png" /></div>
<div class="downFile_content_text1"><a href="file/杰夫Demo.apk">杰夫Demo.apk</a></div>
<div class="downFile_content_text2">发表时间:2017-11-20</div>
<div class="downFile_content_text3">
<div>大小:2025kb</div>
</div>
</div>
<%@ include file="footer.jsp" %>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment