|
@@ -65,7 +65,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view v-if="detailInfo.refund == 2" class="order-info_box">
|
|
<view v-if="detailInfo.refund == 2" class="order-info_box">
|
|
|
<view>退款金额:</view>
|
|
<view>退款金额:</view>
|
|
|
- <view style="color:red;font-weight:bold;font-size:30rpx;">{{detailInfo.tkPrice}}</view>
|
|
|
|
|
|
|
+ <view style="color:red;font-weight:bold;font-size:30rpx;">{{parseFloat(detailInfo.tkPrice)}}</view>
|
|
|
<view class="price" v-if="detailInfo.refund==2">
|
|
<view class="price" v-if="detailInfo.refund==2">
|
|
|
<button @click="pageTo({url: '/pagesOrder/refundMsg',query: {orderSn: detailInfo.orderSn}})" class="admin-button-com">退款明细</button>
|
|
<button @click="pageTo({url: '/pagesOrder/refundMsg',query: {orderSn: detailInfo.orderSn}})" class="admin-button-com">退款明细</button>
|
|
|
</view>
|
|
</view>
|
|
@@ -153,23 +153,23 @@
|
|
|
<div class="module-com input-line-wrap">
|
|
<div class="module-com input-line-wrap">
|
|
|
<tui-list-cell class="line-cell" v-if="detailInfo.sendCost > 0" :hover="false">
|
|
<tui-list-cell class="line-cell" v-if="detailInfo.sendCost > 0" :hover="false">
|
|
|
<div class="tui-title">运费</div>
|
|
<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>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">总金额</div>
|
|
<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>
|
|
|
<tui-list-cell v-if="detailInfo.discountAmount > 0" class="line-cell" :hover="false">
|
|
<tui-list-cell v-if="detailInfo.discountAmount > 0" class="line-cell" :hover="false">
|
|
|
<div class="tui-title"><text v-if="detailInfo.discountType == 4">红包</text><text v-else>优惠</text></div>
|
|
<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>
|
|
|
<tui-list-cell v-if="detailInfo.refundPrice > 0" class="line-cell" :hover="false">
|
|
<tui-list-cell v-if="detailInfo.refundPrice > 0" class="line-cell" :hover="false">
|
|
|
<div class="tui-title">退款金额</div>
|
|
<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>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">实际金额</div>
|
|
<div class="tui-title">实际金额</div>
|
|
|
- <div class="detail-price_box" style="font-size: 32rpx;">¥{{ detailInfo.realPrice}}</div>
|
|
|
|
|
|
|
+ <div class="detail-price_box" style="font-size: 32rpx;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
</div>
|
|
</div>
|
|
|
</view>
|
|
</view>
|