ComplianceServer/oldcode/WEB/Views/Ord/Memo/MemoList.cshtml

28 lines
916 B
Plaintext

@using WX.CRM.WebHelper;
@{
ViewBag.Title = "bas_agent";
Layout = "~/Views/Shared/_Index_Layout2.cshtml";
}
<link href="~/Content/main.css" rel="stylesheet" />
<div class="bas_datagrid">
@Html.Raw(ViewBag.gridTable)
</div>
<script type="text/javascript">
$(function () {
$('#tablist').tablegrid({
url: '/Csvr/CustomerUC/GetMemoQueryHtml',
height: $(window).height() - 80,
loadNow: true,
data: { ResId: '@(Request.QueryString["ResId"])', MemoType: '@(Request.QueryString["MemoType"])',pageType:"1" },
onLoadError: function () {
$.messager.alert("警告","数据加载失败!","erro");
}
});
$(window).resize(function () {//自动适应大小
$('#tablist').tablegrid('resize', {
height: $(window).height() - 80
});
});
});
</script>