|
|
@@ -88,7 +88,7 @@
|
|
|
<view>欠款状态:</view>
|
|
|
<view>是</view>
|
|
|
<view class="price">
|
|
|
- <!-- <text v-if="detailInfo.debtAmount > 0" @click="goToSettle(detailInfo)" style="margin-right:38rpx;color:#3385FF;font-size:26rpx;">全部欠款</text> -->
|
|
|
+ <text v-if="detailInfo.debtAmount > 0" @click="goToSettle(detailInfo)" style="margin-right:38rpx;color:#3385FF;font-size:26rpx;">全部欠款</text>
|
|
|
<button @click="settleOrder(detailInfo.id,detailInfo.supplierId)" class="admin-button-com">结帐</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -160,23 +160,23 @@
|
|
|
<div class="module-com input-line-wrap">
|
|
|
<tui-list-cell class="line-cell" :hover="false" v-if="Number(detailInfo.sendCost)>0">
|
|
|
<div class="tui-title">运费</div>
|
|
|
- <div class="detail-price_box" style="font-size: 28rpx;">¥{{ detailInfo.sendCost }}</div>
|
|
|
+ <div class="detail-price_box" style="font-size: 28rpx;">¥{{ parseFloat(detailInfo.sendCost) }}</div>
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">总金额</div>
|
|
|
- <div class="detail-price_box" style="font-size: 28rpx;">¥{{ detailInfo.prePrice }}</div>
|
|
|
+ <div class="detail-price_box" style="font-size: 28rpx;">¥{{ parseFloat(detailInfo.prePrice) }}</div>
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false" v-if="detailInfo.discountAmount > 0">
|
|
|
<div class="tui-title"><text v-if="detailInfo.discountType == 4">红包</text><text v-else>优惠</text></div>
|
|
|
- <div class="detail-price_box red" style="font-size: 28rpx;">-¥{{ detailInfo.discountAmount}}</div>
|
|
|
+ <div class="detail-price_box red" style="font-size: 28rpx;">-¥{{ parseFloat(detailInfo.discountAmount)}}</div>
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false" v-if="detailInfo.refundPrice > 0">
|
|
|
<div class="tui-title">退款金额</div>
|
|
|
- <div class="detail-price_box red" style="font-size: 28rpx;">-¥{{ detailInfo.refundPrice}}</div>
|
|
|
+ <div class="detail-price_box red" style="font-size: 28rpx;">-¥{{ parseFloat(detailInfo.refundPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">实际金额</div>
|
|
|
- <div class="detail-price_box" style="font-size: 36rpx;">¥{{ detailInfo.realPrice}}</div>
|
|
|
+ <div class="detail-price_box" style="font-size: 28rpx;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
|
</div>
|
|
|
</view>
|
|
|
@@ -461,7 +461,7 @@ export default {
|
|
|
font-size: 24px;
|
|
|
.price {
|
|
|
font-weight: bold;
|
|
|
- font-size: 36px;
|
|
|
+ font-size: 30px;
|
|
|
}
|
|
|
}
|
|
|
}
|