rushfee/build/classes/html/rush/workresult.html

96 lines
3.4 KiB
HTML

<html auth="false">
<head>
<title>催缴成果统计报表</title>
<style>
#showtb{
border-collapse:collapse;
}
/*关键设置 tbody出现滚动条*/
#showtb tbody {
display: block;
overflow-y: scroll;
}
#showtb tbody tr {
height: 25px;
}
#showtb tbody tr td {
line-height:25px;
padding-left: 6px;
border: 1px solid #cfcfce;
}
#showtb tbody tr th {
line-height:25px;
padding-left: 6px;
border: 1px solid #cfcfce;
background:#F8F8FF;
}
</style>
<script type="text/javascript" src="www/i18n/rms_i18n_{{language}}.js"></script>
</head>
<body>
<div widget="toolbar" style="padding: 10px; border: 0;">
<!--
<input widget="combox" name="company" label="分公司"
url="rush/org/getOrgList" emptyText="请选择" textField="text"
valueField="id" allowInput="false" showNullItem="true" />
-->
<input name="searchbegindate" widget=datechooser allowinput="f" label="催缴日期">
<input name="searchenddate" widget=datechooser allowinput="f"
style="margin-left: -70px;" label="至">
<a widget="button" iconCls="icon-search" onclick="search()">查询</a>
<!-- <input name="injf" widget=combox allowinput="f" style="width: 200px;" showNullItem="true"
data="[{id:'0',text:'否'},{id:'1',text:'是'}]" emptyText="请选择" label="机房状态">
<input name="ifmz" widget=combox allowinput="f" style="width: 200px;" showNullItem="true"
data="[{id:'0',text:'否'},{id:'1',text:'是'}]" emptyText="请选择" label="是否免征">-->
<a widget="button" iconCls="icon-export" onclick="downloadfileGet()">导出</a>
</div>
<div widget="autosize">
<div widget="datagrid" virtualScroll= "true" frozenStartColumn="1" frozenEndColumn = "2" name="grid" style="width: 100%; height: 100%;" url="rush/workcalculate/queryWorkResult" >
<div type="indexcolumn" width="35" header="序号"></div>
<div field="daychar" width="100" align="center" header="催缴日期"></div>
<div field="totalcallnum" width="100" align="center" header="回访客户总量"></div>
<div field="currentdaypaynum" width="100" align="center" header="当日缴费客户量"></div>
<div field="otherdaypaynum" width="120" align="center" header="实际缴费客户总量"></div>
<div field="agreetotalcallnum" width="120" align="center" header="同意量客户总数"></div>
<div field="agreecurrentdaypaynum" width="140" align="center" header="同意量中当日缴费客户量"></div>
<div field="agreeotherdaypaynum" width="140" align="center" header="同意中实际缴费客户总量"></div>
</div>
</div>
<script type="text/javascript">
var grid = aos.get('grid');
grid.load();
function downloadfileGet(){
var begindate=aos.get('searchbegindate').getValue();
var enddate=aos.get('searchenddate').getValue();
var param = { searchbegindate:begindate,
searchenddate:enddate};
var base = document.getElementsByTagName("base")[0].href;
window.location.href=base+"rush/workcalculate/exportWorkResult?begindate="+begindate+"&enddate="+enddate;
return false;
}
function search(){
var begindate=aos.get('searchbegindate').getValue();
var enddate=aos.get('searchenddate').getValue();
var param = { begindate:begindate,
/* injf:aos.get('injf').getValue(),
ifmz:aos.get('ifmz').getValue(),*/
enddate:enddate};
grid.load(param);
}
</script>
</body>
</html>