⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 managerideasdetails.jsp

📁 一个汽车售后服务站的典型的进销管理系统,B/S模式的
💻 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>showNewideasList.jsp</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">
	-->
	<style type="text/css">
	.tablestyle {
	font-family: "宋体";
	font-style: normal;
	line-height: normal;
	background-color: #0099FF;
	border: thin solid #FFFF33;
	}
	</style>
  </head>
  
  <body>
   <table width="750" height="150" cellpadding="1" bordercolor="#DCE7E4" border="1" cellspacing="0">
  <tr>
    <th><span class="STYLE4">采购编号</span></th>
    <th><span class="STYLE4">最后修改时间</span></th>
    <th><span class="STYLE4">经理提出意见</span></th>
    <th><span class="STYLE4">修改计划</span></th>
  </tr>
  <logic:equal value="nothing" name="noNew_idealist" scope="request">
  	<tr align="center">
  		<td colspan="4">没有记录!!!</td>
  	</tr>
  </logic:equal>
<logic:empty name="noNew_idealist" scope="request">
  <logic:iterate id="storeNew_idealist" name="storeNew_idealist" scope="session">
  <tr>
    <td>
    	<span class="STYLE4">
    	<bean:write name="storeNew_idealist" property="id"/>
    	</span>
    </td>
    <td>
    	<span class="STYLE4">
    	<bean:write name="storeNew_idealist" property="lastTime"/>
    	</span>
    </td>
    <td>
    	<span class="STYLE4">
    	<bean:write name="storeNew_idealist" property="managerIdea"/>
    	</span>
    </td>
    <td >
    	<span class="STYLE4">
    	<html:link action="/preparedUpdateAdvice.do" paramId="stockID" paramName="storeNew_idealist" paramProperty="id">修改计划</html:link>
   		<span class="STYLE4">
    </td>
  </tr>
  </logic:iterate>
 </logic:empty>
</table>
<br>
<table border="0" width="780" class="pageInfo">
			<tr>
				<td width="250">
					<bean:write name="pager" property="totalRows" scope="session" />
					<span class="pageInfo">条记录&nbsp;</span> 第
					<bean:write name="pager" property="currentPage" scope="session" />
					/
					<bean:write name="pager" property="totalPages" scope="session" />
				</td>
				<td align="right" width="60">
					<html:link page="/viewManagerIdeas.do?action=first">首页</html:link>
				</td>
				<td align="center" width="4">
					|
				</td>
				<td align="right" width="60">
					<logic:equal name="pager" property="hasPrevious" value="true"
						scope="session">
						<html:link page="/viewManagerIdeas.do?action=previous">上一页</html:link>
					</logic:equal>
					<logic:equal name="pager" property="hasPrevious" value="false"
						scope="session">
						<span class="invalidLink">上一页</span>
					</logic:equal>
				</td>
				<td align="center" width="4">
					|
				</td>
				<td align="left" width="60">
					<logic:equal name="pager" property="hasNext" value="true"
						scope="session">
						<html:link page="/viewManagerIdeas.do?action=next">下一页</html:link>
					</logic:equal>
					<logic:equal name="pager" property="hasNext" value="false"
						scope="session">
						<span class="invalidLink">下一页</span>
					</logic:equal>
				</td>
				<td align="center" width="4">
					|
				</td>
				<td width="60">
					<html:link page="/viewManagerIdeas.do?action=last">末页</html:link>
				</td>

				<%--<td width="160" align="rigth">

					 跳转相应页面,参见下文页面跳转部分 
					<html:form action="/viewPage.do">
          跳转到
          <html:text property="targetPage" size="3" maxlength="3" />
						<html:submit value="GO" />
					</html:form>
				</td>
				--%><td>
				</td>
			</tr>
		</table>
  </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -