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

📄 sys_module_order.jsp

📁 jsp CMS全站 无可奈何花落去 士大夫
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@ taglib uri="/cms4j" prefix="cms4j" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>CMS4J </title>
<link href="../skin/blue/css/oper_area.css" rel="stylesheet" type="text/css">
</head>

<script src="../../js/common.js"></script>
<script src="../../js/page_init.js"></script>

<script>
//页面初始化
function pageInit(){
	selectInit("MODULE_LIST","${param.module_id}");
}
</script>

<body  onLoad="pageInit()">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="title-bar"><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td width="26" class="title-bar-title-icon">&nbsp;</td>
        <td width="745" class="title-bar-text">模块排序</td>
      </tr>
    </table></td>
  </tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="oper-bar">
  <tr>
    <td>      <span class="oper-bar-text">请选择要排序的模块</span><span class="title_bar">    
      <select name="MODULE_LIST" class="form_select" id="MODULE_LIST"  onChange="dataFilter('module_id')">
        <option value="">所有一级模块</option>
<cms4j:module>
<option value="<%=module_info.getMODULE_ID()%>">└<%=module_info.getMODULE_NAME()%></option>
	<cms4j:module parent_module_id="<%=module_info.getMODULE_ID()%>">
	<option value="<%=module_info.getMODULE_ID()%>">&nbsp;&nbsp;└<%=module_info.getMODULE_NAME()%></option>
		<cms4j:module parent_module_id="<%=module_info.getMODULE_ID()%>">
		<option value="<%=module_info.getMODULE_ID()%>">&nbsp;&nbsp;&nbsp;&nbsp;└<%=module_info.getMODULE_NAME()%></option>
			<cms4j:module parent_module_id="<%=module_info.getMODULE_ID()%>">
			<option value="<%=module_info.getMODULE_ID()%>">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;└<%=module_info.getMODULE_NAME()%></option>
			</cms4j:module>
		</cms4j:module>
	</cms4j:module>
</cms4j:module>		
      </select>
    </span></td>
    <td>
      <input name="Submit" type="button" class="form-buttun" onClick="location.href='sys_module_list.jsp'" value="模块管理">
    </td>
  </tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="table-frame">
  <tr class="table_title">
    <td width="36%" class="table-titlebar">模块名称</td>
    <td width="25%" class="table-titlebar">模块别名</td>
    <td width="19%" class="table-titlebar">状态</td>
    <td width="20%" class="table-titlebar">操作</td>
  </tr>
<cms4j:module parent_module_id="${param.module_id}">   
    <tr class="table_border_cell_bg">
      <td class="table-cell"><b><%=module_info.getMODULE_NAME()%></b></td>
      <td align="center" class="table-cell"><%=module_info.getMODULE_ID()%></td>
      <td align="center" class="table-cell"><%=module_info.getSTATE_NAME()%></td>
      <td align="center" class="table-cell"><a href="../../do?action=setSysModuleOrder&id=<%=module_info.getMODULE_ID()%>&type=up">↑升</a> <a href="../../do?action=setSysModuleOrder&id=<%=module_info.getMODULE_ID()%>&type=down">↓降</a></td>
    </tr>
</cms4j:module>
</table>
</body>
</html>

⌨️ 快捷键说明

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