From dc6e8dfad70ea212573c496e11fa936fdfdccce9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com>
Date: Wed, 15 Oct 2025 02:12:11 +0800
Subject: [PATCH] =?UTF-8?q?fix(dealer-orders):=E4=BF=AE=E5=A4=8D=E4=B8=89?=
=?UTF-8?q?=E7=BA=A7=E5=88=86=E9=94=80=E5=95=86=E6=98=BE=E7=A4=BA=E9=80=BB?=
=?UTF-8?q?=E8=BE=91=E5=B9=B6=E8=B0=83=E6=95=B4=E5=B8=83=E5=B1=80-=20?=
=?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=89=E7=BA=A7=E5=88=86=E9=94=80=E5=95=86?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA=E6=9D=A1=E4=BB=B6=EF=BC=8C?=
=?UTF-8?q?=E7=A1=AE=E4=BF=9D=E4=BB=85=E5=9C=A8=E6=9C=89=E6=95=88=E7=94=A8?=
=?UTF-8?q?=E6=88=B7ID=E6=97=B6=E5=B1=95=E7=A4=BA=20-=20=E8=B0=83=E6=95=B4?=
=?UTF-8?q?=E7=BB=93=E7=AE=97=E6=9C=88=E4=BB=BD=E6=96=87=E6=9C=AC=E7=9A=84?=
=?UTF-8?q?=E5=B8=83=E5=B1=80=E9=97=B4=E8=B7=9D=EF=BC=8C=E5=A2=9E=E5=8A=A0?=
=?UTF-8?q?=E9=A1=B6=E9=83=A8=E8=BE=B9=E8=B7=9D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/dealer/orders/index.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/dealer/orders/index.tsx b/src/dealer/orders/index.tsx
index 56c2305..f2bba32 100644
--- a/src/dealer/orders/index.tsx
+++ b/src/dealer/orders/index.tsx
@@ -148,7 +148,7 @@ const DealerOrder: React.FC = () => {
)}
{/* 三级分销商 */}
- {(order.thirdUserId && order.thirdUserId == 0) && (
+ {(order.thirdUserId !== undefined && order.thirdUserId > 0) && (
联盟收益补贴:{order.thirdNickname || `用户${order.thirdUserId}`} (¥{order.thirdMoney || '0.00'})
@@ -162,7 +162,7 @@ const DealerOrder: React.FC = () => {
)}
-
+
结算月份:{order.month}