- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
98 lines
4.4 KiB
Plaintext
98 lines
4.4 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="applytitle" width="50%">任务名称</td>
|
|
<td sortfield="username" width="100px">申请人</td>
|
|
<td sortfield="applytime" width="100px">申请时间</td>
|
|
<td sortfield="taskstatus" 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.applytitle}}" href="javascript:void(0);"
|
|
onclick="viewRow('{{value.taskid}}',0);">{{value.applytitle}}</a></td>
|
|
<td>{{value.username}}({{value.usercode}})</td>
|
|
<td>{{value.applytime |dateTimeFilter}}</td>
|
|
<td>{{value.taskstatus}}</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="grid_pagination"></div>
|
|
</div>
|
|
</div>
|
|
<div ui-config="id:'modifyPass',fontIcon:{ icon:'fa-check-square-o',color:'#000'},title:'已完成任务'">
|
|
<div id="grid1">
|
|
<div class="grid_toolbar">
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td style="width:100%;">
|
|
</td>
|
|
<td>
|
|
<input id="searchbox1" 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="applytitle" width="50%">任务名称</td>
|
|
<td sortfield="username" width="100px">申请人</td>
|
|
<td sortfield="applytime" width="100px">申请时间</td>
|
|
<td sortfield="taskstatus" width="100px">审批节点</td>
|
|
<td sortfield="finishtime" width="100px">审批时间</td>
|
|
<td sortfield="applystatus" 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.applytitle}}" href="javascript:void(0);"
|
|
onclick="viewRow('{{value.taskid}}',1);">{{value.applytitle}}</a></td>
|
|
<td>{{value.username}}({{value.usercode}})</td>
|
|
<td>{{value.applytime |dateTimeFilter}}</td>
|
|
<td>{{value.taskstatus}}</td>
|
|
<td>{{value.finishtime |dateTimeFilter}}</td>
|
|
<td><label class="label label-{{if value.isfinish==0}}primary{{else}}success{{/if}}">{{if value.isfinish==0}}{{value.applystatus}}{{else}}已闭环{{/if}}</label></td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="grid_pagination"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<#include "myTask_view.ftl">
|
|
<#include "../layout/ref_script.ftl">
|
|
<script type="text/javascript" src="${asset_jspath}/jcdp/task/myTask.js"></script>
|
|
</body>
|
|
</html> |