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.
198 lines
6.6 KiB
198 lines
6.6 KiB
2 months ago
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ModelChangeRecord.aspx.cs" Inherits="MESWebSite.Manage.ModelChangeRecord" %>
|
||
|
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head runat="server">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<link href="/CSS/Basics.css" rel="stylesheet" />
|
||
|
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" />
|
||
|
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" />
|
||
|
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" />
|
||
|
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script>
|
||
|
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script>
|
||
|
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
|
||
|
<script src="/Scripts/MyJs.js" type="text/javascript"></script>
|
||
|
<link href="../Show/bootstrap/css/bootstrap.css" rel="stylesheet" />
|
||
|
<script src="../Show/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
|
||
|
<script src="../Show/echar/echarts.min.js" type="text/javascript"></script>
|
||
|
<style>
|
||
|
#w td {
|
||
|
padding: 5px 5px;
|
||
|
text-align: left;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
#w .title {
|
||
|
vertical-align: middle;
|
||
|
text-align: right;
|
||
|
width: 80px;
|
||
|
height: 40px;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
padding: 0px 5px;
|
||
|
font-size: small;
|
||
|
font-family: 微软雅黑;
|
||
|
margin: 0px;
|
||
|
}
|
||
|
|
||
|
.tree-folder-open, .tree-folder, .tree-file {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.datagrid {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.ttb {
|
||
|
width: 180px;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
#ReportTable_div {
|
||
|
margin: 0 auto;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
#ReportTable_div table {
|
||
|
border: 1px solid #000000;
|
||
|
border-collapse: collapse;
|
||
|
margin: 0 auto;
|
||
|
width: 80%;
|
||
|
}
|
||
|
|
||
|
#bar {
|
||
|
float: left;
|
||
|
margin-left: 0px;
|
||
|
margin-top: 20px;
|
||
|
width: 100%;
|
||
|
height: 500px;
|
||
|
}
|
||
|
</style>
|
||
|
<title>换膜记录单</title>
|
||
|
<script>
|
||
|
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form id="form1" runat="server">
|
||
|
<div class="top">
|
||
|
<table cellpadding="0" cellspacing="0" style="width: 100%">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td><span class="title">换膜记录单</span></td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td style="width: 415px;">模具名称
|
||
|
<select id="Model_s" class="easyui-combobox" style="width: 234px; height: 36px;"
|
||
|
data-options="valueField: 'valueField',textField: 'textField'">
|
||
|
</select>
|
||
|
|
||
|
时间:
|
||
|
<input id="StartTime" class="easyui-datebox" style="width: 130px;" /> 至
|
||
|
<input id="EndTime" class="easyui-datebox" style="width: 130px;" />
|
||
|
|
||
|
<a class="topsearchBtn">查询</a>
|
||
|
|
||
|
<a class="topexcelBtn" id="exportbtn">导出</a>
|
||
|
</td>
|
||
|
<td style="width: 75px;"></td>
|
||
|
<td style="width: 75px;"></td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
<div id="ReportTable_div">
|
||
|
</div>
|
||
|
<script>
|
||
|
|
||
|
$(function () {
|
||
|
|
||
|
reload_s();
|
||
|
|
||
|
//搜索按钮
|
||
|
$('.topsearchBtn').first().click(function () {
|
||
|
SearchInfo();
|
||
|
});
|
||
|
|
||
|
$.ajaxSetup({
|
||
|
cache: false //关闭AJAX缓存
|
||
|
});
|
||
|
|
||
|
|
||
|
$("#exportbtn").bind('click', function () {
|
||
|
|
||
|
var StartTime = $('#StartTime').datetimebox('getValue');
|
||
|
var EndTime = $('#EndTime').datetimebox('getValue');
|
||
|
var ModelId = $('#Model_s').combobox('getValue');
|
||
|
|
||
|
var queryParams = {
|
||
|
StartTime: StartTime,
|
||
|
EndTime: EndTime,
|
||
|
ModelId: ModelId
|
||
|
};
|
||
|
|
||
|
post('<%=ResolveUrl("~/HttpHandlers/ModelChangeRecordHandler.ashx?method=QueryExcel") %>', queryParams);
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
});
|
||
|
|
||
|
function SearchInfo() {
|
||
|
|
||
|
var StartTime = $('#StartTime').datetimebox('getValue');
|
||
|
var EndTime = $('#EndTime').datetimebox('getValue');
|
||
|
var ModelId = $('#Model_s').combobox('getValue');
|
||
|
|
||
|
$.ajax({
|
||
|
url: "ModelChangeRecord.aspx/GetDate",
|
||
|
datatype: 'json',
|
||
|
type: "Post",
|
||
|
data: "{'StartTime':'" + StartTime + "','EndTime':'" + EndTime + "','ModelId':'" + ModelId + "'}",
|
||
|
contentType: "application/json; charset=utf-8",
|
||
|
success: function (data) {
|
||
|
if (data != null && data.d != "") {
|
||
|
$('#ReportTable_div').html(data.d);
|
||
|
}
|
||
|
else {
|
||
|
$('#ReportTable_div').html('');
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
function post(url, PARAMS) {
|
||
|
var temp_form = document.createElement("form");
|
||
|
temp_form.action = url;
|
||
|
temp_form.target = "_blank";
|
||
|
temp_form.method = "post";
|
||
|
temp_form.style.display = "none"; for (var x in PARAMS) {
|
||
|
var opt = document.createElement("textarea");
|
||
|
opt.name = x;
|
||
|
opt.value = PARAMS[x];
|
||
|
temp_form.appendChild(opt);
|
||
|
}
|
||
|
document.body.appendChild(temp_form);
|
||
|
temp_form.submit();
|
||
|
}
|
||
|
|
||
|
function reload_s() {
|
||
|
$('#Model_s').combobox('reload', '/HttpHandlers/ModelInfoHandler.ashx?method=QueryForCombobox');
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|