feat: 增加按级别查询日志

This commit is contained in:
augushong
2025-10-10 22:33:28 +08:00
parent 63b1cb472a
commit 247bfd1966
3 changed files with 20 additions and 1 deletions

View File

@@ -52,6 +52,12 @@ $(function () {
op.action_name = '=';
}
var level = $('#level-select').val();
if (level) {
filter.level = level;
op.level = '=';
}
if (Object.keys(filter).length > 0) {
requestData.filter = JSON.stringify(filter);
requestData.op = JSON.stringify(op);