74 lines
3.8 KiB
Plaintext
74 lines
3.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CheckManageIn.aspx.cs" Inherits="FineUIPro.Web.WeldingProcess.CheckManage.CheckManageIn" %>
|
||
|
||
<!DOCTYPE html>
|
||
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head runat="server">
|
||
<title>导入检测单信息</title>
|
||
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
|
||
<style>
|
||
.f-grid-row .f-grid-cell-inner
|
||
{
|
||
white-space: normal;
|
||
word-break: break-all;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<form id="form1" runat="server">
|
||
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" OnCustomEvent="PageManager1_CustomEvent" />
|
||
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
||
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||
<Toolbars>
|
||
<f:Toolbar ID="Toolbar2" Position="Top" ToolbarAlign="Right" runat="server">
|
||
<Items>
|
||
<f:Button ID="btnAudit" Icon="ApplicationEdit" Text="审核" runat="server" ToolTip="审核" ValidateForms="SimpleForm1"
|
||
OnClick="btnAudit_Click">
|
||
</f:Button>
|
||
<f:Button ID="btnImport" Icon="ApplicationGet" Text="导入" runat="server" ToolTip="导入" ValidateForms="SimpleForm1"
|
||
OnClick="btnImport_Click">
|
||
</f:Button>
|
||
<f:Button ID="btnDownLoad" runat="server" Text="下载模板" Icon="ApplicationGo" ToolTip="下载模板" OnClick="btnDownLoad_Click">
|
||
</f:Button>
|
||
<%--<f:Button ID="btnOut" Icon="Pencil" runat="server" Text="导出" ToolTip="导出错误列表" ValidateForms="SimpleForm1"
|
||
OnClick="btnOut_Click" Hidden="true"></f:Button>--%>
|
||
</Items>
|
||
</f:Toolbar>
|
||
</Toolbars>
|
||
<Rows>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:FileUpload runat="server" ID="fuAttachUrl" EmptyText="选择要导入的文件" Label="选择要导入的文件"
|
||
LabelWidth="150px">
|
||
</f:FileUpload>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:HiddenField ID="hdFileName" runat="server">
|
||
</f:HiddenField>
|
||
<f:HiddenField ID="hdCheckResult" runat="server">
|
||
</f:HiddenField>
|
||
<f:Label ID="lbResult" runat="server" Label="审核结果"></f:Label>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<%--<f:Label ID="lblBottom" runat="server" Text="说明:1 人员信息导入模板中,灰色项为必填项。2 身份证号码必须为15或18位,所属单位、所在班组、作业区域、岗位、特岗证书等必须与基础信息中对应类型的名称一致,否则无法导入。3 如需修改已有人员信息,请到系统中修改。4 数据导入后,点击“保存”,即可完成人员信息导入。">
|
||
</f:Label>--%>
|
||
</Items>
|
||
</f:FormRow>
|
||
</Rows>
|
||
</f:Form>
|
||
<f:Window ID="Window1" Title="审核检测单信息" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||
Target="Parent" EnableResize="true" runat="server" OnClose="Window1_Close" IsModal="false"
|
||
CloseAction="HidePostBack" Width="900px" Height="600px">
|
||
</f:Window>
|
||
<f:Window ID="Window2" Title="导入检测单信息" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||
Target="Parent" EnableResize="true" runat="server" OnClose="Window2_Close" IsModal="false"
|
||
CloseAction="HidePostBack" Width="900px" Height="600px">
|
||
</f:Window>
|
||
</form>
|
||
</body>
|
||
</html>
|