44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "PhysicalExaminationAbolish";
|
|
}
|
|
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
function success(data) {
|
|
if (data.State == "1") {
|
|
$.ligerDialog.alert(data.Message, function () { window.parent.init(); });
|
|
}
|
|
else {
|
|
$.ligerDialog.alert(data.Message);
|
|
}
|
|
}
|
|
|
|
</script>
|
|
}
|
|
|
|
@model dccdc.Models.InfectionTestModel
|
|
<div id="edit">
|
|
@using (Ajax.BeginForm("PhysicalExaminationAbolishSave", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
@Html.HiddenFor(m => m.id)
|
|
@Html.HiddenFor(m => m.ma_id)
|
|
<table class="t1" style="width: 100%">
|
|
<tr>
|
|
<td class="ltd" width="100px">取消原因:</td>
|
|
<td class="rtd">
|
|
@Html.TextAreaFor(m => m.cancel_reason, new { @class = "l-text", style = "width:320px; height:200px;" })
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<div align="center">
|
|
<input type="submit" id="submitid" value="提交" class="l-button" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
</div>
|
|
|