sgj
2026-01-26 bc427c64d8c9066eda7a817c7c7926954e39abb0
fzzy-igdss-web/src/main/resources/templates/monitor/operlog/operlog.html
@@ -17,18 +17,33 @@
                     <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">
@@ -38,8 +53,10 @@
                        <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>&nbsp;搜索</a>
                        <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
                            <a class="btn btn-primary btn-rounded btn-sm" onclick="searchPre()"><i
                                    class="fa fa-search"></i>&nbsp;搜索</a>
                            <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i
                                    class="fa fa-refresh"></i>&nbsp;重置</a>
                     </li>
                  </ul>
               </div>
@@ -47,7 +64,8 @@
         </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">
@@ -69,6 +87,8 @@
   <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() {
@@ -109,6 +129,14 @@
                  }
              },
              {
                    field: 'bizType',
                    title: '业务类型',
                    align: 'center',
                    formatter: function (value, row, index) {
                        return $.table.selectDictLabel(bizTypeDatas, value);
                    }
                },
                {
                  field: 'operName',
                  title: '操作人员',
                  sortable: true