From 531b14be89d79cb0da82b0e5317f2757ca0f86df Mon Sep 17 00:00:00 2001
From: shanj <18996038927@163.com>
Date: Sun, 27 Mar 2022 06:13:52 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=95=86=E5=AE=B6=E5=A4=87?=
=?UTF-8?q?=E6=B3=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
BBWY.Client/APIServices/OrderService.cs | 31 ++++++++
BBWY.Client/Models/Order/Order.cs | 34 ++++-----
.../ViewModels/Order/OrderListViewModel.cs | 43 +++++++++++-
BBWY.Client/Views/Order/EditVenderRemark.xaml | 51 ++++++++++++++
.../Views/Order/EditVenderRemark.xaml.cs | 70 +++++++++++++++++++
BBWY.Client/Views/Order/OrderList.xaml | 4 +-
BBWY.Client/Views/Order/SD.xaml.cs | 16 ++++-
7 files changed, 228 insertions(+), 21 deletions(-)
create mode 100644 BBWY.Client/Views/Order/EditVenderRemark.xaml
create mode 100644 BBWY.Client/Views/Order/EditVenderRemark.xaml.cs
diff --git a/BBWY.Client/APIServices/OrderService.cs b/BBWY.Client/APIServices/OrderService.cs
index 7f26c15a..67e0c489 100644
--- a/BBWY.Client/APIServices/OrderService.cs
+++ b/BBWY.Client/APIServices/OrderService.cs
@@ -48,6 +48,16 @@ namespace BBWY.Client.APIServices
}, null, HttpMethod.Post);
}
+ ///
+ /// 获取订单详情
+ ///
+ ///
+ ///
+ public ApiResponse GetOrderById(string orderId)
+ {
+ return SendRequest(globalContext.BBYWApiHost, $"api/order/GetOrderById/{orderId}", null, null, HttpMethod.Get);
+ }
+
///
/// 解密收货人信息
///
@@ -167,5 +177,26 @@ namespace BBWY.Client.APIServices
{
return SendRequest