质量不符合清单

This commit is contained in:
2026-06-15 16:11:41 +08:00
parent 749966c735
commit 1fd3ca5094
33 changed files with 7394 additions and 26 deletions
@@ -36,6 +36,13 @@
<f:DropDownList ID="drpDepart" runat="server" Label="部门" AutoPostBack="true" OnSelectedIndexChanged="TextBox_TextChanged"
EnableEdit="true" Width="190px" LabelWidth="50px">
</f:DropDownList>
<f:ToolbarSeparator runat="server"></f:ToolbarSeparator>
<f:RadioButtonList runat="server" ID="rblIsOffice" Label="本部人员" LabelWidth="80px" Width="290px" AutoPostBack="true" OnSelectedIndexChanged="TextBox_TextChanged">
<f:RadioItem Value="" Text="全部" Selected="true" />
<f:RadioItem Value="1" Text="是" />
<f:RadioItem Value="0" Text="否" />
</f:RadioButtonList>
<f:ToolbarSeparator runat="server"></f:ToolbarSeparator>
<f:DropDownList ID="drpRole" runat="server" Label="角色" EnableEdit="true" AutoPostBack="true"
OnSelectedIndexChanged="TextBox_TextChanged" LabelWidth="50px">
</f:DropDownList>
@@ -80,6 +80,11 @@
strSql += " AND Users.RoleId = @RoleId";
listStr.Add(new SqlParameter("@RoleId", this.drpRole.SelectedValue));
}
if (!string.IsNullOrWhiteSpace(this.rblIsOffice.SelectedValue))
{
strSql += " AND Users.IsOffice = @IsOffice";
listStr.Add(new SqlParameter("@IsOffice", this.rblIsOffice.SelectedValue));
}
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
+9
View File
@@ -86,6 +86,15 @@ namespace FineUIPro.Web.SysManage
/// </remarks>
protected global::FineUIPro.DropDownList drpDepart;
/// <summary>
/// rblIsOffice 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.RadioButtonList rblIsOffice;
/// <summary>
/// drpRole 控件。
/// </summary>