[日志审计]区分用户操作日志和管理员操作日志

This commit is contained in:
刘祥超
2020-12-23 10:42:41 +08:00
parent 4fa375ee6f
commit 672bf54411
4 changed files with 41 additions and 22 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
window.location = "/log/exportExcel?dayFrom=" + that.dayFrom + "&dayTo=" + that.dayTo + "&keyword=" + that.keyword + "&userType=" + that.userType
})
}