|
|
|
@ -13,6 +13,7 @@ import (
|
|
|
|
|
"recook/internal/v2/model/special_sale"
|
|
|
|
|
"recook/tools"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
@ -374,7 +375,7 @@ func QueryPromotionGoodsList(c *gin.Context) {
|
|
|
|
|
|
|
|
|
|
gList = append(gList, promotionGoods{
|
|
|
|
|
GoodsID: gi.ID,
|
|
|
|
|
GoodsName: gi.GoodsName,
|
|
|
|
|
GoodsName: strings.Join([]string{gi.GoodsName, strings.Replace(goodsSku.Name, "+", " ", -1)}, " "),
|
|
|
|
|
BrandName: gb.Name + "品牌馆",
|
|
|
|
|
BrandImg: gb.LogoURL,
|
|
|
|
|
BrandId: gb.ID,
|
|
|
|
|