HJGL_DS/HJGL_DS/FineUIPro.Web/WeldMat/UsingSentMat/WelderConfirm.aspx

173 lines
6.5 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WelderConfirm.aspx.cs" Inherits="FineUIPro.Web.WeldMat.UsingSentMat.WelderConfirm" %>
<!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 id="Head1" runat="server">
<title>领料确认单</title>
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.customlabel
{
color: red;
font-weight: bold;
font-size: 30px;
}
.customText
{
font-weight: bold;
font-size: 30px;
}
.customfont
{
font-size: 26px;
}
.titlefont
{
font-weight: bold;
font-size: 35px;
}
.photo
{
height: 150px;
width: 150px;
vertical-align: middle;
}
.bgStyle
{
background-color: #B1EEEF;
background-image: url(../Images/login_02.jpg);
}
.buttonfont
{
font-weight: bold;
font-size: 42px;
}
</style>
<script type="text/javascript" language="javascript">
function Speak(content) {
}
function DoSpeak(v) {
if (v == '') {
alert('请先输入要测试文本!');
} else {
/**
***
Speak ( text, volumn, speed );
volumn = 0 ~ 100 100最大声音
speed = 0 ~ 10 10最快速度
**/
//document.vs.Speak("100", 100, 0);
//document.getElementById('vvvd').Speak(v, 100, 0);
}
}
function backData(data) {
//debugger
//alert(data);
alert("焊工已确认领料!");
}
</script>
</head>
<body class="bgStyle">
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<object id="vvvd" width="1" height="1" classid="CLSID:DF69ADAE-D8B4-494E-ACAA-E5D09142A1DD">
</object>
<div>
<table id="table1" width="100%">
<tr>
<td colspan="2" class="titlefont" align="center" style="height:80px">
焊工确认
</td>
<td>
<f:Button ID="btnClose" runat="server" Text="关闭" Icon="SystemClose" OnClick="btnClose_Click">
</f:Button>
</td>
</tr>
<tr>
<td style="width: 72%">
<table width="100%" id="table2">
<tr style="height: 75px;">
<td class="customfont" align="right" style="width: 23%">
焊工姓名:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtName" runat="server"></asp:Label>
</td>
<td class="customfont" align="right" style="width: 23%">
焊工代号:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtCode" runat="server"></asp:Label>
</td>
</tr>
<tr style="height: 75px;">
<td class="customfont" align="right" style="width: 23%">
身份证号:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtIdentityCard" runat="server"></asp:Label>
</td>
<td class="customfont" align="right" style="width: 23%">
焊工等级:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtClass" runat="server"></asp:Label>
</td>
</tr>
<tr style="height: 75px;">
<td class="customfont" align="right" style="width: 23%">
证书编号:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtWorkCode" runat="server"></asp:Label>
</td>
<td class="customfont" align="right" style="width: 23%">
有效期限:
</td>
<td class="customfont" align="left" style="width: 27%">
<asp:Label ID="txtLimitDate" runat="server"></asp:Label>
</td>
</tr>
</table>
</td>
<td style="width: 28%" valign="top">
<table>
<tr align="center">
<td align="center" valign="top">
<asp:Button ID="btnWelder" runat="server" Text="焊工确认" CssClass="buttonfont" OnClientClick="onConfirm()"
Width="280px" Height="120px">
</asp:Button>
</td>
</tr>
<tr >
<td style="height:20px" ></td>
</tr>
<tr align="center">
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>
<f:Window ID="Window2" Title="焊工领料" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Top" EnableResize="true" runat="server" IsModal="true" Width="1024px"
Height="640px">
</f:Window>
</body>
</html>
<script type="text/javascript">
function onConfirm() {
window.location.href = 'UsingMat.aspx?welderQRCode=<%=welderCode%>';
}
</script>