import request from '@/utils/request'
// 选择个人获取所有销售人员
export function deliverList() {
return request({
url: '/api/notice/findAllSalesman',
method: 'get',
})
}
// 获取所有部门
export function allDepartments() {
return request({
url: '/api/statistics/findAllSaleDept',
method: 'get',
})
}
//获取表格和echarts图数据
export function getEchrtsData(params) {
return request({
url: '/api/statistics/findCustomerStaticsByWrapper',
method: 'get',
params:params
})
}
// 导出
export function expRecord(params) {
return request({
url: '/api/statistics/exportCustomerFollowSituation',
method: 'get',
params,
// responseType:'blob',
})
}
-
Kimber authored026b8f52