From 0f96eaac30a2d5dce217ada28c6a3b06d4d8dd3c Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Wed, 12 Jul 2023 15:27:09 +0800 Subject: [PATCH] fix --- server/product/internal/logic/getproductinfologic.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/product/internal/logic/getproductinfologic.go b/server/product/internal/logic/getproductinfologic.go index c3108ac3..caaa7c21 100644 --- a/server/product/internal/logic/getproductinfologic.go +++ b/server/product/internal/logic/getproductinfologic.go @@ -123,14 +123,11 @@ func (l *GetProductInfoLogic) GetProductInfo(req *types.GetProductInfoReq, useri for _, v := range sizeList { model3dInfo, ok := mapModel3dWithSizeIdIndex[v.Id] if !ok { - fmt.Println("没有模型:", v.Id) continue } if _, ok = mapTemplateModelId[model3dInfo.Id]; !ok { - fmt.Println("没有模板:", v.Id) continue } - fmt.Println("剩下的:", v.Id) var title types.SizeTitle if err = json.Unmarshal([]byte(*v.Title), &title); err != nil { logx.Error(err)