From bed539d16fe38bc36a71f0a00c0c56f62ba05fb0 Mon Sep 17 00:00:00 2001 From: Chopper Date: Fri, 27 Aug 2021 17:29:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E6=83=A0=E9=87=91=E9=A2=9D=EF=BC=8C?= =?UTF-8?q?=E4=BC=98=E6=83=A0=E5=88=B8=E9=87=91=E9=A2=9D=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E7=AB=AF=E5=B1=95=E7=A4=BA=E9=97=AE=E9=A2=98=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/src/views/order/order/orderDetail.vue | 95 +++++++++++++------ seller/src/views/order/order/orderDetail.vue | 15 ++- 2 files changed, 71 insertions(+), 39 deletions(-) diff --git a/manager/src/views/order/order/orderDetail.vue b/manager/src/views/order/order/orderDetail.vue index 4518c16f..e9d438c5 100644 --- a/manager/src/views/order/order/orderDetail.vue +++ b/manager/src/views/order/order/orderDetail.vue @@ -19,7 +19,7 @@
订单来源:
- {{ orderInfo.order.clientType | clientTypeWay}} + {{ orderInfo.order.clientType | clientTypeWay }}
@@ -45,7 +45,10 @@
发票抬头:
-
{{ orderInfo.receipt.receiptTitle ? orderInfo.receipt.receiptTitle : '暂无' }}
+
{{ + orderInfo.receipt.receiptTitle ? orderInfo.receipt.receiptTitle : '暂无' + }} +
@@ -55,12 +58,17 @@
发票内容:
-
{{ orderInfo.receipt.receiptContent ? orderInfo.receipt.receiptContent : '暂无' }}
+
{{ + orderInfo.receipt.receiptContent ? orderInfo.receipt.receiptContent : '暂无' + }} +
发票金额:
-
{{ orderInfo.receipt.receiptPrice ? orderInfo.receipt.receiptPrice : '暂无' | unitPrice('¥')}}
+
+ {{ orderInfo.receipt.receiptPrice ? orderInfo.receipt.receiptPrice : '暂无' | unitPrice('¥') }} +
@@ -97,7 +105,10 @@
发票抬头:
-
{{ orderInfo.receipt.receiptTitle ? orderInfo.receipt.receiptTitle : '暂无' }}
+
{{ + orderInfo.receipt.receiptTitle ? orderInfo.receipt.receiptTitle : '暂无' + }} +
@@ -107,12 +118,17 @@
发票内容:
-
{{ orderInfo.receipt.receiptContent ? orderInfo.receipt.receiptContent : '暂无' }}
+
{{ + orderInfo.receipt.receiptContent ? orderInfo.receipt.receiptContent : '暂无' + }} +
发票金额:
-
{{ orderInfo.receipt.receiptPrice ? orderInfo.receipt.receiptPrice : '暂无' | unitPrice('¥')}}
+
+ {{ orderInfo.receipt.receiptPrice ? orderInfo.receipt.receiptPrice : '暂无' | unitPrice('¥') }} +
@@ -134,21 +150,22 @@