104 lines
4.2 KiB
HTML
104 lines
4.2 KiB
HTML
<html auth="false" >
|
|
<head >
|
|
<title>催缴任务安排</title>
|
|
</head>
|
|
|
|
<body >
|
|
<div widget="toolbar" style="padding:5px;border:0;">
|
|
|
|
<!-- <input widget="int" name="count" emptyText="只允许输入数字" label="回访次数" /> -->
|
|
|
|
<input widget="combox" name="count" label="回访次数" sqlid="companycount.rushcount" showNullItem="true" multiSelect="true" style="width:900px;margin-top:5px" emptyText="请选择"/emptyText="请选择"/>
|
|
<a widget="button" iconCls="icon-enabled" onclick="select()">全选</a>
|
|
<a widget="button" iconCls="icon-disable" onclick="selectno()">全不选</a><br>
|
|
<input widget="edit" name="feedback" label="筛选条件有" width="900"/>
|
|
<a widget="button" iconCls="icon-edit" onclick="shaixuan()">反馈筛选</a><br>
|
|
<input widget="int" name="oncount" emptyText="只允许输入数字" label="距离上次催缴" width="900" />
|
|
|
|
<a widget="button" iconCls="icon-search" onclick="search()">查询</a>
|
|
|
|
</div>
|
|
<div widget="autosize">
|
|
<div widget="datagrid" name="grid" style="width: 100%; height: 100%;" url="rushtaskcenter/taskcount">
|
|
<div type="indexcolumn" width="5" header="序号"></div>
|
|
<div field="分公司" width="10" align="center" breakLine="true" header="分公司"></div>
|
|
<div field="shengyu7" width="10" align="center" header="待分配总量"></div>
|
|
<div field="cqwsldy" width="10" align="center" header="超期未收一个月内"></div>
|
|
<div field="rwzxsl" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu1" width="10" align="center" header="剩余"></div>
|
|
<div field="cqwsyds" width="10" align="center" header="超期未收1-3月"></div>
|
|
<div field="rwzxeds" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu2" width="10" align="center" header="剩余"></div>
|
|
<div field="cqwssdl" width="10" align="center" header="超期未收3-6"></div>
|
|
<div field="rwzxsdl" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu3" width="10" align="center" header="剩余"></div>
|
|
<div field="cqwsqdse" width="10" align="center" header="超期未收6-12"></div>
|
|
<div field="rwzxqdse" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu4" width="10" align="center" header="剩余"></div>
|
|
<div field="ynys" width="10" align="center" header="一年以上"></div>
|
|
<div field="rwzxynys" width="10" align="center" header="任务中心"></div>
|
|
<div field="jjdqldy" width="10" align="center" header="即将到期一个月内"></div>
|
|
<div field="rwzxjjdqsl" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu5" width="10" align="center" header="剩余"></div>
|
|
<div field="jjdqyds" width="10" align="center" header="即将到期1-3"></div>
|
|
<div field="rwzxjjdqeds" width="10" align="center" header="任务中心"></div>
|
|
<div field="shengyu6" width="10" align="center" header="剩余"></div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
<script type="text/javascript">
|
|
|
|
var grid = aos.get('grid');
|
|
|
|
|
|
|
|
function select(){
|
|
var select=aos.get('count');
|
|
var asd ='0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26';
|
|
select.setValue(asd);
|
|
|
|
}
|
|
function selectno(){
|
|
var select=aos.get('count');
|
|
var dsa='';
|
|
select.setValue(dsa);
|
|
}
|
|
|
|
|
|
function search(){
|
|
|
|
var count = aos.get('count').getValue();
|
|
var oncount = aos.get('oncount').getValue();
|
|
var feedback = aos.get('feedback').getValue();
|
|
|
|
if(feedback!=""&&(count==0||count=="")){
|
|
aos.tip('回访次数不能为空且不能为未回访');
|
|
return;
|
|
}
|
|
|
|
var params={ oncount:aos.get('oncount').getValue(),
|
|
count:aos.get('count').getValue(),feedback:aos.get('feedback').getValue()};
|
|
grid.load(params)
|
|
|
|
}
|
|
|
|
|
|
function shaixuan(){
|
|
var param = {};
|
|
param['pageState'] = 'editnew';
|
|
param['feedback']=aos.get('feedback').getValue();
|
|
aos.showWindow('canvas/tick/feedbacktask', param, '500px', '400px', '反馈类型筛选任务', function(params,RtnData){
|
|
|
|
aos.get('feedback').setValue(params['feedback']);
|
|
aos.get('feedback').setValue(RtnData['feedback']);
|
|
});
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
</html> |