fix:提交修复6个问题

This commit is contained in:
ljy
2026-07-08 23:01:18 +08:00
parent 99be8e0237
commit ab9654564e
43 changed files with 3671 additions and 277 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { PartnerWeeklyReportResponse } from '@dukang/shared-types';
import { request } from './api';
export function fetchPartnerWeeklyReport(startDate?: string) {
const query = startDate ? `?startDate=${encodeURIComponent(startDate)}` : '';
return request<PartnerWeeklyReportResponse>('PARTNER_H5', `/partner/reports/weekly${query}`);
}
export type { PartnerWeeklyReportResponse };