refactor(manager): 移除多余的part_count参数并简化请求参数
简化团队分析请求逻辑,直接使用getRequestParams()获取参数,移除硬编码的part_count字段
This commit is contained in:
@@ -353,10 +353,8 @@ week_order_count
|
|||||||
const fetchTeamAnalysis = async () => {
|
const fetchTeamAnalysis = async () => {
|
||||||
try {
|
try {
|
||||||
showTeamAnalysisModal.value = true
|
showTeamAnalysisModal.value = true
|
||||||
const params = {
|
|
||||||
...getRequestParams(),
|
const params = getRequestParams()
|
||||||
part_count: 1
|
|
||||||
}
|
|
||||||
const response = await getGroupEntiretyThirdReport(params)
|
const response = await getGroupEntiretyThirdReport(params)
|
||||||
|
|
||||||
// 根据API响应结构调整数据处理逻辑
|
// 根据API响应结构调整数据处理逻辑
|
||||||
|
|||||||
Reference in New Issue
Block a user