50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "EditYmJzlc";
|
|
}
|
|
|
|
@model dccdc.Models.ym_jzlc
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
function success(data) {
|
|
if (data.State == "1") {
|
|
$.ligerDialog.alert(data.Message,
|
|
function () {
|
|
window.parent.init();
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
}
|
|
<div id="edit">
|
|
@using (Ajax.BeginForm("EditYmJzlc", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
@Html.HiddenFor(m => m.id)
|
|
<table class="t1" style="width: 100%">
|
|
<tr>
|
|
<td class='ltd' width='100px'>流程名称:</td>
|
|
<td class='rtd'>@Html.TextBoxFor(m => m.lcmc, new { @class = "l-text" })@Html.ValidationMessageFor(m => m.lcmc)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='ltd' width='100px'>对应疫苗:</td>
|
|
<td class='rtd'>@Html.DropDownListFor(m => m.ymid, ViewData["vaccine"] as SelectList, "----请选择----")@Html.ValidationMessageFor(m => m.ymid)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='ltd' width='100px'>进度:</td>
|
|
<td class='rtd'>@Html.DropDownListFor(m => m.jdid, ViewData["ymjd"] as SelectList, "----请选择----")@Html.ValidationMessageFor(m => m.jdid)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='ltd' width='100px'>与上次间隔天数:</td>
|
|
<td class='rtd'>@Html.TextBoxFor(m => m.jgts, new { @class = "l-text" })@Html.ValidationMessageFor(m => m.jgts)</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<div align="center">
|
|
<input type="submit" id="submitid" class="l-button" value="保存" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
</div>
|