Files
CNCEC_SUBQHSE_WUHUAN/SGGL/FineUIPro.Web/ProjectData/PreProjectApply.aspx
T
2026-07-20 15:43:27 +08:00

127 lines
7.8 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PreProjectApply.aspx.cs" Inherits="FineUIPro.Web.ProjectData.PreProjectApply" %>
<!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" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true" LabelWidth="120px"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:DropDownList ID="drpUnit" runat="server" Label="所属单位" EmptyText="请从下拉表格中选择" EnableEdit="true" ShowRedStar="true" Required="true" LabelWidth="120px">
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtProjectName" runat="server" Label="项目名称" EmptyText="请输入项目名称" Required="true" ShowRedStar="true" LabelWidth="120px">
</f:TextBox>
</Items>
</f:FormRow>
<%--<f:FormRow>
<Items>
<f:RadioButtonList runat="server" ID="rblApplyType" Label="申请类型" LabelWidth="120px" LabelAlign="Right" Required="true" ShowRedStar="true" >
<f:RadioItem Text="预立项" Value="预立项" />
<f:RadioItem Text="已完工" Value="已完工" />
<f:RadioItem Text="停缓建" Value="停缓建" />
</f:RadioButtonList>
</Items>
</f:FormRow>--%>
<f:FormRow>
<Items>
<f:TextArea runat="server" ID="txtApplyDescription" Label="申请说明" EmptyText="请输入申请说明" LabelWidth="120px" Height="80px" Required="true" ShowRedStar="true">
</f:TextArea>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtApplyUserName" runat="server" LabelWidth="120px" Readonly="true" Label="申请人" LabelAlign="Right">
</f:TextBox>
<f:DatePicker ID="txtApplyDate" ShowRedStar="true" Required="true" Readonly="true" runat="server" Label="申请日期" LabelAlign="Right" LabelWidth="120px"
EnableEdit="true">
</f:DatePicker>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownBox runat="server" ID="drpApprover" EmptyText="请从下拉表格中选择" Label="审批人" ShowRedStar="true" Required="true"
MatchFieldWidth="false" EnableMultiSelect="false" LabelWidth="120px">
<PopPanel>
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" runat="server" DataIDField="UserId" DataTextField="UserName"
DataKeyNames="UserId" AllowSorting="true" SortField="UserName" SortDirection="ASC" EnableColumnLines="true"
Hidden="true" Width="800px" Height="520px" EnableMultiSelect="false" KeepCurrentSelection="true" PageSize="10000">
<Toolbars>
<f:Toolbar ID="Toolbar2" Position="Top" runat="server">
<Items>
<f:TextBox runat="server" Label="查询" ID="txtUserName" EmptyText="输入查询条件" FocusOnPageLoad="true"
AutoPostBack="true" OnTextChanged="TextBox_TextChanged" Width="250px" LabelWidth="80px">
</f:TextBox>
</Items>
</f:Toolbar>
</Toolbars>
<Columns>
<f:RowNumberField EnablePagingNumber="true" HeaderText="序号" Width="50px"
HeaderTextAlign="Center" TextAlign="Center" />
<f:RenderField Width="90px" ColumnID="UserCode" DataField="UserCode" SortField="UserCode"
FieldType="String" HeaderText="编号" HeaderTextAlign="Center"
TextAlign="Left">
</f:RenderField>
<f:RenderField Width="100px" ColumnID="UserName" DataField="UserName"
SortField="UserName" FieldType="String" HeaderText="姓名" HeaderTextAlign="Center"
TextAlign="Left">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="RoleName" DataField="RoleName" ExpandUnusedSpace="true"
SortField="RoleName" FieldType="String" HeaderText="角色" HeaderTextAlign="Center"
TextAlign="Left">
</f:RenderField>
</Columns>
</f:Grid>
</PopPanel>
</f:DropDownBox>
<f:DatePicker ID="txtApprovalDate" ShowRedStar="true" Required="true" runat="server" Label="审批日期" LabelAlign="Right" LabelWidth="120px"
EnableEdit="true">
</f:DatePicker>
</Items>
</f:FormRow>
<f:FormRow ID="Audit" Hidden="true">
<Items>
<f:RadioButtonList ID="rblState" runat="server" Label="审核结果" LabelWidth="120px" AutoPostBack="true" OnSelectedIndexChanged="rblState_SelectedIndexChanged">
<f:RadioItem Text="通过" Value="1" />
<f:RadioItem Text="不通过" Value="2" />
</f:RadioButtonList>
<f:Label runat="server"></f:Label>
</Items>
</f:FormRow>
<f:FormRow ID="AuditDesc" Hidden="true">
<Items>
<f:TextArea runat="server" ID="txtApprovalDescription" Label="审核说明" EmptyText="请输入审核说明" LabelWidth="120px" Height="80px">
</f:TextArea>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" Text="保存"
OnClick="btnSave_Click">
</f:Button>
<f:Button ID="btnApproval" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" Text="审核"
OnClick="btnApproval_Click">
</f:Button>
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose" Text="关闭">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
</form>
</body>
</html>