30 lines
815 B
HTML
30 lines
815 B
HTML
|
|
<div style="height:100%;">
|
|
<table id="zrtable" style="width:100%;height:100%"></table>
|
|
|
|
|
|
</div>
|
|
|
|
<script>
|
|
var id = {{ id }};
|
|
$('#zrtable').datagrid({
|
|
url: 'api/getprodata?a=detail&zrid='+id,
|
|
rownumbers: true,
|
|
singleSelect: true,
|
|
striped: true,
|
|
fitColumns: true,
|
|
method: 'get',
|
|
pagination: 'true',
|
|
pageSize: 20,
|
|
toolbar: '#zytablebar',
|
|
border:false,
|
|
columns: [[
|
|
{ field: 'id', title: 'ID', hidden: true },
|
|
{ field: 'readeruser__name', title: '查看人姓名', width: 100 },
|
|
{ field: 'readertime', title: '查阅时间', width: 100 },
|
|
|
|
]]
|
|
});
|
|
|
|
|
|
</script> |