|
@@ -119,10 +119,6 @@
|
|
|
<text v-if="Number(orderInfo.mainPay)>0 && Number(orderInfo.cash)>0">(现金付了¥{{ orderInfo.cash ? parseFloat(orderInfo.cash) : 0 }})</text>
|
|
<text v-if="Number(orderInfo.mainPay)>0 && Number(orderInfo.cash)>0">(现金付了¥{{ orderInfo.cash ? parseFloat(orderInfo.cash) : 0 }})</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="msg-list" v-if="Number(dj)>0 && Number(orderInfo.remainDebtPrice)>0">
|
|
|
|
|
- <view class="label">订金:</view>
|
|
|
|
|
- <view class="value">¥{{dj}}</view>
|
|
|
|
|
- </view>
|
|
|
|
|
<view class="msg-list" v-if="Number(orderInfo.remainDebtPrice)>0" style="position:relative;">
|
|
<view class="msg-list" v-if="Number(orderInfo.remainDebtPrice)>0" style="position:relative;">
|
|
|
<view class="label">欠款:</view>
|
|
<view class="label">欠款:</view>
|
|
|
<view class="value" style="color:red;font-weight:bold;">
|
|
<view class="value" style="color:red;font-weight:bold;">
|
|
@@ -229,7 +225,6 @@ export default {
|
|
|
return {
|
|
return {
|
|
|
constant: this.$constant,
|
|
constant: this.$constant,
|
|
|
orderInfo: {},
|
|
orderInfo: {},
|
|
|
- dj:0,
|
|
|
|
|
refreshPage:0
|
|
refreshPage:0
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
@@ -337,8 +332,6 @@ export default {
|
|
|
return getDetB({ id: this.option.id }).then(res => {
|
|
return getDetB({ id: this.option.id }).then(res => {
|
|
|
this.orderInfo = res.data;
|
|
this.orderInfo = res.data;
|
|
|
this.orderInfo.deadline = commonUtil.getFormatDate(this.orderInfo.deadline,'MM-dd hh:mm')
|
|
this.orderInfo.deadline = commonUtil.getFormatDate(this.orderInfo.deadline,'MM-dd hh:mm')
|
|
|
- this.dj = this.orderInfo.actPrice - this.orderInfo.remainDebtPrice
|
|
|
|
|
- this.dj = parseFloat(this.dj.toFixed(2))
|
|
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|