Commit 23b30fea authored by malin's avatar malin

r

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