You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Modules/ModuleManagement.aspx

100 lines
4.3 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ModuleManagement.aspx.cs" Inherits="DSWeb.Modules.ModuleManagement" %>
<!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 runat="server">
<title>模块管理</title>
<style type="text/css">
.select{
border:1px solid #C1BBAB;
}
.line
{
border-top:1px dashed #cccccc;
height: 1px;
overflow:hidden;
padding-top:5px;
padding-bottom:5px;
}
.btn
{
width:100px;
BORDER-RIGHT: #2C59AA 1px solid;
PADDING-RIGHT: 2px; BORDER-TOP: #2C59AA 1px solid;
PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#C3DAF5);
BORDER-LEFT: #2C59AA 1px solid; CURSOR: hand; COLOR: black; PADDING-TOP: 2px;
BORDER-BOTTOM: #2C59AA 1px solid
}
.txtTab{border:1px solid #A0A0A4; border-color:#6699CC;}
</style>
<link rel="stylesheet" type="text/css" href="../theme/dhtmlxtree.css" />
<link rel="stylesheet" type="text/css" href="../theme/progressbar.css" />
<script type="text/javascript" src="../js/dhtmlxcommon.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree_start.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree_json.js"></script>
<script type="text/javascript" src="../js/ModuleManagement.js"></script>
</head>
<body onload="createTree();focusOnTree()" style="background-color:#ecf2ff;">
<table style="width:420px;">
<tr>
<td>
<div style="width:100%;height:16px;">
<div style="font-size:12px;">所有模块信息</div>
</div>
<div class="line" style="width:100%;text-align:center;"></div>
<div style="width:100%;height:16px;">
<div style="width:100px;float:left;">
<input type="text" id="txt_mod" style="width:100%;" class="txtTab"/>
</div>
<div style="width:70px;float:left;padding-left:7px;">
<input type="button" id="btn_modsearch" style="width:100%;" value="查询" class="btn" onclick="searchModule('txt_mod')"/>
</div>
</div>
<div style="width:200px; height:400px; overflow:auto;border:1px solid #C1BBAB; background-color:#ffffff; margin-top:10px;">
<div id="treeBox" style="width:200px;height:400px;"></div>
</div>
</td>
<td>
<table style="height:400px; width:20px;">
<tr>
<td height="30px"></td>
</tr>
<tr>
<td height="20px"><div><img src="../images/icons/edit_right.gif" onmouseover="mouseMoveImg(this,2)" onmouseout="mouseMoveImg(this,2)" title="指定" onclick="assignTo()"/></div></td>
</tr>
<tr>
<td height="10px"></td>
</tr>
<tr>
<td height="20px"><div><img src="../images/icons/edit_left.gif" onmouseover="mouseMoveImg(this,1)" onmouseout="mouseMoveImg(this,1)" title="移除" onclick="removeAssign()"/></div></td>
</tr>
<tr>
<td height="160px"></td>
</tr>
</table>
</td>
<td>
<div style="width:100%;height:16px;">
<div style="font-size:12px;">指定父模块</div>
</div>
<div class="line" style="width:100%;text-align:center;"></div>
<div style="width:200px; height:400px;margin-top:25px;">
<select runat="server" id="sel_module" multiple style="width:200px; height:400px;" class="select"></select>
</div>
</td>
</tr>
</table>
<form id="form1" runat="server">
<div>
<input type="hidden" id="h_moduleid" runat="server" />
</div>
</form>
<div id="progressBar" class="progressBar">数据正在加载中……</div>
</body>
</html>