增加部分访问日志条数10->20

This commit is contained in:
GoEdgeLab
2021-12-08 17:49:30 +08:00
parent 0adb3883f4
commit b338926d9d
3 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ func (this *IndexAction) RunGet(params struct {
if len(day) > 0 && regexp.MustCompile(`\d{4}-\d{2}-\d{2}`).MatchString(day) {
day = strings.ReplaceAll(day, "-", "")
size := int64(10)
size := int64(20)
this.Data["hasError"] = params.HasError

View File

@@ -47,7 +47,7 @@ func (this *HistoryAction) RunGet(params struct {
if len(day) > 0 && regexp.MustCompile(`\d{4}-\d{2}-\d{2}`).MatchString(day) {
day = strings.ReplaceAll(day, "-", "")
size := int64(10)
size := int64(20)
this.Data["hasError"] = params.HasError

View File

@@ -25,7 +25,7 @@ func (this *TodayAction) RunGet(params struct {
Ip string
Domain string
}) {
size := int64(10)
size := int64(20)
this.Data["path"] = this.Request.URL.Path
this.Data["hasError"] = params.HasError