38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
@model dccdc.Models.PT.org
|
|
|
|
@{
|
|
ViewBag.Title = "维护辖区医疗机构";
|
|
}
|
|
|
|
@using (Ajax.BeginForm("saveorg", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
|
|
<table class="t1" style="width:96%">
|
|
<tr>
|
|
<td class="ltd" style="width:100px">机构编码:</td>
|
|
<td class="rtd">@Html.TextBoxFor(t => t.zoe_code, new { @class = "l-text" })</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ltd">机构名称:</td>
|
|
<td class="rtd">@Html.TextBoxFor(t => t.zoe_value, new { @class = "l-text" })</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ltd">是否使用:</td>
|
|
<td class="rtd">@Html.DropDownListFor(m => m.used, ViewBag.usedlist as SelectList)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ltd"></td>
|
|
<td class="rtd"><input type="submit" class="l-button" value="保存" /></td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
function success(data) {
|
|
$.ligerDialog.alert(data.Message);
|
|
if (data.State == "1") {
|
|
window.parent.init();
|
|
}
|
|
}
|
|
</script>
|
|
} |