diff --git a/business/jxstore/cms/job.go b/business/jxstore/cms/job.go index afb4d3f86..c55af500d 100644 --- a/business/jxstore/cms/job.go +++ b/business/jxstore/cms/job.go @@ -2071,7 +2071,7 @@ func GetUnionJobOrderInfo(ctx *jxcontext.Context, jobOrderID int) (getUnionJobOr func GetVendorMatters(ctx *jxcontext.Context, vendorID int, vendorCatID, keyword string, offset, pageSize, sortType int, listID string) (result *partner.MatterList, err error) { handler := partner.GetHandler(vendorID) - return handler.GetUnionMatterList(ctx, vendorCatID, keyword, offset/pageSize+1, pageSize, sortType, listID) + return handler.GetUnionMatterList(ctx, vendorCatID, keyword, offset, pageSize, sortType, listID) } func GetVendorMatterDetail(ctx *jxcontext.Context, vendorID int, goodsID string) (goodsDetail *partner.GoodsDetail, err error) {