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

📄 export.jsp

📁 仓库管理系统,适合各种行业的仓库管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css" />
</head>
<script language="javascript" type="text/javascript" 
src="<%=request.getContextPath()%>/js/birthday.js"></script>
<body>
<form id="form1" name="form1" method="post" action="refundexport.do">
  <table width="846" border="0" cellspacing="1">
    <tr>
      <td colspan="8">                 <span class="title1">   报销信息导出</span></td>
    </tr>
    <tr>
      <td height="31" colspan="8"><span class="title2">起始时间</span>:
        <input name="starttime" type="text" class="inputsearch"  onfocus="show_cele_date(starttime,'','',starttime)" value="${starttime}"/>
        <label>
        
       <span class="title2">结束时间</span>:<input name="overtime" type="text" class="inputsearch" 
	  onfocus="show_cele_date(overtime,'','',overtime)"  value="${overtime}"/>
      
       
      <input name="Submit" type="submit" class="button" value="导出" /> 
      </label></td>
    </tr>
    <tr>
      <td height="24" class="title2">采购项目</td>
      <td colspan="-3" class="title2">其他费用</td>
      <td class="title2">总费用</td>
      <td class="title2">费用操作方式</td>
      <td class="title2">报销时间</td>
      <td class="title2">申报人ID</td>
      <td><p class="title2">部门主管ID</p>      </td>
      <td class="title2">状态(已报销)</td>
    </tr>
	<c:forEach var="p" items="${list}">
    <tr>
      <td width="105" height="24">${p.projectID}&nbsp;</td>
      <td width="91" colspan="-3">&nbsp;${p.othfee}&nbsp;</td>
      <td width="91">${p.totalfee}</td>
      <td width="98">${p.operateID}</td>
      <td width="115">${p.refundtime}</td>
      <td width="109">${p.checkerID}&nbsp;</td>
      <td width="119">${p.directorID}&nbsp;</td>
      <td width="93">${p.stateID}&nbsp;</td>
    </tr>
    </c:forEach>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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