ZHJA_HJGL/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/WelderUsing.aspx

89 lines
3.0 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WelderUsing.aspx.cs" Inherits="FineUIPro.Web.WeldMat.UsingSentMat.WelderUsing" %>
<!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>
<title>无标题页</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script src="../../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
</head>
<body>
<table width="100%" style="height: 320px" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="15px"></td>
</tr>
<tr>
<td height="25" align="left" style="font-size:24px; font-weight:bold"> &nbsp;&nbsp;
输入焊工号:
<input name="welderCode" type="text" id="welderCode" style="width: 480px;
height: 40px; font-size:24px" runat="server" />
<input name="welderCodeLogin" type="button" onclick="welderCodeLogin();" id="welderCodeLogin" style="width: 120px;
height: 48px; font-size:20px; font-weight:bold" value="领料确认"/>
</td>
</tr>
<tr >
<td height="15px"></td>
</tr>
<tr>
<td height="25" align="left" style="font-size:24px; font-weight:bold"> &nbsp;&nbsp;
扫描二维码:
<input name="welderQRCode" type="text" id="welderQRCode" style="width: 480px;
height: 40px; font-size:24px" runat="server" />
<input name="welderQRCodeLogin" type="button" onclick="welderQRCodeLogin();" id="welderQRCodeLogin" style="width: 120px;
height: 48px; font-size:20px; font-weight:bold" value="领料确认"/>
</td>
</tr>
<tr >
<td height="15px"></td>
</tr>
<tr>
<td>
<h3>
1. 焊材领用保存后还需要焊工进行确认,只有焊工确认后才进入退料环节。
</h3>
<h3>
2. 上一条领料计划必须退库后方能领取新的焊材。
</h3>
<h3>
3. 扫二维码领料必需保证焊工身份证录入正确。
</h3>
</td>
</tr>
</table>
</body>
</html>
<script language="javascript" type="text/javascript">
function $(id){
return document.getElementById(id);
}
function welderCodeLogin() {
var welderCode = $("welderCode");
if (welderCode.value != "") {
window.location.href = 'UsingMat.aspx?welderCode=' + welderCode.value + '';
}
else {
alert("请输入焊工号!");
}
}
function welderQRCodeLogin() {
var welderQRCode = $("welderQRCode");
if (welderQRCode.value != "") {
window.location.href = 'UsingMat.aspx?welderQRCode=' + welderQRCode.value + '';
}
else {
alert("请扫焊工二维码!");
}
}
</script>