web-base-admin/src/api/dashboard.js

27 lines
510 B
JavaScript
Raw Normal View History

2025-05-12 09:10:28 +08:00
import request from '@/utils/request'
// 会员汇总数据
export function getMemberSummary() {
return request({
2025-05-12 14:18:38 +08:00
url: '/system/manage/board/member-summary',
2025-05-12 09:10:28 +08:00
method: 'get'
})
}
// 日业绩数据
export function getDailyPerformance(params) {
return request({
2025-05-12 14:18:38 +08:00
url: '/system/manage/board/day-achieve',
2025-05-12 09:10:28 +08:00
method: 'get',
params
})
}
// 月业绩数据
export function getMonthlyPerformance() {
return request({
2025-05-12 14:18:38 +08:00
url: '/system/manage/board/month-achieve',
2025-05-12 09:10:28 +08:00
method: 'get'
})
}