login apii

This commit is contained in:
董海洋
2026-06-04 10:33:58 +08:00
parent c6a877ab28
commit 974b72e5e2
3 changed files with 298 additions and 1 deletions
+5
View File
@@ -58,6 +58,11 @@ function processGoodsImages(goods) {
if (!goods) return goods;
const processItem = (item) => {
// 处理单个image字段
if (item.image) {
item.image = toFullUrl(item.image);
}
// 处理images字段(JSON数组格式)
if (item.images) {
try {
const images = JSON.parse(item.images);