xinjiang/SGGL/FineUIPro.Web/HSSE/Examine/OnePersonPerFile.aspx

59 lines
2.8 KiB
Plaintext
Raw Normal View History

2025-02-21 18:11:40 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OnePersonPerFile.aspx.cs" Inherits="FineUIPro.Web.HSSE.Examine.OnePersonPerFile" %>
2026-04-07 19:44:10 +08:00
<%@ Register Src="~/Controls/UnitProjectTControl.ascx" TagName="UnitProjectTControl" TagPrefix="uc1" %>
2025-02-21 18:11:40 +08:00
2026-04-07 19:44:10 +08:00
<!DOCTYPE html>
2025-02-21 18:11:40 +08:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>员工HSE信息档案</title>
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.f-grid-row.Red {
background-color: red;
}
.LabelColor {
color: Red;
font-size: small;
}
</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="panelLeftRegion" RegionPosition="Left" RegionSplit="true"
2026-04-07 19:44:10 +08:00
EnableCollapse="true" Width="380" Title="公司-项目" TitleToolTip="公司-项目" ShowBorder="true"
ShowHeader="true" AutoScroll="true" BodyPadding="5px" IconFont="ArrowCircleLeft" Layout="Fit">
<Items>
<f:ContentPanel ID="ContentPanel1" runat="server" ShowHeader="false" EnableCollapse="true" AutoScroll="true"
BodyPadding="0px">
<uc1:UnitProjectTControl ID="ucTree" runat="server" Onchange="changeTree" />
</f:ContentPanel>
</Items>
</f:Panel>
<f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Left" RegionSplit="true"
2025-02-21 18:11:40 +08:00
EnableCollapse="true" Width="250" Title="员工HSE信息档案" TitleToolTip="员工HSE信息档案" ShowBorder="true"
ShowHeader="false" AutoScroll="true" BodyPadding="5px" IconFont="ArrowCircleLeft" Layout="Fit">
<Items>
<f:Tree ID="tvProjectAndUnitAndPerson" EnableCollapse="true" ShowHeader="true" OnlyLeafCheck="true" OnNodeExpand="tvPerson_NodeExpand" AutoLeafIdentification="true"
runat="server" OnNodeCommand="tvProjectAndUnitAndPerson_NodeCommand">
</f:Tree>
</Items>
</f:Panel>
2026-04-07 19:44:10 +08:00
<f:Panel runat="server" ID="panelRightRegion" RegionPosition="Center" Layout="Fit" IFrameUrl="" EnableIFrame="True"
2025-02-21 18:11:40 +08:00
Title="右侧面板" ShowBorder="False" ShowHeader="false" BodyPadding="10px" IconFont="_RoundPlus">
</f:Panel>
</Items>
</f:Panel>
</form>
<script>
function onRefIframe()
{
panelCenterRegion.refreshIFrame();
}
</script>
</body>
</html>