50 lines
1.9 KiB
Plaintext
50 lines
1.9 KiB
Plaintext
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<#include "../layout/ref_head.ftl">
|
||
|
|
<link rel="stylesheet" type="text/css" href="${asset_csspath}/sysMessage.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="tabForm" ui-config="autoFit:true,tabWidth:'90',headerWidth:'110',tabPosition:'left'">
|
||
|
|
<div ui-config="id:'base',fontIcon:{ icon:'fa-tasks',color:'#000'},title:'发起任务'">
|
||
|
|
<div id="grid">
|
||
|
|
<div class="grid_toolbar">
|
||
|
|
<table style="width:100%;">
|
||
|
|
<tr>
|
||
|
|
<td style="width:100%;">
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input id="searchbox" type="text">
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
<table class="grid_data">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll"/></td>
|
||
|
|
<td style="width: 28px;">序号</td>
|
||
|
|
<td sortfield="taskname" width="50%">任务名称</td>
|
||
|
|
<td sortfield="application" width="100px">任务类型</td>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr class="row{{i%2}}">
|
||
|
|
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
||
|
|
<td>{{i+1}}</td>
|
||
|
|
<td><a title="{{value.taskname}}" href="javascript:void(0);"
|
||
|
|
onclick="viewRow('{{value.id}}',0);">{{value.taskname}}</a></td>
|
||
|
|
<td>{{value.application}}</td>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
<div class="grid_pagination"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<#include "mylaunch_list.ftl">
|
||
|
|
<#include "../layout/ref_script.ftl">
|
||
|
|
<script type="text/javascript" src="${asset_jspath}/personalcenter/mylaunch.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|