98 lines
6.4 KiB
Plaintext
98 lines
6.4 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TransferChart.aspx.cs" Inherits="FineUIPro.Web.Transfer.Chart.TransferChart" %>
|
|
<%@ Register Src="~/Controls/ChartControl.ascx" TagName="ChartControl" TagPrefix="uc1" %>
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>全厂移交统计递增表</title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="RegionPanel1" AjaxAspnetControls="divAnalyse,divCheck" />
|
|
|
|
<f:RegionPanel ID="RegionPanel1" ShowBorder="false" runat="server" Margin="5px">
|
|
<Regions>
|
|
|
|
<f:Region ID="Region1" ShowBorder="false" ShowHeader="false" RegionPosition="Top"
|
|
BodyPadding="0 5 0 0" Width="200px" Layout="Fit" runat="server" EnableCollapse="true">
|
|
<Items>
|
|
<f:Form ID="Form2" ShowHeader="false" ShowBorder="false" runat="server">
|
|
<Rows>
|
|
<f:FormRow ColumnWidths="30% 20% 3% 20% 15%">
|
|
<Items>
|
|
<f:DropDownList ID="drpType" runat="server" Label="分类" AutoPostBack="true"
|
|
Width="100px" LabelWidth="80px">
|
|
<f:ListItem Value="" Text="全部" Selected="true"></f:ListItem>
|
|
<f:ListItem Value="Piping" Text="Piping"></f:ListItem>
|
|
<f:ListItem Value="Static Equipment" Text="Static Equipment"></f:ListItem>
|
|
<f:ListItem Value="Rotating Equipment" Text="Rotating Equipment"></f:ListItem>
|
|
<f:ListItem Value="Instrumentation" Text="Instrumentation"></f:ListItem>
|
|
<f:ListItem Value="Electrical" Text="Electrical"></f:ListItem>
|
|
<f:ListItem Value="Civil Structure" Text="Civil Structure"></f:ListItem>
|
|
<f:ListItem Value="Firefighting" Text="Firefighting"></f:ListItem>
|
|
<f:ListItem Value="Telecom" Text="Telecom"></f:ListItem>
|
|
<f:ListItem Value="Plumbing" Text="Plumbing"></f:ListItem>
|
|
<f:ListItem Value="HVAC" Text="HVAC"></f:ListItem>
|
|
|
|
</f:DropDownList>
|
|
|
|
<%--<f:DropDownList ID="drpdateType" runat="server" Label="日期类型" AutoPostBack="true"
|
|
OnSelectedIndexChanged="drpdateType_SelectedIndexChanged" Width="100px" LabelWidth="80px">
|
|
<f:ListItem Value="0" Text="按年月" Selected="true"></f:ListItem>
|
|
<f:ListItem Value="1" Text="按日期"></f:ListItem>
|
|
</f:DropDownList>--%>
|
|
|
|
<f:DatePicker runat="server" Label="时间" ID="txtStarTime" EnableEdit="true" LabelWidth="50px" DateFormatString="yyyy-MM" DisplayType="Month"></f:DatePicker>
|
|
<f:Label ID="Label3" runat="server" Text="至" Width="5px">
|
|
</f:Label>
|
|
<f:DatePicker runat="server" ID="txtEndTime" EnableEdit="true" LabelWidth="80px" DateFormatString="yyyy-MM" DisplayType="Month"></f:DatePicker>
|
|
|
|
<%-- <f:DatePicker runat="server" Label="完成时间" ID="txtStarTime1" EnableEdit="true" LabelWidth="80px" Hidden="true"></f:DatePicker>
|
|
|
|
<f:DatePicker runat="server" ID="txtEndTime1" EnableEdit="true" LabelWidth="80px" Hidden="true"></f:DatePicker>--%>
|
|
|
|
<%-- <f:DropDownList ID="drpChartType" runat="server" Label="图形类型" AutoPostBack="true"
|
|
OnSelectedIndexChanged="drpChartType_SelectedIndexChanged" Width="300px" LabelWidth="80px">
|
|
<f:ListItem Value="Column" Text="柱形图" Selected="true"></f:ListItem>
|
|
<f:ListItem Value="Line" Text="折线图"></f:ListItem>
|
|
</f:DropDownList>--%>
|
|
|
|
|
|
<f:Button ID="BtnAnalyse" Text="统计" Icon="ChartPie" runat="server" OnClick="BtnAnalyse_Click"></f:Button>
|
|
|
|
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
</f:Form>
|
|
</Items>
|
|
</f:Region>
|
|
<f:Region ID="Region2" ShowBorder="false" ShowHeader="false" Position="Center" Layout="VBox" AutoScroll="true"
|
|
BoxConfigAlign="Stretch" BoxConfigPosition="Left" runat="server">
|
|
<Items>
|
|
<f:TabStrip ID="TabStrip1" CssClass="f-tabstrip-theme-simple" Height="800px" ShowBorder="true"
|
|
TabPosition="Top" MarginBottom="5px" EnableTabCloseMenu="false" runat="server">
|
|
<Tabs>
|
|
<f:Tab ID="Tab2" Title="图表" BodyPadding="5px" Layout="Fit" IconFont="Bookmark" AutoScroll="true"
|
|
runat="server" TitleToolTip="图表">
|
|
<Items>
|
|
<f:ContentPanel ShowHeader="false" runat="server" ID="cpCostTime" Margin="0 0 0 0">
|
|
<div id="divAnalyse">
|
|
<uc1:ChartControl ID="ChartUc" runat="server" />
|
|
</div>
|
|
</f:ContentPanel>
|
|
</Items>
|
|
|
|
|
|
</f:Tab>
|
|
</Tabs>
|
|
</f:TabStrip>
|
|
</Items>
|
|
</f:Region>
|
|
</Regions>
|
|
</f:RegionPanel>
|
|
</form>
|
|
</body>
|
|
</html>
|