You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
2.8 KiB
122 lines
2.8 KiB
@{
|
|
ViewBag.Title = "Form";
|
|
Layout = "~/Views/Shared/_Form.cshtml";
|
|
}
|
|
<link href="~/Content/css/CommonReport/CommonReport.css" rel="stylesheet" />
|
|
<script src="~/Content/js/CommonReport/CommonReport.js"></script>
|
|
|
|
<style>
|
|
.ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td {
|
|
overflow:hidden;
|
|
}
|
|
.DropMenu {
|
|
position: absolute;
|
|
display: block;
|
|
top: 5px;
|
|
right: 10px;
|
|
opacity: 0.3;
|
|
z-index: 888;
|
|
}
|
|
.DropMenuHidden {
|
|
position: absolute;
|
|
display: none;
|
|
top: 5px;
|
|
right: 10px;
|
|
opacity: 0.2;
|
|
z-index: 1;
|
|
}
|
|
.HiddenDiv {
|
|
position: absolute;
|
|
display: block;
|
|
top: 5px;
|
|
right: 10px;
|
|
opacity: 0;
|
|
z-index:1;
|
|
}
|
|
.ShowDiv {
|
|
position: absolute;
|
|
display: block;
|
|
top: 5px;
|
|
right: 10px;
|
|
opacity: 1;
|
|
background: #1abc9c;
|
|
border: 2px solid #1abc9c;
|
|
text-align:center;
|
|
width:200px;
|
|
z-index: 888;
|
|
}
|
|
</style>
|
|
<script>
|
|
|
|
|
|
var _MenuID = "";//菜单ID
|
|
var _SourceID = "";//数据源ID
|
|
|
|
var GunDongRate = 10000;
|
|
var GunDongRow = 0;
|
|
var DataF = 15*60;
|
|
|
|
|
|
$(function () {
|
|
|
|
});
|
|
|
|
|
|
|
|
function btn_SetOtherOK()
|
|
{
|
|
// var dd = document.getElementById("SetDiv");
|
|
var rrate = $("#GRate").val();
|
|
var rhang = $("#GHang").val();
|
|
var DataFalsh = $("#DataFalsh").val();
|
|
GunDongRate = Number(rrate) * 1000;
|
|
GunDongRow = Number(rhang);
|
|
DataF = Number(DataFalsh);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
function btn_SetOtherNO()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<form id="form1">
|
|
|
|
|
|
<div >
|
|
<table class="form">
|
|
<tr>
|
|
<th class="formTitle">数据刷新(秒):</th>
|
|
<td>
|
|
<input class="form-control" name="DataFalsh" id="DataFalsh" style="width: 50px" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">滚动时间(秒):</th>
|
|
<td>
|
|
<input class="form-control" name="GRate" id="GRate" style="width: 50px" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">滚动行数:</th>
|
|
<td>
|
|
<input class="form-control" name="GHang" id="GHang" style="width: 50px" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<a authorize="yes" class="btn btn-primary dropdown-text" onclick="btn_SetOtherNO()"><i class="fa fa-close"></i></a>
|
|
|
|
<a authorize="yes" class="btn btn-primary dropdown-text" onclick="btn_SetOtherOK()"><i class="fa fa-check"></i></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|