fix
wangpengfei
2023-07-27 c59053ef98942526930480345636ad3bb7b55596
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),
   })
}
}