注塑喷涂
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.
 
 
 
 
 

123 lines
6.5 KiB

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>模具信息</title>
<link href="../CSS/InitCSS.css" rel="stylesheet" />
<script src="../Scripts/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(function () {
$("#TxtCode").focus();
});
function GetMoudleInfo() {
if (event.keyCode == 13) {
var mouldNo = $("#TxtCode").val();
$.ajax({
type: "GET",
url: "../Handler/StationPlanHandler.ashx?method=GetMouldInfo",
dataType: "json",
data: { "mouldNo": mouldNo },
success: function (result) {
$("#Tonnage").text(result.Tonnage);
$("#ServiceLife").text(result.ServiceLife);
$("#Supplier_a").text(result.Supplier_a);
$("#PartWeight").text(result.PartWeight);
$("#InjectionPeriod").text(result.InjectionPeriod);
$("#LocatingRingSize").text(result.LocatingRingSize);
$("#OutForm").text(result.OutForm);
$("#ModelWeight").text(result.ModelWeight);
$("#RunnerForm").text(result.RunnerForm);
$("#ModelCavityNo").text(result.ModelCavityNo);
$("#ModelSize").text(result.ModelSize);
$("#Purpose1").text(result.Purpose1);
$("#State1").text(result.State1);
$("#Supplier1").text(result.Supplier1);
$("#AddTime1").text(result.AddTime1);
$("#Remarks1").text(result.Remarks1);
$("#Purpose2").text(result.Purpose2);
$("#State2").text(result.State2);
$("#Supplier2").text(result.Supplier2);
$("#AddTime2").text(result.AddTime2);
$("#Remarks2").text(result.Remarks2);
$("#Purpose3").text(result.Purpose3);
$("#State3").text(result.State3);
$("#Supplier3").text(result.Supplier3);
$("#AddTime3").text(result.AddTime3);
$("#Remarks3").text(result.Remarks3);
$("#Purpose4").text(result.Purpose4);
$("#State4").text(result.State4);
$("#Supplier4").text(result.Supplier4);
$("#AddTime4").text(result.AddTime4);
$("#Remarks4").text(result.Remarks4);
$("#Purpose5").text(result.Purpose5);
$("#State5").text(result.State5);
$("#Supplier5").text(result.Supplier5);
$("#AddTime5").text(result.AddTime5);
$("#Remarks5").text(result.Remarks5);
$("#Purpose6").text(result.Purpose6);
$("#State6").text(result.State6);
$("#Supplier6").text(result.Supplier6);
$("#AddTime6").text(result.AddTime6);
$("#Remarks6").text(result.Remarks6);
$("#TxtCode").val('').focus();
}
});
}
}
function Close() {
window.close();
}
</script>
<style>
table, tr, td {
border: solid 1px white;
border-collapse: collapse;
text-align: center;
}
td {
width: 312px;
}
</style>
</head>
<body style="background-color:black; width:1920px; height:1000px; color:white; font-size:40px; font-family:黑体;">
<div style="margin-top:20px;">
<div style="width:1920px; height:50px;">
<div style="margin-left:650px; display:inline-block">
扫码:
<input id="TxtCode" type="text" style="font-size:40px; height:50px; width:583px;" onkeyup="GetMoudleInfo()" />
</div>
<div style="float:right; display:inline-block; margin-right:40px;">
<input id="BtnReturn" type="button" value="返回" style="height:50px; width:150px; font-size:40px;" onclick="Close()" />
</div>
</div>
</div>
<div id="mouldContent" style="margin-top:20px;">
<table>
<tr><td colspan="6">模具信息</td></tr>
<tr><td>注塑机吨位</td><td id="Tonnage"></td><td>模具寿命</td><td id="ServiceLife"></td><td>供应商</td><td id="Supplier_a"></td></tr>
<tr><td colspan="6">技术参数</td></tr>
<tr><td colspan="2">项目</td><td>数据</td><td colspan="2">项目</td><td>数据</td></tr>
<tr><td colspan="2">零件重量</td><td id="PartWeight"></td><td colspan="2">注塑周期</td><td id="InjectionPeriod"></td></tr>
<tr><td colspan="2">定位环尺寸</td><td id="LocatingRingSize"></td><td colspan="2">顶出形式</td><td id="OutForm"></td></tr>
<tr><td colspan="2">模具重量</td><td id="ModelWeight"></td><td colspan="2">流道形式</td><td id="RunnerForm"></td></tr>
<tr><td colspan="2">型腔数</td><td id="ModelCavityNo"></td><td colspan="2">模具尺寸</td><td id="ModelSize"></td></tr>
<tr><td colspan="6">工程更改</td></tr>
<tr><td>更改目的</td><td>E/Q状态E/Qstate</td><td colspan="2">状态更新时间</td><td>供应商</td><td>备注</td></tr>
<tr><td id="Purpose1"></td><td id="State1"></td><td colspan="2" id="AddTime1"></td><td id="Supplier1"></td><td id="Remarks1"></td></tr>
<tr><td id="Purpose2"></td><td id="State2"></td><td colspan="2" id="AddTime2"></td><td id="Supplier2"></td><td id="Remarks2"></td></tr>
<tr><td id="Purpose3"></td><td id="State3"></td><td colspan="2" id="AddTime3"></td><td id="Supplier3"></td><td id="Remarks3"></td></tr>
<tr><td id="Purpose4"></td><td id="State4"></td><td colspan="2" id="AddTime4"></td><td id="Supplier4"></td><td id="Remarks4"></td></tr>
<tr><td id="Purpose5"></td><td id="State5"></td><td colspan="2" id="AddTime5"></td><td id="Supplier5"></td><td id="Remarks5"></td></tr>
<tr><td id="Purpose6"></td><td id="State6"></td><td colspan="2" id="AddTime6"></td><td id="Supplier6"></td><td id="Remarks6"></td></tr>
</table>
</div>
</body>
</html>