节点表新增系统种类。主流操作系统类型,不考虑子版本
智能大石头 authored at 2023-03-07 23:50:00
1.01 KiB
Stardust
@using NewLife;
@using NewLife.Web;
@using NewLife.Cube;
@using XCode;
@using Stardust.Data.Nodes;
@{
    var fact = ViewBag.Factory as IEntityFactory;
    var page = ViewBag.Page as Pager;
}
<div class="form-group">
    <label for="category" class="control-label">类别:</label>
    @Html.ForDropDownList("category", Node.FindAllCategory(), page["category"], "全部", true)
</div>
<div class="form-group">
    <label for="product" class="control-label">产品:</label>
    @Html.ForDropDownList("product", Node.FindAllProduct(), page["product"], "全部", true)
</div>
<div class="form-group">
    <label for="version" class="control-label">版本:</label>
    @Html.ForDropDownList("version", Node.FindAllVersion(), page["version"], "全部", true)
</div>
<div class="form-group">
    <label for="osKind" class="control-label">系统:</label>
    @Html.ForDropDownList("osKind", Node.FindAllOSKind(), page["osKind"], "全部", true)
</div>
@*@await Html.PartialAsync("_Area2", "")*@
@await Html.PartialAsync("_DateRange")