|
@@ -199,10 +199,10 @@
|
|
|
<!-- 差价信息 -->
|
|
|
<view class="difference" v-if="reSubmitInfo">
|
|
|
<view class="difference-item" v-if="reSubmitInfo.orgRealPrice - reSubmitInfo.realPrice>0">
|
|
|
- <text>待退款:{{reSubmitInfo.diffPrice}}</text>
|
|
|
+ <text>待退款:{{ Math.abs(reSubmitInfo.diffPrice) }}</text>
|
|
|
</view>
|
|
|
<view class="difference-item" v-if="reSubmitInfo.orgRealPrice - reSubmitInfo.realPrice<=0">
|
|
|
- <text>待支付:{{reSubmitInfo.diffPrice}}</text>
|
|
|
+ <text>待支付:{{ reSubmitInfo.diffPrice }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|