8/13, 日报

This commit is contained in:
Zy
2026-08-13 16:13:15 +08:00
parent ffa0d1067a
commit 6ac733cdd2
15 changed files with 714 additions and 96 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request';
import { Response } from '@/api/system/report/dailyFeeReport/type';
export const getDailyFeeReportList = (data = {}): Promise<Response> => {
return request({
url: '/dailyFeeReport/list',
method: 'GET',
params: data
});
};