rushfee/resource/html/rush/oldrush.html

57 lines
1.3 KiB
HTML

<html login="false" auth="false">
<head>
<meta charset="UTF-8">
<title>催缴记录</title>
</head>
<body>
<div widget="autosize">
<div widget="datagrid" name="grid" style="width: 100%; height: 100%;" url="rush/rushRecord/getRecord" multiSelect="true" onrowdblclick="pay()">
<div type="indexcolumn" width="5" header="序号"></div>
<div field="operator" width="8" align="center" header="催缴人"></div>
<div field="id" width="8" visible="false"></div>
<div field="operate_date" width="10" align="center" header="催缴日期"></div>
<div field="remark" width="20" header="反馈结果"></div>
</div>
</div>
</body>
<script type="text/javascript">
var grid = aos.get('grid');
function init(param){
var grid = aos.get('grid');
var customer_id=param['customer_id'];
grid.load(param);
}
function pay(){
var data = grid.getSelected();
if(!data){
aos.alert('请选择一条数据。');
return;
}
var param = {};
param['pageState'] = 'editold';
param['id'] = data.id;
param['operator'] = data.operator;
dakai(param);
}
function dakai(param){
aos.showWindow('canvas/tick/callrecord', param, '1000px', '200px', '录音查询', function(){
});
}
</script>
</html>