diff --git a/controllers/jx_report.go b/controllers/jx_report.go index 5606dbc3a..a3be12b75 100644 --- a/controllers/jx_report.go +++ b/controllers/jx_report.go @@ -130,7 +130,7 @@ func (c *ReportController) GetManageState() { func (c *ReportController) GetStoreManageState() { c.callGetStoreManageState(func(params *tReportGetStoreManageStateParams) (retVal interface{}, errCode string, err error) { var storeIDs, brandIDs []int - if err = jxutils.Strings2Objs(params.StoreIDs, &storeIDs, params.BrandIDs, brandIDs); err == nil { + if err = jxutils.Strings2Objs(params.StoreIDs, &storeIDs, params.BrandIDs, &brandIDs); err == nil { retVal, err = report.GetStoreManageState(params.Ctx, storeIDs, brandIDs, params.VendorID, params.SortType, params.Offset, params.PageSize) } return retVal, "", err