503d02f27425001d172f8a51a2e7ba8c

来自「实训时做的物流系统」· 代码 · 共 48 行

TXT
48
字号
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ taglib uri="http://displaytag.sf.net/el" prefix="display" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld"prefix="logic" %>
<html:xhtml/>
<html:html>
<head>
<link type="text/css" rel="stylesheet" href="css/screen.css"/>
<title>账单员界面</title>
</head>
<html:errors/>
<body bgcolor="#9999FF">
<h1 align="left" style="margin-left:50px;color:#ffffff">图书编目信息 </h1>
<html:form action="/bookSearchAction">
<table>
  <tr>
    <td>
        <select name="sort">
          <option value="isbn">ISBN</option>
          <option value="name">图书名称</option>
          <option value="author">作者</option>
          <option value="checkNm">验收批次</option>
        </select>
    </td>
    <td>
       <html:text property="value"></html:text>
    </td>
    <td>
        <html:submit value="查找"></html:submit>
    </td>
  </tr>
</table>
</html:form>
<form>
<display:table name="list" requestURI="" pagesize="12" class="test nocol1">
       <display:column property="isbn" title="ISBN" href="/lib/bookViewAction.do" paramId="isbn" paramProperty="isbn" paramName="AA" sortable="true"></display:column>
       <display:column property="bookname" title="图书名称" sortable="true"></display:column>
       <display:column property="author" title="作者" sortable="true"></display:column>
       <display:column property="bookconcern" title="出版社" sortable="true"></display:column>
       <display:column property="checknum" title="验收批次" sortable="true"></display:column>
       <display:column property="intime" title="入库时间" sortable="true"></display:column>
       <display:footer></display:footer>
</display:table>
</form>
</body>
</html:html>

⌨️ 快捷键说明

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