This commit is contained in:
cdle 2021-08-16 12:54:00 +08:00
parent 8ccc9aa649
commit 3d5ec0a4b1

View File

@ -208,12 +208,15 @@ func Count() string {
if ck.CreateAt == dt {
tc++
}
// if ck.ScanedAt == dt {
// ts++
// }
// if ck.LoseAt == dt {
// tl++
// }
}
jps := []JdCookiePool{}
for _, jp := range jps {
if jp.CreateAt == dt {
ts++
}
if jp.LoseAt == dt {
tl++
}
}
return fmt.Sprintf("总数%d,有效%d,无效%d,今日失效%d,今日扫码%d,今日新增%d", zs, yx, wx, tc, ts, tl)
}