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.

64 lines
3.3 KiB
Plaintext

10 months ago
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MessageSetting.aspx.cs" Inherits="DSWeb.Message.MessageSetting" %>
<!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">
html,body{font-size:12px;margin:0px;height:100%;}
.txtTab{border:1px solid #A0A0A4; border-color:#6699CC;}
.btn{
width:95px;
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
}
.line
{
border-top:1px dashed #cccccc;
height: 1px;
overflow:hidden;
padding-top:5px;
padding-bottom:5px;
}
</style>
<script src="../js/json2.js" type="text/javascript"></script>
<script src="../js/dhtmlxcommon.js" type="text/javascript"></script>
<script src="../js/messagesetting.js" type="text/javascript"></script>
</head>
<body>
<div style="width:100%;height:100%;" oncontextmenu="return true">
<div style="width:100%;height:22px;font-size:12px; padding-top:3px;">
<div style="margin-left:20px;font-size:13px; font-weight:600;">设置间隔时间</div>
</div>
<div class="line" style="width:90%;text-align:center;"></div>
<div style="width:100%;height:30px;font-size:12px;margin-left:20px;">
<div style="float:left;"><input type="checkbox" id="ck_interval" onclick="checkInterval('ck_interval')" runat="server"/></div>
<div style="float:left;height:16px;padding-top:4px;padding-left:5px;">消息提醒间隔时间</div>
<div style="float:left;padding-left:5px;"><input type="text" id="txt_interval" class="txtTab" style="width:60px;" runat="server"/></div>
<div style="float:left;height:16px;padding-top:4px;padding-left:5px;">分钟</div>
</div>
<div style="width:100%;height:17px;font-size:12px; padding-top:3px;">
<div style="margin-left:20px; font-size:13px; font-weight:600;">弹出消息类型</div>
</div>
<div class="line" style="width:90%;text-align:center;"></div>
<div style="width:100%;height:24px;font-size:12px; padding-top:3px;margin-left:20px;">
<div style="float:left;width:100px;"><input type="checkbox" id="ck_sys" runat="server"/>系统消息</div>
<div style="float:left;width:100px;"><input type="checkbox" id="ck_apply" runat="server"/>审核审核消息</div>
<div style="float:left;width:100px;"><input type="checkbox" id="ck_audit" runat="server"/>审核完成消息</div>
</div>
<div style="padding-top:10px; padding-left:20px;margin-left:20px;">
<input type="button" id="btn_enter" value="保存" class="btn" onclick="saveSetting()" runat="server"/>
</div>
</div>
<form id="form1" runat="server">
<input type="hidden" id="h_userid" runat="server"/>
<input type="hidden" id="h_interval" runat="server" />
</form>
</body>
</html>