rushfee/resource/html/rush/usertask.html

39 lines
925 B
HTML

<html login="false">
<head>
<title>任务列表</title>
</head>
<body>
<div widget="toolbar" style="padding:10px;border:0;">
<input widget="edit" name="qn" label="任务拥有者"/>
<a widget="button" iconCls="icon-search" onclick="search()">查询</a>
</div>
<div widget="autosize">
<div widget="datagrid" name="grid" style="width: 100%; height: 100%;" url="rushcompany/usercount" allowalternating="true">
<div field="姓名" width="10" align="center" header="姓名"></div>
<div field="任务名称" width="30" header="任务名称"></div>
<div field="剩余任务" width="30" align="center" header="剩余任务"></div>
</div>
</div>
</body>
<script type="text/javascript">
var grid = aos.get('grid');
grid.load();
function search(){
var params={qn:aos.get('qn').value};
grid.load(params);
}
</script>
</html>