新增用户流量月度明细、license流量月度明细

This commit is contained in:
aoshiguchen
2023-03-26 15:54:00 +08:00
parent 144adfe73f
commit c4726941ea
122 changed files with 955 additions and 386 deletions
+16
View File
@@ -14,3 +14,19 @@ export function fetchLicenseFlowReportList(query) {
params: query
})
}
export function fetchUserFlowMonthReportList(query) {
return request({
url: '/report/user/flow-month-report/page',
method: 'get',
params: query
})
}
export function fetchLicenseFlowMonthReportList(query) {
return request({
url: '/report/license/flow-month-report/page',
method: 'get',
params: query
})
}