diff --git a/src/views/TeamList.vue b/src/views/TeamList.vue index cc8b7a0..422f452 100644 --- a/src/views/TeamList.vue +++ b/src/views/TeamList.vue @@ -198,29 +198,29 @@ onMounted(() => {
-
返佣总金额
-
¥{{ formatNumber(item.total_rebate_amount || 0) }}
+
今日邀请
+
{{ formatCount(item.today_invites || 0) }}
-
今日推广
-
{{ formatCount(item.today_queries || 0) }}
+
本月邀请
+
{{ formatCount(item.month_invites || 0) }}
邀请总人数
{{ formatCount(item.total_invites || 0) }}
-
总推广量
-
{{ formatCount(item.total_queries || 0) }}
+
今日查询
+
{{ formatCount(item.today_queries || 0) }}
-
今日返佣
-
¥{{ formatNumber(item.today_rebate_amount || 0) }}
+
本月查询
+
{{ formatCount(item.month_queries || 0) }}
-
邀请今日
-
{{ formatCount(item.today_invites || 0) }}
+
查询总单量
+
{{ formatCount(item.total_queries || 0) }}
@@ -398,4 +398,4 @@ onMounted(() => { .search-btn:active { background: #2563eb; } - + \ No newline at end of file