增加全局访问日志

This commit is contained in:
刘祥超
2021-08-11 15:38:49 +08:00
parent 7afe1e0a30
commit ab7cdcd1b1
6 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
Tea.context(function () {
this.$delay(function () {
let that = this
teaweb.datepicker("day-input", function (day) {
that.day = day
})
})
let that = this
this.accessLogs.forEach(function (accessLog) {
if (typeof (that.regions[accessLog.remoteAddr]) == "string") {
accessLog.region = that.regions[accessLog.remoteAddr]
} else {
accessLog.region = ""
}
})
})