44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "main_suggestionsMessage";
|
|
}
|
|
|
|
@section scripts{
|
|
<script type="text/javascript">
|
|
function success(data) {
|
|
if (data.State == "1") {
|
|
$.ligerDialog.alert(data.Message, function () { window.parent.init(8); });
|
|
}
|
|
else {
|
|
$.ligerDialog.alert(data.Message);
|
|
}
|
|
}
|
|
</script>
|
|
}
|
|
|
|
@model dccdc.Models.main_suggestionsModel
|
|
<div id="edit">
|
|
@using (Ajax.BeginForm("main_suggestionsMessage", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" }))
|
|
{
|
|
@Html.HiddenFor(m => m.id)
|
|
@Html.HiddenFor(m => m.assessed_id)
|
|
@Html.HiddenFor(m => m.harmful_id)
|
|
<table class="t1" style="width: 100%">
|
|
<tr>
|
|
<td class="ltd" width="100px">处理建议:</td>
|
|
<td class="rtd">@Html.TextBoxFor(m => m.suggestions) @Html.ValidationMessageFor(m => m.suggestions) </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<div align="center">
|
|
<input type="submit" id="submitid" value="提交" class="l-button" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
</div>
|
|
|
|
|
|
|