🐛 修复商品分享时,价格漏 / 100 的问题

This commit is contained in:
YunaiV
2024-01-20 18:07:16 +08:00
parent 20e6d0c4b9
commit 70fae5787b
+2 -2
View File
@@ -205,8 +205,8 @@
title: state.goodsInfo.name, // 商品标题
// image: sheep.$url.cdn(state.goodsInfo.image), // 商品主图
image: sheep.$url.cdn(state.goodsInfo.picUrl), // 商品主图
price: state.goodsInfo.price, // 商品价格
original_price: state.goodsInfo.original_price, // 商品原价
price: fen2yuan(state.goodsInfo.price), // 商品价格
original_price: fen2yuan(state.goodsInfo.maretPrice), // 商品原价
}, );
});