31 lines
848 B
Plaintext
31 lines
848 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/DistributeUnCount',
|
|
height: $(window).height() - 90,
|
|
loadNow: true,
|
|
data: { stime: '@Request.QueryString["stime"]', etime: '@Request.QueryString["etime"]', saleid: @Request.QueryString["saleid"] }
|
|
});
|
|
$(window).resize(function () { //自动适应大小
|
|
$('#tablist').tablegrid('resize', {
|
|
height: $(window).height()-90
|
|
});
|
|
});
|
|
});
|
|
</script> |