108 lines
5.4 KiB
Plaintext
108 lines
5.4 KiB
Plaintext
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="EditConstructSolutionFinal.aspx.cs" Inherits="FineUIPro.Web.CQMS.Solution.EditConstructSolutionFinal" %>
|
||
|
|
||
|
<!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 type="text/css">
|
||
|
.labcenter {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.f-grid-row .f-grid-cell-inner {
|
||
|
white-space: normal;
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
|
||
|
.f-grid-row.red {
|
||
|
background-color: #FF7575;
|
||
|
background-image: none;
|
||
|
}
|
||
|
|
||
|
.fontred {
|
||
|
color: #FF7575;
|
||
|
background-image: none;
|
||
|
}
|
||
|
</style>
|
||
|
</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"
|
||
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||
|
<Rows>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:ContentPanel ID="ContentPanel2" Title="施工方案" ShowBorder="true"
|
||
|
BodyPadding="10px" EnableCollapse="true" ShowHeader="true" AutoScroll="true"
|
||
|
runat="server">
|
||
|
<f:Form ID="Form2" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
||
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||
|
<Rows>
|
||
|
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
|
||
|
<f:TextBox ID="txtCode" runat="server" Required="true" ShowRedStar="true" Label="编号" LabelAlign="Right" MaxLength="50" LabelWidth="120px">
|
||
|
</f:TextBox>
|
||
|
<f:DropDownList ID="drpUnit" ShowRedStar="true"
|
||
|
runat="server" Required="true" Label="施工单位" EmptyText="--请选择--" AutoSelectFirstItem="false" LabelAlign="Right" EnableEdit="true">
|
||
|
</f:DropDownList>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
|
||
|
<f:TextBox ID="txtSolutionName" runat="server" ShowRedStar="true" Required="true" Label="方案名称" LabelAlign="Right" MaxLength="50" LabelWidth="120px">
|
||
|
</f:TextBox>
|
||
|
|
||
|
<f:DatePicker ID="txtCompileDate" ShowRedStar="true" Required="true" runat="server" Label="审核时间" LabelAlign="Right" EnableEdit="true">
|
||
|
</f:DatePicker>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:Panel ShowHeader="false" ShowBorder="false" Layout="Column" runat="server">
|
||
|
<Items>
|
||
|
|
||
|
<f:Label runat="server" Text="<span style='color:red;'>*</span>附件(当前选中版本):" EncodeText="false" ShowRedStar="true" Label="附件:" CssStyle="padding-left:48px" Width="240px" CssClass="marginr" ShowLabel="false"></f:Label>
|
||
|
<f:Button ID="imgBtnFile" Text="附件" ToolTip="上传及查看" Icon="TableCell" OnClick="imgBtnFile_Click" runat="server"></f:Button>
|
||
|
|
||
|
</Items>
|
||
|
</f:Panel>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
</Rows>
|
||
|
</f:Form>
|
||
|
</f:ContentPanel>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
|
||
|
|
||
|
</Rows>
|
||
|
<Toolbars>
|
||
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
||
|
<Items>
|
||
|
<f:ToolbarFill ID="ToolbarFill1" runat="server">
|
||
|
</f:ToolbarFill>
|
||
|
<f:HiddenField ID="HFConstructSolutionId" runat="server"></f:HiddenField>
|
||
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" OnClick="btnSave_Click">
|
||
|
</f:Button>
|
||
|
|
||
|
<%-- <f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" OnClick="btnClose_Click" runat="server" Icon="SystemClose">
|
||
|
</f:Button>--%>
|
||
|
</Items>
|
||
|
</f:Toolbar>
|
||
|
</Toolbars>
|
||
|
</f:Form>
|
||
|
</form>
|
||
|
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||
|
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
|
||
|
Height="500px">
|
||
|
</f:Window>
|
||
|
</body>
|
||
|
</html>
|