diff --git a/server/product/internal/logic/getpricebypidlogic.go b/server/product/internal/logic/getpricebypidlogic.go
index 3cdc48d2..6544c5c9 100644
--- a/server/product/internal/logic/getpricebypidlogic.go
+++ b/server/product/internal/logic/getpricebypidlogic.go
@@ -8,6 +8,7 @@ import (
 	"fusenapi/utils/format"
 	"fusenapi/utils/step_price"
 	"gorm.io/gorm"
+	"sort"
 	"strings"
 
 	"context"
@@ -57,38 +58,57 @@ func (l *GetPriceByPidLogic) GetPriceByPid(req *types.GetPriceByPidReq, userinfo
 	}
 	//处理价格信息
 	mapRsp := make(map[string]*types.GetPriceByPidRsp)
-	for _, price := range priceList {
-		stepNumSlice, err := format.StrSlicToIntSlice(strings.Split(*price.StepNum, ","))
+	for _, priceInfo := range priceList {
+		stepNumSlice, err := format.StrSlicToIntSlice(strings.Split(*priceInfo.StepNum, ","))
 		if err != nil {
-			return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("failed to parse step num,price_id=%d", price.Id))
+			return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("failed to parse step num,price_id=%d", priceInfo.Id))
 		}
-		stepPriceSlice, err := format.StrSlicToIntSlice(strings.Split(*price.StepPrice, ","))
+		stepPriceSlice, err := format.StrSlicToIntSlice(strings.Split(*priceInfo.StepPrice, ","))
 		if err != nil {
-			return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("failed to parse step price,id = %d", price.Id))
+			return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("failed to parse step price,id = %d", priceInfo.Id))
 		}
 		lenStepNum := len(stepNumSlice)
+		lenStepPrice := len(stepPriceSlice)
 		itemList := make([]types.PriceItem, 0, 10)
-		for *price.MinBuyNum < (int64(stepNumSlice[lenStepNum-1]) + 5) {
+		for *priceInfo.MinBuyNum < (int64(stepNumSlice[lenStepNum-1]) + 5) {
 			itemList = append(itemList, types.PriceItem{
-				Num:      *price.MinBuyNum,
-				TotalNum: (*price.MinBuyNum) * (*price.EachBoxNum),
-				Price:    step_price.GetCentStepPrice(int(*price.MinBuyNum), stepNumSlice, stepPriceSlice),
+				Num:      *priceInfo.MinBuyNum,
+				TotalNum: (*priceInfo.MinBuyNum) * (*priceInfo.EachBoxNum),
+				Price:    step_price.GetCentStepPrice(int(*priceInfo.MinBuyNum), stepNumSlice, stepPriceSlice),
 			})
-			*price.MinBuyNum++
+			*priceInfo.MinBuyNum++
 		}
-		minPrice := float64(stepPriceSlice[len(stepPriceSlice)-1]) / 100
-		maxPrice := float64(stepPriceSlice[0]) / 100
-		mapKey := l.getSizePriceMapKey(*price.SizeId)
-		if _, ok := mapRsp[mapKey]; ok {
-			mapRsp[mapKey].Items = append(mapRsp[mapKey].Items, itemList...)
-			mapRsp[mapKey].MinPrice = minPrice
-			mapRsp[mapKey].MaxPrice = maxPrice
-		} else {
-			mapRsp[mapKey] = &types.GetPriceByPidRsp{
-				Items:    itemList,
-				MinPrice: minPrice,
-				MaxPrice: maxPrice,
+		stepListRsp := make([]types.StepPrice, 0, lenStepNum)
+		for numKey, stepNum := range stepNumSlice {
+			//先取最后一个
+			tmpPrice := float64(stepPriceSlice[lenStepPrice-1]) / 100
+			//如果同下标下面有价格
+			if numKey < lenStepPrice {
+				tmpPrice = float64(stepPriceSlice[numKey]) / 100
 			}
+			num := int64(stepNum) * (*priceInfo.EachBoxNum)
+			rangeNum := fmt.Sprintf("%dPCS", num)
+			//不是最后一个
+			if numKey < lenStepNum-1 {
+				nextNum := int64(stepNumSlice[numKey+1]) * (*priceInfo.EachBoxNum)
+				rangeNum = fmt.Sprintf("%d-%dPCS", num, nextNum-1)
+			}
+			stepListRsp = append(stepListRsp, types.StepPrice{
+				Range: rangeNum,
+				Price: tmpPrice,
+			})
+
+		}
+		//排序(必须放在其他逻辑之后)
+		sort.Ints(stepPriceSlice)
+		minPrice := float64(stepPriceSlice[0]) / 100
+		maxPrice := float64(stepPriceSlice[len(stepPriceSlice)-1]) / 100
+		mapKey := l.getSizePriceMapKey(*priceInfo.SizeId)
+		mapRsp[mapKey] = &types.GetPriceByPidRsp{
+			Items:     itemList,
+			MinPrice:  minPrice,
+			MaxPrice:  maxPrice,
+			StepPrice: stepListRsp,
 		}
 	}
 	return resp.SetStatusWithMessage(basic.CodeOK, "success", mapRsp)
diff --git a/server/product/internal/types/types.go b/server/product/internal/types/types.go
index fa3386d6..23eebfd5 100644
--- a/server/product/internal/types/types.go
+++ b/server/product/internal/types/types.go
@@ -306,9 +306,15 @@ type GetPriceByPidReq struct {
 }
 
 type GetPriceByPidRsp struct {
-	Items    []PriceItem `json:"items"`
-	MinPrice float64     `json:"min_price"`
-	MaxPrice float64     `json:"max_price"`
+	Items     []PriceItem `json:"items"`
+	MinPrice  float64     `json:"min_price"`
+	MaxPrice  float64     `json:"max_price"`
+	StepPrice []StepPrice `json:"step_price"`
+}
+
+type StepPrice struct {
+	Range string  `json:"range"`
+	Price float64 `json:"price"`
 }
 
 type PriceItem struct {
diff --git a/server_api/product.api b/server_api/product.api
index 23929596..a3c7b45e 100644
--- a/server_api/product.api
+++ b/server_api/product.api
@@ -354,9 +354,14 @@ type GetPriceByPidReq {
 	Pid string `form:"pid"`
 }
 type GetPriceByPidRsp {
-	Items    []PriceItem `json:"items"`
-	MinPrice float64     `json:"min_price"`
-	MaxPrice float64     `json:"max_price"`
+	Items     []PriceItem `json:"items"`
+	MinPrice  float64     `json:"min_price"`
+	MaxPrice  float64     `json:"max_price"`
+	StepPrice []StepPrice `json:"step_price"`
+}
+type StepPrice {
+	Range string  `json:"range"`
+	Price float64 `json:"price"`
 }
 type PriceItem {
 	Num      int64 `json:"num"`