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

📄 moduledetail.jsp

📁 这是一个用java三层框架做的ISS学员管理系统
💻 JSP
字号:
<%--
  Created by IntelliJ IDEA.
  User: Songzou
  Date: 2007-04-13
  Time: 10:50:24
--%>
<%@ 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>
<div align="center">
<table class="inputTable" width="700">
  <tr class="inputTableHead"><td colspan="4"><b>模块信息查看</b></td></tr>
  <tr>
    <td width="80">模块名称</td>
    <td width="270"><c:out value="${menuinfo.menuname}"/></td>
    <td width="80">上级模块</td>
    <td width="270">
<c:if test="${menuinfo.menuinfo.menuid=='0'}"><c:out value="${systemName}"/></c:if>
<c:if test="${menuinfo.menuinfo.menuid!='0'}"><c:out value="${menuinfo.menuinfo.menuname}"/></c:if></td>
  </tr>
  <tr>
    <td>模块类型</td>
    <td height="22">
      <c:choose>
      <c:when test="${menuinfo.menutype=='1'}">有下级模块</c:when>
      <c:when test="${menuinfo.menutype=='2'}">执行模块</c:when>
      <c:when test="${menuinfo.menutype=='3'}">分隔线</c:when>
      </c:choose>
    </td>
    <td>备注</td>
    <td><c:out value="${menuinfo.menudescribe}"/></td>
  </tr>
  <c:if test="${menuinfo.menutype=='2'}">
  <tr>
    <td>执行脚本</td>
    <td colspan="3"><c:out value="${menuinfo.menuurl}"/></td>
  </tr>
  </c:if>
</table>
<c:if test="${menuinfo.menutype=='2'}">
<br>
<table  class="table" width="700">
  <thead class="thead">
  <tr>
    <td width="300">请求动作</td>
    <td width="400">动作说明</td>
  </tr>
  </thead>
  <tbody class="tbody" fixRow="10">
  <c:forEach var="action" items="${menuinfo.actions}">
  <tr >
    <td><c:out value="${action.actionname}"/></td>
    <td><c:out value="${action.actioncontext}"/></td>
  </tr>
  </c:forEach>
  </tbody>
</table>
</c:if>
<br>
<input type="button" value="返回" style="width:70" class="btn" imageType="return" onclick="link('moduleAction.do?method=moduleList&fatherid=${menuinfo.menuinfo.menuid}')">
&nbsp;&nbsp;
<c:if test="${menuinfo.havesubmenu=='0'&&menuinfo.menuused=='0'}">  
<input type="button" value="删除" style="width:70" class="btn" imageType="cancel" onclick="delModule('moduleAction.do?method=moduleDelete&menuid=${menuinfo.menuid}&fatherid=${menuinfo.menuinfo.menuid}&sessionID=${sessionID}')">
&nbsp;&nbsp;
</c:if>
<input type="button" value="修改" style="width:70" class="btn" onclick="link('moduleAction.do?method=moduleMod&menuid=${menuinfo.menuid}');">
</div>
</body>
</html>

⌨️ 快捷键说明

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