@{ ViewBag.Title = "wzMessage"; } @model dccdc.Models.wzModel @section scripts{ }
| 编码: | @Html.TextBoxFor(m => m.bm, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.bm) |
| 物资类别: | @Html.DropDownListFor(m => m.wzlb,ViewBag.wzlbs as SelectList) @Html.ValidationMessageFor(m => m.wzlb) |
| 物资名称: | @Html.TextBoxFor(m => m.mc, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.mc) |
| 规格型号: | @Html.TextBoxFor(m => m.ggxh, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.ggxh) |
| 生产厂家: | @Html.TextBoxFor(m => m.sccj, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.sccj) |
| 计量单位: | @Html.TextBoxFor(m => m.jldw, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.jldw) |
| 单价: | @Html.TextBoxFor(m => m.dj, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.dj) |
| 库存上限: | @Html.TextBoxFor(m => m.kcsx, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.kcsx) |
| 库存下限: | @Html.TextBoxFor(m => m.kcxx, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.kcxx) |
| 使用状态: | @Html.DropDownListFor(m => m.zt, ViewData["ztlist"] as SelectList, "----请选择----")@Html.ValidationMessageFor(m => m.zt) |
|
|
|