新增用户流量报表、license流量报表页面,及后端接口定义

This commit is contained in:
aoshiguchen
2023-03-19 15:55:38 +08:00
parent 983d5dde8c
commit e2c152a569
11 changed files with 485 additions and 46 deletions
+16
View File
@@ -0,0 +1,16 @@
import request from '@/utils/request'
export function fetchUserFlowReportList(query) {
return request({
url: '/report/user/flow-report/page',
method: 'get',
params: query
})
}
export function fetchLicenseFlowReportList(query) {
return request({
url: '/report/license/flow-report/page',
method: 'get',
params: query
})
}