mirror of
https://github.com/yangzongzhuan/RuoYi.git
synced 2025-12-20 09:17:10 +00:00
23 lines
979 B
HTML
23 lines
979 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
|
||
|
|
xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<head th:include="include :: header"></head>
|
||
|
|
<body class="gray-bg">
|
||
|
|
<div class="wrapper wrapper-content">
|
||
|
|
<div class="btn-group hidden-xs" id="tableToolbar" role="group">
|
||
|
|
<button type="button" class="btn btn-outline btn-default" th:onclick="'javascript:batchRemove()'" shiro:hasPermission="monitor:job:batchRemove">
|
||
|
|
<i class="glyphicon glyphicon-trash"></i>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
<table class="bootstrap-table" data-mobile-responsive="true"
|
||
|
|
data-sort-name="create_time" data-sort-order="asc">
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
<div th:include="include :: footer"></div>
|
||
|
|
<script type="text/javascript" src="/ruoyi/monitor/job/jobLog.js"></script>
|
||
|
|
<script th:inline="javascript" type="text/javascript">
|
||
|
|
var removeFlag = [[${@permissionService.hasPermi('monitor:job:remove')}]];
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|