|
@@ -2,8 +2,6 @@ package english_report
|
|
|
|
|
|
import (
|
|
|
"encoding/json"
|
|
|
- "fmt"
|
|
|
- "github.com/rdlucklib/rdluck_tools/paging"
|
|
|
"eta/eta_api/controllers"
|
|
|
"eta/eta_api/models"
|
|
|
"eta/eta_api/models/company"
|
|
@@ -11,6 +9,8 @@ import (
|
|
|
"eta/eta_api/services"
|
|
|
"eta/eta_api/services/alarm_msg"
|
|
|
"eta/eta_api/utils"
|
|
|
+ "fmt"
|
|
|
+ "github.com/rdlucklib/rdluck_tools/paging"
|
|
|
"html"
|
|
|
"strconv"
|
|
|
"strings"
|
|
@@ -338,7 +338,7 @@ func (this *EnglishReportController) ListReport() {
|
|
|
var pars []interface{}
|
|
|
|
|
|
if keyWord != "" {
|
|
|
- condition += ` AND (title LIKE '%` + keyWord + `%' OR author LIKE '%` + keyWord + `%' ) `
|
|
|
+ condition += ` AND (title LIKE '%` + keyWord + `%' OR admin_real_name LIKE '%` + keyWord + `%' ) `
|
|
|
}
|
|
|
|
|
|
if timeType == "" {
|