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.
197 lines
6.5 KiB
197 lines
6.5 KiB
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProductionRecords.aspx.cs" Inherits="MESWebSite.Manage.ProductionRecords" %>
|
|
|
|
<!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: 10000px;
|
|
/*width: 100%;*/
|
|
}
|
|
|
|
#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;">
|
|
时间:
|
|
<input id="StartTime" class="easyui-datetimebox" data-options="onShowPanel:function(){ $(this).datetimebox('spinner').timespinner('setValue','00:00:00');}" /> 至
|
|
<input id="EndTime" class="easyui-datetimebox" data-options="onShowPanel:function(){ $(this).datetimebox('spinner').timespinner('setValue','23:59:59');}" />
|
|
|
|
<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 style="width:100%;overflow-x:scroll;max-height:800px;">
|
|
<div id="ReportTable_div">
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$(function () {
|
|
|
|
var curr_time = new Date();
|
|
var str = curr_time.getFullYear() + "-";
|
|
str += curr_time.getMonth() + 1 + "-";
|
|
str += curr_time.getDate()
|
|
|
|
$('#StartTime').datetimebox('setValue', str + " 00:00:00");
|
|
$('#EndTime').datetimebox('setValue', str + " 23:59:59");
|
|
|
|
//搜索按钮
|
|
$('.topsearchBtn').first().click(function () {
|
|
SearchInfo();
|
|
});
|
|
|
|
$.ajaxSetup({
|
|
cache: false //关闭AJAX缓存
|
|
});
|
|
|
|
|
|
$("#exportbtn").bind('click', function () {
|
|
|
|
var StartTime = $('#StartTime').datetimebox('getValue');
|
|
var EndTime = $('#EndTime').datetimebox('getValue');
|
|
|
|
var queryParams = {
|
|
StartTime: StartTime,
|
|
EndTime: EndTime
|
|
};
|
|
|
|
post('<%=ResolveUrl("~/HttpHandlers/ProductionRecordsHandler.ashx?method=QueryExcel") %>', queryParams);
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
function SearchInfo() {
|
|
|
|
var StartTime = $('#StartTime').datetimebox('getValue');
|
|
var EndTime = $('#EndTime').datetimebox('getValue');
|
|
|
|
$.ajax({
|
|
url: "ProductionRecords.aspx/GetDate",
|
|
datatype: 'json',
|
|
type: "Post",
|
|
data: "{'StartTime':'" + StartTime + "','EndTime':'" + EndTime + "'}",
|
|
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();
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|