121 lines
6.5 KiB
Plaintext
121 lines
6.5 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InspectWanderAboutAllPass.aspx.cs" Inherits="FineUIPro.Web.TestRun.TestRunManage.InspectWanderAboutAllPass" %>
|
||
|
||
<!DOCTYPE html>
|
||
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head runat="server">
|
||
<title>全部通过</title>
|
||
<style>
|
||
.f-grid-row .f-grid-cell-inner {
|
||
white-space: normal;
|
||
word-break: break-all;
|
||
}
|
||
|
||
.mycheckbox .f-field-checkbox-switch .f-field-checkbox-switch-text {
|
||
min-width: 40px;
|
||
}
|
||
|
||
.f-grid-tpl .ispass input {
|
||
margin: 3px;
|
||
}
|
||
|
||
.f-grid-tpl .ispass label {
|
||
margin-left: 3px;
|
||
margin-right: 10px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<form id="form1" runat="server">
|
||
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
|
||
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
||
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Left">
|
||
<Rows>
|
||
<f:FormRow>
|
||
<Items>
|
||
|
||
<f:ContentPanel ID="ContentPanel1" 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:Label ID="lblProjectName" runat="server" Label="项目名称" LabelAlign="Right"></f:Label>
|
||
<f:Label ID="lblProjectCode" runat="server" Label="项目号" LabelAlign="Right"></f:Label>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:Label ID="lblSubcontractorName" runat="server" Label="分包商" LabelAlign="Right"></f:Label>
|
||
<f:Label ID="lblContractorName" runat="server" Label="承包商" LabelAlign="Right"></f:Label>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:Label ID="lblSupervisionName" runat="server" Label="监理" LabelAlign="Right"></f:Label>
|
||
<f:Label ID="lblOwnerName" runat="server" Label="业主" LabelAlign="Right"></f:Label>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:Label ID="lblWorkPackName" runat="server" Label="工作包名称" LabelAlign="Right"></f:Label>
|
||
<f:TextArea ID="txtUnifyWanderAboutOpinion" ShowRedStar="true" Required="true" runat="server" Label="备注" MaxLength="3000"></f:TextArea>
|
||
</Items>
|
||
</f:FormRow>
|
||
<f:FormRow>
|
||
<Items>
|
||
<f:ContentPanel Title="是否统一流转" ShowBorder="true" BodyPadding="10px" EnableCollapse="true" ShowHeader="true" AutoScroll="true" runat="server">
|
||
<f:RadioButtonList ID="rblIsUnifyWanderAbout" Label="是否统一流转" LabelWidth="180px" LabelAlign="Right" ColumnNumber="2" runat="server" AutoColumnWidth="true">
|
||
<f:RadioItem Text="通过" Value="1" Selected="true" />
|
||
<f:RadioItem Text="未通过" Value="0" />
|
||
</f:RadioButtonList>
|
||
|
||
<f:Panel ID="Panel3" Width="500px" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
|
||
<Items>
|
||
<f:Label ID="lblAttach" runat="server" Label="上传附件" LabelWidth="180px" LabelAlign="Right">
|
||
</f:Label>
|
||
<f:Button ID="btnAttach" Icon="TableCell" EnablePostBack="true" Text="附件" runat="server" OnClick="btnAttach_Click">
|
||
</f:Button>
|
||
</Items>
|
||
</f:Panel>
|
||
</f:ContentPanel>
|
||
</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:Button ID="btnConfirm" Icon="SystemSaveNew" runat="server" Text="确认" ToolTip="确认" ValidateForms="SimpleForm1" OnClick="btnConfirm_Click">
|
||
</f:Button>
|
||
</Items>
|
||
</f:Toolbar>
|
||
</Toolbars>
|
||
</f: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>
|
||
</form>
|
||
<script type="text/javascript">
|
||
// 返回false,来阻止浏览器右键菜单
|
||
function onRowContextMenu(event, rowId) {
|
||
return false;
|
||
}
|
||
function reloadGrid() {
|
||
__doPostBack(null, 'reloadGrid');
|
||
}
|
||
|
||
</script>
|
||
</body>
|
||
</html>
|