35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
@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"]" /> </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>
|