|
@@ -866,6 +866,7 @@ func (this *ReportController) SaveReportContent() {
|
|
// @Param ClassifyIdFirst query int true "一级分类id"
|
|
// @Param ClassifyIdFirst query int true "一级分类id"
|
|
// @Param ClassifyIdSecond query int true "二级分类id"
|
|
// @Param ClassifyIdSecond query int true "二级分类id"
|
|
// @Param ClassifyIdThird query int true "三级分类id"
|
|
// @Param ClassifyIdThird query int true "三级分类id"
|
|
|
|
+// @Param State query string true "报告状态,多状态用英文,隔开"
|
|
// @Success 200 {object} models.ReportListResp
|
|
// @Success 200 {object} models.ReportListResp
|
|
// @router /list/authorized [get]
|
|
// @router /list/authorized [get]
|
|
func (this *ReportController) AuthorizedListReport() {
|
|
func (this *ReportController) AuthorizedListReport() {
|
|
@@ -880,6 +881,7 @@ func (this *ReportController) AuthorizedListReport() {
|
|
classifyIdFirst, _ := this.GetInt("ClassifyIdFirst", 0)
|
|
classifyIdFirst, _ := this.GetInt("ClassifyIdFirst", 0)
|
|
classifyIdSecond, _ := this.GetInt("ClassifyIdSecond", 0)
|
|
classifyIdSecond, _ := this.GetInt("ClassifyIdSecond", 0)
|
|
classifyIdThird, _ := this.GetInt("ClassifyIdThird", 0)
|
|
classifyIdThird, _ := this.GetInt("ClassifyIdThird", 0)
|
|
|
|
+ stateStr := this.GetString("State")
|
|
|
|
|
|
var startSize int
|
|
var startSize int
|
|
if pageSize <= 0 {
|
|
if pageSize <= 0 {
|
|
@@ -940,6 +942,12 @@ func (this *ReportController) AuthorizedListReport() {
|
|
pars = utils.GetLikeKeywordPars(pars, keyword, 1)
|
|
pars = utils.GetLikeKeywordPars(pars, keyword, 1)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if stateStr != `` {
|
|
|
|
+ stateStrList := strings.Split(stateStr, ",")
|
|
|
|
+ condition += ` AND a.state in (` + utils.GetOrmInReplace(len(stateStrList)) + `) `
|
|
|
|
+ pars = append(pars, stateStrList)
|
|
|
|
+ }
|
|
|
|
+
|
|
var err error
|
|
var err error
|
|
var total int
|
|
var total int
|
|
|
|
|