| | |
| | | <li> |
| | | <label>系统模块: </label><input type="text" name="title"/> |
| | | </li> |
| | | <li class="select-selectpicker"> |
| | | <label>业务类型: </label> |
| | | <select id="bizType" name="bizType" |
| | | class="selectpicker" data-none-selected-text="请选择"> |
| | | <option value="">所有</option> |
| | | <option th:each="dict : ${bizTypeDatas}" th:text="${dict.dictLabel}" |
| | | th:value="${dict.dictValue}"></option> |
| | | </select> |
| | | </li> |
| | | <li> |
| | | <label>操作人员: </label><input type="text" name="operName"/> |
| | | </li> |
| | | <li class="select-selectpicker"> |
| | | <label>操作类型: </label><select id="businessTypes" name="businessTypes" th:with="type=${@dict.getType('sys_oper_type')}" class="selectpicker" data-none-selected-text="请选择" multiple> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> |
| | | <label>操作类型: </label><select id="businessTypes" name="businessTypes" |
| | | th:with="type=${@dict.getType('sys_oper_type')}" |
| | | class="selectpicker" data-none-selected-text="请选择" |
| | | multiple> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" |
| | | th:value="${dict.dictValue}"></option> |
| | | </select> |
| | | </li> |
| | | <li> |
| | | <label>操作状态:</label><select name="status" th:with="type=${@dict.getType('sys_common_status')}"> |
| | | <label>操作状态:</label><select name="status" |
| | | th:with="type=${@dict.getType('sys_common_status')}"> |
| | | <option value="">所有</option> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" |
| | | th:value="${dict.dictValue}"></option> |
| | | </select> |
| | | </li> |
| | | <li class="select-time"> |
| | |
| | | <input type="text" class="time-input" id="endTime" placeholder="结束时间"/> |
| | | </li> |
| | | <li> |
| | | <a class="btn btn-primary btn-rounded btn-sm" onclick="searchPre()"><i class="fa fa-search"></i> 搜索</a> |
| | | <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i> 重置</a> |
| | | <a class="btn btn-primary btn-rounded btn-sm" onclick="searchPre()"><i |
| | | class="fa fa-search"></i> 搜索</a> |
| | | <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i |
| | | class="fa fa-refresh"></i> 重置</a> |
| | | </li> |
| | | </ul> |
| | | </div> |
| | |
| | | </div> |
| | | |
| | | <div class="btn-group-sm" id="toolbar" role="group"> |
| | | <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="monitor:operlog:remove"> |
| | | <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" |
| | | shiro:hasPermission="monitor:operlog:remove"> |
| | | <i class="fa fa-remove"></i> 删除 |
| | | </a> |
| | | <a class="btn btn-danger" onclick="$.operate.clean()" shiro:hasPermission="monitor:operlog:remove"> |
| | |
| | | <script th:inline="javascript"> |
| | | var detailFlag = [[${@permission.hasPermi('monitor:operlog:detail')}]]; |
| | | var datas = [[${@dict.getType('sys_oper_type')}]]; |
| | | var bizTypeDatas = [[${bizTypeDatas}]]; |
| | | |
| | | var prefix = ctx + "monitor/operlog"; |
| | | |
| | | $(function() { |
| | |
| | | } |
| | | }, |
| | | { |
| | | field: 'bizType', |
| | | title: '业务类型', |
| | | align: 'center', |
| | | formatter: function (value, row, index) { |
| | | return $.table.selectDictLabel(bizTypeDatas, value); |
| | | } |
| | | }, |
| | | { |
| | | field: 'operName', |
| | | title: '操作人员', |
| | | sortable: true |