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