49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
|
|
<div id="taskbar" style="padding: 4px;">
|
|
|
|
<div >
|
|
|
|
|
|
</div>
|
|
<div>
|
|
<a id="addtask" class="easyui-linkbutton" onclick="addcheckrw()" data-options="iconCls: 'fa-plus',plain:true">发布任务</a>
|
|
<a id="delprg" class="easyui-linkbutton" onclick="deltask()" data-options="iconCls: 'fa-trash',plain:true">删除</a>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<table id="tasktab" style="width:100%;height:100%;text-align: center;"></table>
|
|
<script>
|
|
$(function () {
|
|
|
|
})
|
|
|
|
$('#tasktab').datagrid({
|
|
url: 'api/checkproject?a=listall3',
|
|
rownumbers: true,
|
|
singleSelect: true,
|
|
striped: true,
|
|
fitColumns: true,
|
|
method: 'get',
|
|
pagination: 'true',
|
|
pageSize: 20,
|
|
border: false,
|
|
toolbar:'#taskbar',
|
|
columns: [[
|
|
{ field: 'id', title: 'ID', hidden: true },
|
|
{ field: 'checktaskname', title: '任务名称', width: 100 },
|
|
{ field: 'checktype__checktitle', title: '检查表', width: 100 },
|
|
{ field: 'checktime', title: '检查时间', width: 300 },
|
|
{ field: 'createuser__name', title: '创建人', width: 300 },
|
|
{ field: 'createdate', title: '创建时间', width: 300 },
|
|
|
|
|
|
|
|
]]
|
|
});
|
|
function addcheckrw(){
|
|
opendg('发布检查任务','html/addcheckrw')
|
|
}
|
|
|
|
|
|
</script> |