SGGL_SHJ/SGGL/FineUIPro.Web/HJGL/WeldingManage/PipelineFinish.aspx

95 lines
4.7 KiB
Plaintext
Raw Normal View History

2022-09-05 16:36:31 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PipelineFinish.aspx.cs" Inherits="FineUIPro.Web.HJGL.WeldingManage.PipelineFinish" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>管线划分</title>
<style type="text/css">
.customlabel span
{
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<f:Panel ID="Panel1" runat="server" ShowBorder="false" ShowHeader="false" Layout="Region">
<Items>
<f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Center" ShowBorder="true"
Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="管线划分"
TitleToolTip="管线划分" AutoScroll="true">
<Toolbars>
<f:Toolbar ID="Toolbar2" Position="Top" runat="server" ToolbarAlign="Left">
<Items>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
OnClick="btnSave_Click">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Items>
<f:Form ID="SimpleForm1" ShowBorder="true" ShowHeader="false" AutoScroll="true" BodyPadding="10px"
runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:Label ID="lbPipelineCode" Label="管线号" runat="server" LabelWidth="120px"></f:Label>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtWBSId" Label="WBSId" runat="server" LabelWidth="120px" Hidden="true"></f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
2022-10-19 15:49:56 +08:00
<f:DatePicker ID="txtPlanStartDate" Label="计划开始日期(安装)" runat="server" LabelWidth="120px"></f:DatePicker>
2022-09-05 16:36:31 +08:00
</Items>
</f:FormRow>
<f:FormRow>
<Items>
2022-10-19 15:49:56 +08:00
<f:DatePicker ID="txtPlanEndDate" Label="计划完成日期(安装)" runat="server" LabelWidth="120px"></f:DatePicker>
2022-09-05 16:36:31 +08:00
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DatePicker ID="txtActStartDate" Label="实际开始时间" runat="server" LabelWidth="120px"></f:DatePicker>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DatePicker ID="txtActEndDate" Label="实际完成时间" runat="server" LabelWidth="120px"
AutoPostBack="true" OnTextChanged="txtActEndDate_TextChanged"></f:DatePicker>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpIsFinish" Label="状态" runat="server"
ShowRedStar="true" Required="true" EnableEdit="false" LabelWidth="120px">
<f:ListItem Value="0" Text="未开始"/>
<f:ListItem Value="1" Text="未开始且延误"/>
<f:ListItem Value="2" Text="开始"/>
<f:ListItem Value="3" Text="已开始且延误"/>
<f:ListItem Value="4" Text="完成"/>
</f:DropDownList>
</Items>
</f:FormRow>
</Rows>
</f:Form>
</Items>
</f:Panel>
</Items>
</f:Panel>
</form>
<script type="text/javascript">
function reloadGrid() {
__doPostBack(null, 'reloadGrid');
}
</script>
</body>
</html>