|
|
@@ -84,10 +84,13 @@
|
|
|
<view class="label">订金:</view>
|
|
|
<view class="value">¥{{dj}}</view>
|
|
|
</view>
|
|
|
- <view class="msg-list" v-if="Number(orderInfo.debtPrice)>0">
|
|
|
+ <view class="msg-list" v-if="Number(orderInfo.debtPrice)>0" style="position:relative;">
|
|
|
<view class="label" style="color:red;">尾款:</view>
|
|
|
- <view class="value" style="color:red;font-weight:bold;">¥{{ orderInfo.remainDebtPrice ? parseFloat(orderInfo.remainDebtPrice) : 0 }}</view>
|
|
|
- <button class="admin-button-com mini-btn" v-if="Number(orderInfo.remainDebtPrice)>0" @click="clear(orderInfo)" style="position:relative;left:445upx;top:0">结清</button>
|
|
|
+ <view class="value" style="color:red;font-weight:bold;">
|
|
|
+ ¥{{ orderInfo.debtPrice ? parseFloat(orderInfo.debtPrice) : 0 }}
|
|
|
+ <text v-if="Number(orderInfo.remainDebtPrice)<=0" style="margin-left:10upx;">已结清</text>
|
|
|
+ </view>
|
|
|
+ <button class="admin-button-com mini-btn" v-if="Number(orderInfo.remainDebtPrice)>0" @click="clear(orderInfo)" style="position:absolute;right:0upx;top:0">结清</button>
|
|
|
</view>
|
|
|
|
|
|
<view class="msg-list">
|