-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostdetails1.xhtml
More file actions
39 lines (36 loc) · 1.9 KB
/
postdetails1.xhtml
File metadata and controls
39 lines (36 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
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
36
37
38
<?xml version='1.0' encoding='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"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
xmlns:f="http://xmlns.jcp.org/jsf/core"
>
<h:head>
<h:outputStylesheet library="css" name="style.css"/>
<h:outputStylesheet library="css" name="bootstrap.min.css" />
<h:outputScript library="js" name="jquery-3.2.1.min.js" />
<h:outputScript library="js" name="bootstrap.min.js" />
<h:outputScript library="js" name="script.js"/>
</h:head>
<h:body>
<ui:decorate template="template.xhtml">
<ui:define name="centerContent">
<h:form class="form-inline container">
<div class="liu3" style="width: 80%; " >
<h3>账号:</h3>#{lookHistoryBean.gd.id.userId} <br/>
<h3>地址:</h3>#{lookHistoryBean.gd.demandAddress} <br/>
<h3>城市: </h3>#{lookHistoryBean.gd.demandCity} <br/>
<h3>内容: </h3>#{lookHistoryBean.gd.demandContent} <br/>
<h3> 联系方式: </h3>#{lookHistoryBean.gd.demandTel} <br/>
<h3> 捐赠人数量: </h3>#{lookHistoryBean.calculateQuantity1(lookHistoryBean.gd.id.demandTime,lookHistoryBean.gd.id.userId)}
..............
...............
<br/>
<a style="margin-left:740px;font-size: x-large" href="lookpostperson.xhtml">查看捐赠人</a>
</div>
</h:form>
</ui:define>
</ui:decorate>
</h:body>
</html>