@{ ViewBag.Title = "kemuMessage"; } @model dccdc.Models.areaModel @section scripts{ }
| 上级地区: | @Html.DropDownListFor(m => m.pid, ViewData["areaD"] as SelectList, "----请选择----", new { @class = "l-text" })@Html.ValidationMessageFor(m => m.pid) |
| 地区名称: | @Html.TextBoxFor(m => m.name, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.name) |
| 地区编码: | @Html.TextBoxFor(m => m.code, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.code) |
| 地区层级: | @Html.TextBoxFor(m => m.level, new { @class = "l-text l-text-field-number", @type = "number" }) @Html.ValidationMessageFor(m => m.level) |
| 常用等级: | @Html.TextBoxFor(m => m.cy, new { @class = "l-text l-text-field-number", @type = "number" }) @Html.ValidationMessageFor(m => m.cy) |
| 用餐标准: | @Html.TextBoxFor(m => m.bz, new { @class = "l-text l-text-field-number", @type = "number" }) @Html.ValidationMessageFor(m => m.bz) |
| 住宿标准: | @Html.TextBoxFor(m => m.bz2, new { @class = "l-text l-text-field-number", @type = "number" }) @Html.ValidationMessageFor(m => m.bz2) |
| 状态: | @Html.DropDownListFor(m => m.zt, ViewData["ztD"] as SelectList, "----请选择----", new { @class = "l-text" })@Html.ValidationMessageFor(m => m.zt) |
|
|
|