|
|
@@ -15,6 +15,9 @@
|
|
|
<view :class="[Number(info.debtPrice)>Number(info.remainDebtPrice) ? 'price-del' : 'price']">¥{{ parseFloat(info.debtPrice || info.remainDebtPrice) }}</view>
|
|
|
<view class="price" style="border:1upx solid #67a0f7;border-radius:10upx;font-weight:normal;color:#3385FF;font-size:32upx;width:180upx;height:80upx;justify-content:center;" @click.stop="goToDetai(info)">查看明细</view>
|
|
|
</view>
|
|
|
+ <view class="item-row" v-if="!$util.isEmpty(info.remark)">
|
|
|
+ <view class="remark">{{ info.remark }}</view>
|
|
|
+ </view>
|
|
|
<view class="item-row" v-if="Number(info.debtPrice)>Number(info.remainDebtPrice)">
|
|
|
<view class="price" style="color:red;">已清 ¥{{ info.hasPayDebt }},剩余待结 ¥{{ parseFloat(info.remainDebtPrice) }}</view>
|
|
|
</view>
|
|
|
@@ -99,6 +102,11 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #666666;
|
|
|
}
|
|
|
+ .remark {
|
|
|
+ font-size:32upx;
|
|
|
+ font-weight:bold;
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
.price {
|
|
|
display: flex;
|
|
|
align-items: center;
|