This commit is contained in:
李鹏飞 2026-03-05 20:10:46 +08:00
parent aaa8090205
commit 4b8bc359cf
2 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,7 @@
</f:TextBox> </f:TextBox>
<f:DropDownList ID="ddlFlowingSection" runat="server" Label="流水段" <f:DropDownList ID="ddlFlowingSection" runat="server" Label="流水段"
Width="180px" LabelWidth="80px" LabelAlign="Right"> Width="180px" LabelWidth="80px" LabelAlign="Right" AutoSelectFirstItem="true">
</f:DropDownList> </f:DropDownList>
<f:DropDownList ID="ddlPipeArea" runat="server" Label="管线划分" <f:DropDownList ID="ddlPipeArea" runat="server" Label="管线划分"
Width="180px" LabelWidth="80px" LabelAlign="Right"> Width="180px" LabelWidth="80px" LabelAlign="Right">

View File

@ -489,6 +489,7 @@ namespace FineUIPro.Web.HJGL.PreDesign
this.ddlFlowingSection.DataSource = flowingSections.Select(x => new { FlowingSection = x }).ToList(); this.ddlFlowingSection.DataSource = flowingSections.Select(x => new { FlowingSection = x }).ToList();
this.ddlFlowingSection.DataBind(); this.ddlFlowingSection.DataBind();
Funs.FineUIPleaseSelect(this.ddlFlowingSection, "-请选择-"); Funs.FineUIPleaseSelect(this.ddlFlowingSection, "-请选择-");
ddlFlowingSection.SelectedValue = Const._Null;
} }
/// <summary> /// <summary>