TG.WXCRM.V4/WEB/Views/Res/Distribute/DistributeDetail.cshtml

30 lines
735 B
Plaintext

@using WX.CRM.WebHelper;
@{
ViewBag.Title = "bas_agent";
Layout = "~/Views/Shared/_Index_Layout2.cshtml";
}
<style>
.bodyDiv {
padding:0px;
}
.bas_datagrid {
border:none;
}
</style>
<div class="bas_datagrid">
@Html.Raw(ViewBag.gridTable)
</div>
<script type="text/javascript">
$(function () {
$('#tablist').tablegrid({
url: '/Res/Distribute/GetDetailHtmlList?id=@Request.QueryString["id"]',
height: $(window).height()-90,
loadNow: true,
});
$(window).resize(function () { //自动适应大小
$('#tablist').tablegrid('resize', {
height: $(window).height()-90
});
});
});
</script>