ComplianceServer/oldcode/WEB/Views/Sms/SmsMessage/Index2.cshtml

35 lines
1.0 KiB
Plaintext
Raw 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 = "短信查询";
Layout = "~/Views/Shared/_Index_Layout2.cshtml";
}
<div class="mvctool">
@Html.ToolButton("btnQuery", "icon-search", "查询", true)
</div>
<div class="bas_datagrid">
<div id="tb" style="padding:5px;height:auto" class="grid_toolbar">
<ul class="toolBar_ul" style="display:none;">
<li>客户ID<input type="text" name="txt_ResId" style="width:150px;" value="@Request.QueryString["resid"]" />&nbsp;</li>
</ul>
</div>
@Html.Raw(ViewBag.gridTable)
</div>
<script type="text/javascript">
var IsUser = 0;
$(function () {
$('#tablist').tablegrid({
url: '/Sms/SmsMessage/GetSmsMessageHtml',
height: $(window).height() - 110,
loadNow: true,
//data: GetControlValue
});
$(window).resize(function () {//自动适应大小
$('#tablist').tablegrid('resize', {
height: $(window).height() - 110
});
});
});
</script>