-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.xhtml
More file actions
56 lines (48 loc) · 2.62 KB
/
donate.xhtml
File metadata and controls
56 lines (48 loc) · 2.62 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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:c="http://xmlns.jcp.org/jsp/jstl/core">
<h:head>
<title>Facelet Title</title>
<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>
<div class="center-block liu5" style="width: 84%; margin-top: 50px; margin-left: 200px;margin-bottom: 100px;">
<table class="table">
<tr>
<th><h3>捐赠平台</h3></th>
</tr>
<c:forEach items="#{printsupEduBean.listgoodsdemand}" var="u">
<tr>
<td>
<div>
<div style="margin-right: 990px;margin-top: 16px; margin-bottom: 28px;">
<h:commandLink> <img width="300px" src="resources/images/m01.jpg"/></h:commandLink>
</div>
<div style=" width: 730px;margin-top: -260px;height:246px; margin-left: 320px;" >
<h3>#{u.demandGoods}</h3>
<br/>
<p>#{u.demandContent.substring(0,3)}</p>
<h:commandLink value="点击阅读全文" action="#{printsupEduBean.changePage1(u)}"></h:commandLink>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>
</div>
</td>
</tr>
</c:forEach>
</table>
</div>
</h:form>
</ui:define>
</ui:decorate>
</h:body>
</html>