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

📄 moduleorder.jsp

📁 这是一个用java三层框架做的ISS学员管理系统
💻 JSP
字号:
<%--
  Created by IntelliJ IDEA.
  User: JM
  Date: 2005-11-28
  Time: 11:59:15
--%>
<%@ page language="java" pageEncoding="GBK"%>
<%@ include file="/WEB-INF/jsp/inc/taglib.jsp"%>
<%@ include file="/WEB-INF/jsp/inc/css.jsp"%>
<%@ include file="/WEB-INF/jsp/inc/js.jsp"%>
<script type="text/javascript" src="js/frame/module.js"></script>
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<title></title>
<base target="_self"/>
</head>
<body  onselectstart="cancelSelect()" onmousedown="orderDown()" onmousemove="orderMove()" onmouseup="orderUp()">
<div align="center" id="orderDiv">
<form action="moduleAction.do?method=moduleOrderSave" name="moduleOrder" method="post">
<input type="hidden" value="${fatherid}" name="fatherid">
<table class="inputTable" width="700" id="orderTable">
<tr class="inputTableHead">
  <td style="display:none">模块顺序</td>
  <td style="display:none">模块ID</td>
  <td>模块名称</td>
  <td>上级模块名称</td>
  <td>类型</td>
  <td>顺序</td>
</tr>
<c:forEach var="module" items="${moduleList}" varStatus="status">
<tr>
  <td style="display:none"><input type="hidden" name="menuorder" value="${status.index+1}"></td>
  <td style="display:none"><input type="hidden" name="menuid" value="${module.menuid}"></td>
  <td><c:out value="${module.menuname}"/></td>
  <td>
    <c:if test="${module.menuinfo.menuid=='0'}"><c:out value="${systemName}"/></c:if>
    <c:if test="${module.menuinfo.menuid!='0'}"><c:out value="${module.menuinfo.menuname}"/></c:if>
  </td>
  <td>
    <c:choose>
    <c:when test="${module.menutype=='1'}">有下级模块</c:when>
    <c:when test="${module.menutype=='2'}">可执行模块</c:when>
    <c:when test="${module.menutype=='3'}">分隔线</c:when>
    </c:choose>
  </td>
  <td><c:out value="${status.index+1}"/></td>
</tr>
</c:forEach>
</table><br>
<input type="button" value="返回" style="width:70" class="btn" onclick="link('moduleAction.do?method=moduleList&fatherid=${fatherid}')">
&nbsp;&nbsp;
<input type="button" value="保存" style="width:70" class="btn" onclick="postForm('moduleOrder')">

</form>

</div>
</body>
</html>

⌨️ 快捷键说明

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