6.27 集成

This commit is contained in:
jl-zhoujl2
2022-06-27 09:12:56 +08:00
parent 66fbfb9269
commit f17ebf9c5d
23 changed files with 630 additions and 143 deletions

View File

@ -0,0 +1,11 @@
import request from '@/utils/request';
//获取党员数量,党支部数量
export async function getMemberAndBranch() {
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/partyBranchMember/count');
}
//获取党支部列表
export async function getBranchList() {
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/partyBranch/list');
}