[日志审计]增加删除、清理和别的一些设置

This commit is contained in:
刘祥超
2020-12-02 20:31:42 +08:00
parent 86fef9153a
commit 81681f415d
28 changed files with 485 additions and 78 deletions

View File

@@ -18,4 +18,15 @@ Tea.context(function () {
window.location = "/log/exportExcel?dayFrom=" + that.dayFrom + "&dayTo=" + that.dayTo + "&keyword=" + that.keyword
})
}
this.deleteLog = function (logId) {
let that = this
teaweb.confirm("确定要删除此日志吗?", function () {
that.$post(".delete")
.params({
logId: logId
})
.refresh()
})
}
})