zhangqian
2023-08-03 4df9a15d20b9e4ef25cd795a583e64c61943c915
api/v1/quotation.go
@@ -159,7 +159,7 @@
      return
   }
   quotations, errCode := quotationService.GetQuotationList(params.Page, params.PageSize, params.Keyword)
   quotations, total, errCode := quotationService.GetQuotationList(params.Page, params.PageSize, params.Keyword)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return
@@ -167,6 +167,6 @@
   ctx.OkWithDetailed(response.QuotationResponse{
      List: quotations,
      Count: len(quotations),
      Count: int(total),
   })
}
}