47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "kemuMessage";
|
|
}
|
|
|
|
@model dccdc.Models.szyd_cgfsModel
|
|
|
|
@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("szyd_cgfsMessage", 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.cgfs, new { @class = "l-text" }) @Html.ValidationMessageFor(m => m.cgfs) </td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ltd" width="100px">状态:</td>
|
|
<td class="rtd">@Html.DropDownListFor(m => m.zt, ViewData["ztD"] as SelectList, "----请选择----", new { @class = "l-text" })@Html.ValidationMessageFor(m => m.zt)</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<div align="center">
|
|
<input type="submit" id="submitid" value="提交" class="l-button" />
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
}
|
|
</div>
|
|
|