31 lines
740 B
HTML
31 lines
740 B
HTML
|
|
<div title="观看历史" style="height:100%;">
|
|
<table id="eduwatchtable" style="width:100%;height:100%"></table>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
|
var eduid = {{ jyid }};
|
|
var html;
|
|
|
|
$('#eduwatchtable').datagrid({
|
|
url: 'edu/api?a=detail&eduid=' + eduid,
|
|
rownumbers: true,
|
|
singleSelect: true,
|
|
striped: true,
|
|
fitColumns: true,
|
|
method: 'get',
|
|
pageSize: 20,
|
|
pagination: 'true',
|
|
toolbar: '#eduwatchtablebar',
|
|
columns: [[
|
|
{ field: 'id', title: 'ID', hidden: true },
|
|
{ field: 'user__name', title: '观看人', width: 80 },
|
|
{ field: 'submittime', title: '观看时间', width: 80 }
|
|
]]
|
|
});
|
|
|
|
|
|
|
|
</script> |