ComplianceServer/oldcode/WEB/Views/Csvr/ApplyVip/BCHCheck.cshtml

98 lines
3.2 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@using WX.CRM.WebHelper;
@{
ViewBag.Title = "CSVR_APPLYVIP";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<script type="text/javascript">
$(function () {
$("#btnSave").click(function () {
if ($("#CreateForm").valid()) {
$.r_ajax({
url: "/Csvr/ApplyVip/BCHCheck",
type: "Post",
data: $("#CreateForm").serialize(),
dataType: "json",
loading: true,
success: function (data) {
if (data.type == 1) {
window.parent.frameReturnByMes(data.message);
window.parent.frameReturnByReload(true);
window.parent.frameReturnByClose()
}
else {
window.parent.frameReturnByMes(data.message);
}
}
});
}
return false;
});
});
</script>
<div class="mvctool bgb">
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
</div>
@using (Html.BeginForm("Edit", "CSVR_APPLYVIP", null, FormMethod.Post, new { Id = "CreateForm" }))
{
@Html.ValidationSummary(true)
<table class="fromEditTable setTextWidth200">
<tbody>
<tr>
<td style="width:100px;">
客户ID
</td>
<td style="width:310px">
@(Request.QueryString["resid"])
<input name="pkid" type="hidden" value="@Request.QueryString["pkid"]" />
<input name="resid" type="hidden" value="@Request.QueryString["resid"]" />
</td>
<td width="120px">
&nbsp;
</td>
</tr>
<tr>
<td style="width:100px;">
VIP通道号码
</td>
<td style="width:310px">
<input name="outNumber" type="text" value="31039688" />
</td>
<td width="120px">
&nbsp;
</td>
</tr>
<tr>
<td style="width:100px;">
有效日期:
</td>
<td style="width:310px">
@Html.WdatePickerText("stime", DateTime.Now.ToString("yyyy-MM-dd"), false, "style='width:100px;'")
&nbsp;至&nbsp;
@Html.WdatePickerText("etime", DateTime.Now.AddYears(1).ToString("yyyy-MM-dd"), false, "style='width:100px;'")
</td>
<td width="120px">
&nbsp;
</td>
</tr>
<tr>
<td style="width:100px;">
添加记录原因:
</td>
<td style="width:310px">
@(Request.QueryString["reson"])
<input name="reson" type="hidden" value="@Request.QueryString["reson"]" />
</td>
<td width="120px">
&nbsp;
</td>
</tr>
</tbody>
</table>
}