+
-
发票抬头:
+
订单号:
+
{{ orderInfo.order.sn }}
+
+
+
订单来源:
+
+ {{ orderInfo.order.clientType | clientTypeWay }}
+
+
+
+
订单状态:
+
+ {{ orderInfo.orderStatusValue }}
+
+
+
+
+
下单时间:
+
+ {{ orderInfo.order.createTime }}
+
+
+
+
+
+
发票抬头:
+
+ {{
+ orderInfo.receipt.receiptTitle
+ ? orderInfo.receipt.receiptTitle
+ : "暂无"
+ }}
+
+
+
+
+
发票税号:
+
+ {{
+ orderInfo.receipt.taxpayerId
+ ? orderInfo.receipt.taxpayerId
+ : "暂无"
+ }}
+
+
+
+
+
发票内容:
+
+ {{
+ orderInfo.receipt.receiptContent
+ ? orderInfo.receipt.receiptContent
+ : "暂无"
+ }}
+
+
+
+
+
发票金额:
+
+ ¥{{
+ orderInfo.receipt.receiptPrice
+ ? orderInfo.receipt.receiptPrice
+ : "暂无" | unitPrice
+ }}
+
+
+
+
+
是否开票:
+
+ {{ orderInfo.receipt.receiptStatus == 0 ? "未开" : "已开" }}
+
+
+
+
+
+
+
收货信息:
+
+ {{ orderInfo.order.consigneeName }}
+ {{ orderInfo.order.consigneeMobile }}
+ {{ orderInfo.order.consigneeAddressPath }}
+ {{ orderInfo.order.consigneeDetail }}
+
+
+
+
支付方式:
+
+ {{ orderInfo.paymentMethodValue }}
+
+
+
+
+
买家留言:
+
{{ orderInfo.order.remark }}
+
+
+
+
配送方式:
{{
- orderInfo.receipt.receiptTitle
- ? orderInfo.receipt.receiptTitle
- : "暂无"
+ orderInfo.deliveryMethodValue
+ ? orderInfo.deliveryMethodValue
+ : "暂无配送方式"
}}
-
-
-
发票税号:
-
- {{
- orderInfo.receipt.taxpayerId
- ? orderInfo.receipt.taxpayerId
- : "暂无"
- }}
-
-
-
-
-
发票内容:
-
- {{
- orderInfo.receipt.receiptContent
- ? orderInfo.receipt.receiptContent
- : "暂无"
- }}
-
-
-
-
-
发票金额:
-
- ¥{{
- orderInfo.receipt.receiptPrice
- ? orderInfo.receipt.receiptPrice
- : "暂无" | unitPrice
- }}
-
-
-
-
-
是否开票:
-
- {{ orderInfo.receipt.receiptStatus == 0 ? "未开" : "已开" }}
-
-
-