|
|
@@ -97,7 +97,7 @@
|
|
|
¥{{ orderInfo.remainDebtPrice ? parseFloat(orderInfo.remainDebtPrice) : 0 }}
|
|
|
<text v-if="Number(orderInfo.remainDebtPrice)<=0" style="margin-left:20upx;">已结清</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>
|
|
|
+ <button class="admin-button-com mini-btn" v-if="Number(orderInfo.remainDebtPrice)>0" @click="clear(orderInfo)" style="position:absolute;right:0upx;top:0;border:1upx solid red;color:red;">结清</button>
|
|
|
</view>
|
|
|
|
|
|
<view class="msg-list">
|
|
|
@@ -157,16 +157,15 @@
|
|
|
<view class="label">优惠:</view>
|
|
|
<view class="value">-¥{{ orderInfo.discountAmount ? parseFloat(orderInfo.discountAmount) : 0 }}</view>
|
|
|
</view>
|
|
|
- <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0">
|
|
|
+ <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0" style="position:relative;">
|
|
|
<view class="label">退款:</view>
|
|
|
<view class="value" style="color:red;font-weight:bold;">-¥{{ orderInfo.tkPrice ? parseFloat(orderInfo.tkPrice) : 0 }}</view>
|
|
|
- <view style="color: #3385ff;margin-left:50upx;" @click="pageTo({url: '/admin/order/refundList',query: {orderSn: orderInfo.orderSn}})">退款记录</view>
|
|
|
+ <button class="admin-button-com mini-btn" @click="pageTo({url: '/admin/order/refundList',query: {orderSn: orderInfo.orderSn}})" style="position:absolute;right:0upx;top:0upx;">退款记录</button>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
<view class="label">实际:</view>
|
|
|
<view class="value">¥{{ orderInfo.realPrice ? parseFloat(orderInfo.realPrice) : 0 }}</view>
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|