Commit cbba0fca by 李嘉林

twoB展示规格

parent cb444a1e
...@@ -159,6 +159,13 @@ export default { ...@@ -159,6 +159,13 @@ export default {
item.discountPrice = item.discountPrice - 0; item.discountPrice = item.discountPrice - 0;
item.goodsImgUrl = DFSImg(item.goodsImgUrl); item.goodsImgUrl = DFSImg(item.goodsImgUrl);
item.purchased = 0; item.purchased = 0;
let specificationsStr = "";
if (item.specifications) {
specificationsStr = item.specifications.map((item) => {
return item.specificationValue
})
item.specificationsStr = specificationsStr.join(",")
}
}); });
// 查询已加购数量 // 查询已加购数量
this.query_goods_cart_info(); this.query_goods_cart_info();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment