diff --git a/page_goods/orderDetail/orderDetail.vue b/page_goods/orderDetail/orderDetail.vue
index c41d2f5..e62360b 100644
--- a/page_goods/orderDetail/orderDetail.vue
+++ b/page_goods/orderDetail/orderDetail.vue
@@ -428,6 +428,27 @@
+
+
+ 已付金额
+
+
+ {{ $lang('common.currencySymbol') }}
+ {{ (orderData && orderData.pay) ? orderData.pay.received_money : '' }}
+
+
+
+
+
+ 未付金额
+
+
+ {{ $lang('common.currencySymbol') }}
+ {{ (orderData && orderData.pay) ? orderData.pay.pay_money : '0.00' }}
+
+
+
+
运费
@@ -535,18 +556,17 @@
- 实付金额:
+ 总计金额:
{{ $lang('common.currencySymbol') }}
- {{ orderData.order_money }}
- {{ orderData.sales_money }}
+ {{ (orderData && orderData.pay) ? orderData.pay.total_money : '0.00' }}
+
+
-
+
@@ -559,6 +579,12 @@
@click="operation(operationItem.action)">
{{ operationItem.title }}
+
+
+ 支付
+
{
+ _actionArr.push(v.action)
+ })
+
+ this.isOrderPayShow = false;
+ //判断"orderPay"在不在_actionArr中
+ if (!_actionArr.includes('orderPay') && res.data.pay.pay_status == 0) {
+ this.isOrderPayShow = true
+ }
+
+
+
+
+ // this.isOrderPayShow = false;
+ // this.orderData.action.foreach((v)=>{
+ // console.log('vvv',v.action)
+ // })
+
let refund_order_goods_ids = [];
this.orderData.order_goods.forEach(v => {