You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
647 B
20 lines
647 B
import request from '@/config/axios'
|
|
// 线索情况
|
|
export const getUserClueCount = async (params) => {
|
|
return await request.get({ url: '/admin-api/crm/home/get-user-count', params })
|
|
}
|
|
|
|
// 成交率
|
|
export const getClueSignSignRate = async (params) => {
|
|
return await request.get({ url: '/admin-api/crm/home/get-sign-rate', params })
|
|
}
|
|
|
|
// 成交率
|
|
export const getClueSignSignRank = async (params) => {
|
|
return await request.get({ url: '/admin-api/crm/home/get-sign-top10', params })
|
|
}
|
|
|
|
// 成交率
|
|
export const getClueFollowRank = async (params) => {
|
|
return await request.get({ url: '/admin-api/crm/home/get-follow-top10', params })
|
|
}
|
|
|