审计日志列表增加级别筛选

This commit is contained in:
GoEdgeLab
2023-04-06 10:06:22 +08:00
parent 5daa0d6108
commit 5c6bfe50f4
5 changed files with 46 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ Tea.context(function () {
this.exportExcel = function () {
let that = this
teaweb.confirm("确定要将当前列表导出到Excel吗", function () {
window.location = "/log/exportExcel?dayFrom=" + that.dayFrom + "&dayTo=" + that.dayTo + "&keyword=" + that.keyword + "&userType=" + that.userType
window.location = "/log/exportExcel?dayFrom=" + that.dayFrom + "&dayTo=" + that.dayTo + "&keyword=" + that.keyword + "&userType=" + that.userType + '&level=' + that.level
})
}