Authored by 邱骏

修改调价样式

... ... @@ -8,7 +8,7 @@
</p>
<p class="price-item">
<span>当前最高求购价:</span>
<span>¥{{ goodsInfo.bidHighestPrice }}</span>
<span>¥{{ goodsInfo.bidHighestPrice.toFixed(2) }}</span>
</p>
<p v-if="goodsInfo.leastPrice" class="price-item">
<span>最低现货价:</span>
... ...
... ... @@ -176,6 +176,7 @@ export default {
}
case orderActionsMap.CHANGE_BID_PRICE.name: {
console.log(goodsInfo);
const { goodPrice } = goodsInfo;
const computePriceInfo = await this.computeChangePrice({
orderCode,
... ...
... ... @@ -143,6 +143,8 @@ export default function() {
orderCode,
});
console.log(res);
return res.code === 200 ? res.data : null;
},
... ... @@ -156,6 +158,8 @@ export default function() {
},
);
console.log(res);
return res.code === 200 ? res.data : res.message || '';
},
... ...