From d612694dd611057acb3e7151555ba1640f81eb67 Mon Sep 17 00:00:00 2001 From: xubinxcode Date: Sun, 18 Apr 2021 14:37:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../unishop/uniapp/uni-shop/pages/order/order.vue | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/addons/unishop/uniapp/uni-shop/pages/order/order.vue b/addons/unishop/uniapp/uni-shop/pages/order/order.vue index 1edc78a..3f94d85 100644 --- a/addons/unishop/uniapp/uni-shop/pages/order/order.vue +++ b/addons/unishop/uniapp/uni-shop/pages/order/order.vue @@ -34,9 +34,10 @@ - 共 - {{quantity(item.products)}} - 件商品 合计 + + + + total {{item.total_price}} (已优惠¥{{item.discount_price}}) @@ -351,28 +352,28 @@ stateTipColor = '#fa436a'; switch (+state) { case 0: - stateTip = '交易成功'; + stateTip = 'Completed'; //交易成功 break; case 1: - stateTip = '待付款'; + stateTip = 'Unpayment'; //待付款 break; case 2: - stateTip = '待发货'; + stateTip = 'To be delivered'; //待发货 break; // case 3: // // stateTip = '待收货'; // break; case 4: // - stateTip = '已完成'; + stateTip = 'Completed'; //已完成 break; case 5: - stateTip = '已取消'; + stateTip = 'Cancelled'; //已取消 break; case 6: - stateTip = '拒绝退款'; + stateTip = 'Refusal to refund'; //拒绝退款 break; case 9: - stateTip = '订单已关闭'; + stateTip = 'Order closed'; //订单已关闭 stateTipColor = '#909399'; break;