|
@@ -145,7 +145,8 @@ func GetReportList(condition string, pars []interface{}, companyType string, sta
|
|
|
if condition != "" {
|
|
|
sql += condition
|
|
|
}
|
|
|
- sql += `ORDER BY FIELD(state,3,1,2,4), modify_time DESC LIMIT ?,?`
|
|
|
+ // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
|
|
|
+ sql += `ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
|
|
|
_, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
|
|
|
return
|
|
|
}
|