社团统计及团员统计

This commit is contained in:
yaojian
2026-03-02 18:18:06 +08:00
parent 3f06c5bea0
commit ba15afef9b
6 changed files with 436 additions and 27 deletions

View File

@@ -59,3 +59,13 @@ export const delObj = (ids: string[]) => {
});
};
/**
* 社团统计 - 根据学院统计社团数量
*/
export const getAssociationStats = () => {
return request({
url: '/stuwork/stuassociation/stats',
method: 'get'
});
};

View File

@@ -23,3 +23,51 @@ export const fetchList = (query?: any) => {
}
})
}
/**
* 学分确认
* @param graduYear 毕业年份
*/
export const confirmScore = (graduYear: string) => {
return request({
url: '/stuwork/stugraducheck/confirmScore',
method: 'get',
params: { graduYear }
})
}
/**
* 操行考核确认
* @param graduYear 毕业年份
*/
export const confirmConduct = (graduYear: string) => {
return request({
url: '/stuwork/stugraducheck/confirmConduct',
method: 'get',
params: { graduYear }
})
}
/**
* 违纪确认
* @param graduYear 毕业年份
*/
export const confirmPunish = (graduYear: string) => {
return request({
url: '/stuwork/stugraducheck/confirmPunish',
method: 'get',
params: { graduYear }
})
}
/**
* 等级工确认
* @param graduYear 毕业年份
*/
export const confirmSkill = (graduYear: string) => {
return request({
url: '/stuwork/stugraducheck/confirmSkill',
method: 'get',
params: { graduYear }
})
}

View File

@@ -89,3 +89,13 @@ export const exportExcel = (query?: any) => {
});
};
/**
* 获取团员统计信息(全校总数+各学院统计)
*/
export const getStatistics = () => {
return request({
url: '/stuwork/stuunionleague/statistics',
method: 'get'
});
};