tijian_tieying/web/dccdc/Views/Dictionaries/EditAppointment.cshtml
2025-02-20 12:14:39 +08:00

46 lines
1.3 KiB
Plaintext

@model dccdc.Models.DictionariesViewModel.SystemParms
<!DOCTYPE html>
<html>
<head>
@section scripts{
<script type="text/javascript">
function success(data) {
if (data.State == "1") {
$.ligerDialog.alert(data.Message,
function() {
});
}
}
</script>
}
<meta name="viewport" content="width=device-width" />
<title></title>
</head>
<body>
<div id="edit">
@using (Ajax.BeginForm("EditAppointment", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
{
@Html.HiddenFor(m => m.id, new { id = "Id" })
<table class="t1" style="width: 100%">
<tr>
<td class="ltd" width="100px">参数值:</td>
<td class="rtd">@Html.TextBoxFor(m => m.Parm_value,new{ @class = "l-text" })</td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" id="submitid" class="l-button" value="保存" />
</div>
</td>
</tr>
</table>
}
</div>
</body>
</html>