feat:性能优化

This commit is contained in:
2026-07-25 09:12:36 +08:00
parent 3eba959b48
commit 9ab39d2aec
138 changed files with 232 additions and 1511 deletions
+32
View File
@@ -0,0 +1,32 @@
import request from '@/utils/request.js'; // 引入封装的方法
// 查询绑定的银行卡
export function getBankList(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/getList",
method: "get",
data,
});
}
// 绑定银行卡
export function bindBank(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/bind",
method: "post",
data,
});
}
// 解绑银行卡
export function unbind(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/unbind",
method: "post",
data,
});
}
+60
View File
@@ -0,0 +1,60 @@
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,
});
}