-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
122b703
commit befe2cf
Showing
8 changed files
with
124 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{} | ||
[[{"location":"C:\\Users\\12149\\.m2\\repository\\javax\\servlet\\javax.servlet-api\\3.1.0\\javax.servlet-api-3.1.0.jar","type":"JAR","hints":{}},"javax.servlet:javax.servlet-api:3.1.0"],[{"location":"E:\\DingcanXitong\\lsp-Service","type":"PROJECT","hints":{"PROJECT_NAME":"lsp-Service"}},"lspa.top:lsp-Service:0.0.1"],[{"location":"E:\\D\\Java\\jdk1.8.0_51","type":"JRE","hints":{}},"jre:jre:1.8.0"],[{"location":"C:\\Users\\12149\\.m2\\repository\\org\\springframework\\spring-webmvc\\4.3.2.RELEASE\\spring-webmvc-4.3.2.RELEASE.jar","type":"JAR","hints":{}},"ABSENT"],[{"location":"E:\\DingcanXitong\\lsp-Pojo","type":"PROJECT","hints":{"PROJECT_NAME":"lsp-Pojo"}},"lspa.top:lsp-Pojo:0.0.1"]] |
Binary file modified
BIN
+0 Bytes
(100%)
.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/segments.gen
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,50 @@ | ||
<%@ page language="java" contentType="text/html; charset=UTF-8" | ||
pageEncoding="UTF-8"%> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<title>评论</title> | ||
</head> | ||
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> | ||
<%@include file="../header.jsp" %> | ||
<script type="text/javascript"> | ||
$(function(){ | ||
$("#commit").click(function(){ | ||
$("form").submit(); | ||
}) | ||
}) | ||
</script> | ||
<style type="text/css"> | ||
input[type="file"]{ | ||
height:100px; | ||
width:100%; | ||
} | ||
input[type="text"]{ | ||
word-break: break-all; | ||
} | ||
</style> | ||
<body> | ||
|
||
|
||
<div class="header"> | ||
<a href="<%=contxtPath %>/" class="home"> | ||
<span class="header-icon header-icon-home"></span> | ||
<span class="header-name">主页</span> | ||
</a> | ||
<div class="title" id="titleString"></div> | ||
<a href="javascript:history.go(-1);" class="back"> | ||
<span class="header-icon header-icon-return"></span> | ||
<span class="header-name">返回</span> | ||
</a> | ||
</div> | ||
<div class="container width80 pt20"> | ||
<form action="<%=contxtPath%>/user/comment" method="post"> | ||
<input type="hidden" name="hotelId" value="${hotelId }"/> | ||
<input type="hidden" name="roomId" value="${roomId }"/> | ||
<fmt:formatDate value="${checkInDate }" var="inDate" pattern="yyyy-MM-dd"/> | ||
<fmt:formatDate value="${checkOutDate }" var="outDate" pattern="yyyy-MM-dd"/> | ||
<input type="hidden" name="checkInDate" value="${inDate }"/> | ||
<input type="hidden" name="checkOutDate" value="${outDate }"/> | ||
<label>评论:</label><textarea style="width:98%;height:100px" name="comment" id="comment"></textarea> | ||
<div class="control-group"> | ||
<button onClick="commit" id="commit" class="btn-large green button width100" style="margin-top:30px" >评论</button> | ||
</div> | ||
</form> | ||
<%@include file="../footer.jsp" %> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters