Files
frontend-app/api/team.js
T

60 lines
1.3 KiB
JavaScript
Raw Normal View History

2025-08-05 15:25:23 +08:00
import request from '@/utils/request.js'; // 引入封装的方法
// 查询团队业绩
export function getPerformance(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/teamsumm/getPerformance",
method: "get",
data,
});
}
// 查询团队概况
export function getJuniorSummary(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/teamsumm/getJuniorSummary",
method: "get",
data,
});
}
// 查询团队概况
export function getCascadeJunior(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/teamsumm/getCascadeJunior",
method: "get",
data,
});
}
// 查询账户类型
export function getAcctCategory(data) {
return request({
url: "/teamsumm/getAcctCategory",
method: "get",
data,
});
}
// 查询提成概况
export function getRewardSummary(data) {
return request({
url: "/teamsumm/getRewardSummary",
method: "get",
data,
});
}
// 查询提成记录
export function getRewardSummaryRecord(data) {
return request({
url: "/teamsumm/getRewardSummaryRecord",
method: "get",
data,
});
2025-05-07 10:09:55 +08:00
}