Commit 23b30fea authored by malin's avatar malin

r

parent a331d981
......@@ -14,7 +14,7 @@
特惠价:<span class="fc-sys2">{{ cash }}</span>
</div>
<div class="fs-24" style="text-decoration: line-through">
原价:¥198
原价:¥{{ originalPrice }}
</div>
</div>
......@@ -174,6 +174,7 @@ export default {
minute: "00",
second: "00",
cash: 0,
originalPrice: "139",
babyInfo: {},
};
},
......@@ -231,7 +232,8 @@ export default {
}).then((res) => {
console.log("获取支付价格===", res);
// this.originalPrice = res.result.data.goodsList[0].originalPrice;
this.cash = res.result.data.goodsList[0].originalPrice;
this.cash = res.result.data.goodsList[0].cash;
this.originalPrice = res.result.data.goodsList[0].originalPrice;
});
},
......
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