From 9e5e4d7d274149bf1225063b4e85cb7f8849742b Mon Sep 17 00:00:00 2001 From: timerzz Date: Sun, 30 Mar 2025 21:29:26 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E4=B8=8D=E5=9C=A8=E5=B0=9D=E8=AF=95?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/coach-outlet/excel.go | 58 ++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/tools/coach-outlet/excel.go b/tools/coach-outlet/excel.go index 56769db..7ccadf8 100644 --- a/tools/coach-outlet/excel.go +++ b/tools/coach-outlet/excel.go @@ -158,7 +158,7 @@ func addRow(f *excelize.File, sheetName string, rowIndex int, article *v2.Articl // 填充数据 cells := []interface{}{ article.Name, - "", // 图片单元格留空,后面会添加图片 + article.Image, // 图片单元格留空,后面会添加图片 usProvider.Cost.OriginalPrice, usProvider.Cost.FinalPrice, caProvider.Cost.OriginalPrice, @@ -181,34 +181,34 @@ func addRow(f *excelize.File, sheetName string, rowIndex int, article *v2.Articl linkCell, _ := excelize.CoordinatesToCellName(1, rowIndex) _ = f.SetCellHyperLink(sheetName, linkCell, caProvider.Link, "External") - if len(article.Image) > 0 { - imgCell, _ := excelize.CoordinatesToCellName(2, rowIndex) - - // 下载图片 - imgData, err := downloadImage(article.Image) - if err != nil { - logrus.Warnf("下载图片失败 %s: %v", article.Image, err) - // 如果下载失败,至少显示URL - _ = f.SetCellValue(sheetName, imgCell, article.Image) - } else { - // 添加图片到Excel - if err = f.AddPictureFromBytes(sheetName, imgCell, &excelize.Picture{ - Extension: ".jpg", - File: imgData, - Format: &excelize.GraphicOptions{ - AutoFit: true, - ScaleX: 0.5, - ScaleY: 0.5, - Positioning: "oneCell", - }, - }); err != nil { - logrus.Warnf("添加图片到Excel失败: %v", err) - // 如果添加失败,显示URL - _ = f.SetCellValue(sheetName, imgCell, article.Image) - } - - } - } + //if len(article.Image) > 0 { + // imgCell, _ := excelize.CoordinatesToCellName(2, rowIndex) + // + // // 下载图片 + // imgData, err := downloadImage(article.Image) + // if err != nil { + // logrus.Warnf("下载图片失败 %s: %v", article.Image, err) + // // 如果下载失败,至少显示URL + // _ = f.SetCellValue(sheetName, imgCell, article.Image) + // } else { + // // 添加图片到Excel + // if err = f.AddPictureFromBytes(sheetName, imgCell, &excelize.Picture{ + // Extension: ".jpg", + // File: imgData, + // Format: &excelize.GraphicOptions{ + // AutoFit: true, + // ScaleX: 0.5, + // ScaleY: 0.5, + // Positioning: "oneCell", + // }, + // }); err != nil { + // logrus.Warnf("添加图片到Excel失败: %v", err) + // // 如果添加失败,显示URL + // _ = f.SetCellValue(sheetName, imgCell, article.Image) + // } + // + // } + //} return nil }