|
@@ -3199,7 +3199,8 @@ func (this *CompanyUserController) ViewReportList() {
|
|
|
} else {
|
|
|
lastViewTimeT = time.Now()
|
|
|
}
|
|
|
- lastViewTime = lastViewTimeT.Format(utils.FormatDateTime)
|
|
|
+ // 默认要把最新的记录列出来,所以往后加1s
|
|
|
+ lastViewTime = lastViewTimeT.Add(1 * time.Second).Format(utils.FormatDateTime)
|
|
|
}
|
|
|
// 权益
|
|
|
case 2: // ficc
|
|
@@ -3213,7 +3214,8 @@ func (this *CompanyUserController) ViewReportList() {
|
|
|
} else {
|
|
|
lastViewTimeT = time.Now()
|
|
|
}
|
|
|
- lastViewTime = lastViewTimeT.Format(utils.FormatDateTime)
|
|
|
+ // 默认要把最新的记录列出来,所以往后加1s
|
|
|
+ lastViewTime = lastViewTimeT.Add(1 * time.Second).Format(utils.FormatDateTime)
|
|
|
}
|
|
|
default:
|
|
|
if lastViewTimeT.IsZero() {
|