56 lines
2.2 KiB
HTML
Executable File
56 lines
2.2 KiB
HTML
Executable File
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>回收站</title>
|
|
<link rel="stylesheet" href="../commons/css/awsui.css">
|
|
<link rel="stylesheet" href="../commons/js/jquery/themes/default/public.css">
|
|
<link rel="stylesheet" href="../apps/com.actionsoft.apps.coe.pal/css/pal.ws.portal.css"/>
|
|
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
|
|
<script type="text/javascript" src="../commons/js/public.js"></script>
|
|
<script type="text/javascript" src="../commons/js/awsui.js"></script>
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/awsui.pagination.js"></script>
|
|
<script type="text/javascript" src="../apps/com.actionsoft.apps.coe.pal/js/pal.recycle.js"></script>
|
|
|
|
<script>
|
|
var sid = "<#sid>";
|
|
var totalNum = <#totalNum>;
|
|
</script>
|
|
</head>
|
|
<body style="padding: 0 20px; background-color: rgb(248, 248, 248);">
|
|
<div id="bar" style="padding: 20px 20px 10px;">
|
|
<button id="clearButton" type="button" class="button red" onclick="deleteAllModes();">清空回收站</button>
|
|
<span id="buttons" class="button-group" style="vertical-align: bottom; display: none;">
|
|
<button type="button" class="button" onclick="deleteModelsOnButton();">删除</button>
|
|
<button type="button" class="button" onclick="restoreModelsOnButton();">还原</button>
|
|
</span>
|
|
</div>
|
|
<div class="layout_list">
|
|
<table class="awsui-ux">
|
|
<tr>
|
|
<td>
|
|
<table id="content_table" class="table table-thin table-hover layout_table" style="box-shadow: 0 0 15px rgb(221, 221, 221);">
|
|
<thead>
|
|
<tr style="background-color: #F5F5F5;">
|
|
<th style="width: 3%;">
|
|
<input type="checkbox" class="awsui-checkbox check-all" id="all1" group="all1" callback="checkCallback(this);">
|
|
</th>
|
|
<th style='width:30%;'>流程名称</th>
|
|
<th style='width:20%;'>资产库名称</th>
|
|
<th style='width:15%;'>删除时间</th>
|
|
<th style='width:15%;'>用户</th>
|
|
<th style='width:20%;'>更多</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table></td>
|
|
</tr>
|
|
</table>
|
|
<div id="Pagination" style="padding-left: 12px;"></div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|