| 文件名从 fzzy-igdss-web/src/main/resources/templates/patrol/patrol.html 修改 |
| | |
| | | </div> |
| | | |
| | | <div class="btn-group-sm" id="toolbar" role="group"> |
| | | <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="web:patrol:add"> |
| | | <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="web:security:patrol:add"> |
| | | <i class="fa fa-plus"></i> 鏂板 |
| | | </a> |
| | | <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="web:patrol:edit"> |
| | | <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="web:security:patrol:edit"> |
| | | <i class="fa fa-edit"></i> 淇敼 |
| | | </a> |
| | | <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="web:patrol:remove"> |
| | | <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="web:security:patrol:remove"> |
| | | <i class="fa fa-remove"></i> 鍒犻櫎 |
| | | </a> |
| | | <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="web:patrol:export"> |
| | | <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="web:security:patrol:export"> |
| | | <i class="fa fa-download"></i> 瀵煎嚭 |
| | | </a> |
| | | <a class="btn btn-success" onclick="openPatrolConf()" shiro:hasPermission="web:patrol:patrolConf:edit"> |
| | | <a class="btn btn-success" onclick="openPatrolConf()" shiro:hasPermission="web:security:patrol:patrolConf:edit"> |
| | | <i class="fa fa-plus"></i> 宸℃洿閰嶇疆 |
| | | </a> |
| | | </div> |
| | |
| | | <th:block th:include="include :: footer" /> |
| | | <th:block th:include="include :: select2-js" /> |
| | | <script th:inline="javascript"> |
| | | var editFlag = [[${@permission.hasPermi('web:patrol:edit')}]]; |
| | | var removeFlag = [[${@permission.hasPermi('web:patrol:remove')}]]; |
| | | var prefix = ctx + "patrol"; |
| | | var editFlag = [[${@permission.hasPermi('web:security:patrol:edit')}]]; |
| | | var removeFlag = [[${@permission.hasPermi('web:security:patrol:remove')}]]; |
| | | var prefix = ctx + "security/patrol"; |
| | | |
| | | $(function() { |
| | | |
| | |
| | | }); |
| | | |
| | | function openPatrolConf() { |
| | | var url = ctx + "patrol/patrolConf"; |
| | | var url = ctx + "security/patrol/patrolConf"; |
| | | $.modal.openTab("宸℃洿閰嶇疆", url); |
| | | } |
| | | |