📄 viewadvicedlist.jsp
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>查看采购计划信息</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<table border="1">
<caption align="top">采购建议详情列表</caption>
<tr bgcolor="lightblue">
<th align="center">申请单编号</th>
<th align="center">申请提出者</th>
<th align="center">申请时间</th>
<th align="center">申请建议</th>
<th align="center">制定采购计划</th>
</tr>
<logic:equal value="NO" name="isHaveadvice" scope="session">
<tr>
<td>暂时没有记录</td>
</tr>
</logic:equal>
<logic:notEqual value="NO" name="isHaveadvice" scope="session">
<logic:iterate id="STOCKADVICE_LIST" name="isHaveadvice" scope="session">
<tr bgcolor="lightyellow">
<td align="center">
<bean:write name="STOCKADVICE_LIST" property="id"/>
</td>
<td align="center">
<bean:write name="STOCKADVICE_LIST" property="storerName"/>
</td>
<td align="center">
<bean:write name="STOCKADVICE_LIST" property="applyTime"/>
</td>
<td align="center">
<bean:write name="STOCKADVICE_LIST" property="storeIdea"/>
</td>
<td align="center">
<html:link action="/viewAdviceList.do" paramId="stocksingleone" paramName="STOCKADVICE_LIST" paramProperty="id">查看详情</html:link>
</td>
</tr>
</logic:iterate>
</logic:notEqual>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -