|
@@ -1,8 +1,6 @@
|
|
|
"use client";
|
|
"use client";
|
|
|
|
|
|
|
|
-import {
|
|
|
|
|
- ReloadOutlined,
|
|
|
|
|
-} from "@ant-design/icons";
|
|
|
|
|
|
|
+import { ReloadOutlined } from "@ant-design/icons";
|
|
|
import {
|
|
import {
|
|
|
App,
|
|
App,
|
|
|
Button,
|
|
Button,
|
|
@@ -91,10 +89,7 @@ const NewUserReportPage: React.FC = () => {
|
|
|
async (params: typeof filterParams) => {
|
|
async (params: typeof filterParams) => {
|
|
|
setLoading(true);
|
|
setLoading(true);
|
|
|
try {
|
|
try {
|
|
|
- await loadSummary(
|
|
|
|
|
- params.startDay,
|
|
|
|
|
- params.endDay,
|
|
|
|
|
- );
|
|
|
|
|
|
|
+ await loadSummary(params.startDay, params.endDay);
|
|
|
} finally {
|
|
} finally {
|
|
|
setLoading(false);
|
|
setLoading(false);
|
|
|
}
|
|
}
|
|
@@ -120,9 +115,7 @@ const NewUserReportPage: React.FC = () => {
|
|
|
<Title level={3} style={{ marginBottom: 0 }}>
|
|
<Title level={3} style={{ marginBottom: 0 }}>
|
|
|
新用户报表
|
|
新用户报表
|
|
|
</Title>
|
|
</Title>
|
|
|
- <Text type="secondary">
|
|
|
|
|
- 新用户承接策略报表(最近 7 天)
|
|
|
|
|
- </Text>
|
|
|
|
|
|
|
+ <Text type="secondary">新用户承接策略报表</Text>
|
|
|
</div>
|
|
</div>
|
|
|
<Button
|
|
<Button
|
|
|
icon={<ReloadOutlined />}
|
|
icon={<ReloadOutlined />}
|