Commit eec4876f authored by Mac's avatar Mac

1

parent f4dcfea4
...@@ -238,6 +238,8 @@ ...@@ -238,6 +238,8 @@
position: relative; position: relative;
border-radius: 6px; border-radius: 6px;
overflow: hidden; overflow: hidden;
display: flex;
flex-direction: column;
} }
.storeList .img{ .storeList .img{
width: 100%; width: 100%;
......
...@@ -609,7 +609,7 @@ ...@@ -609,7 +609,7 @@
let ProductList = []; let ProductList = [];
let obj = { let obj = {
GoodsClassId: this.goods.categoryIdList, GoodsClassId: this.goods.categoryIdList,
GoodsPrice: this.goods.price*this.value, GoodsPrice: (this.goods && this.goods.price ? this.goods.price:0)*this.value,
ProductId: this.goods.id, ProductId: this.goods.id,
}; };
......
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