mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 13:26:44 +08:00
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
import request from '@/assets/js/utils/request'
|
|
import getUrl from '@/assets/js/utils/get-url'
|
|
|
|
// 代理人客户列表
|
|
export function branchOfficeApi(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getlComPremDetil', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 个险业绩排行优化: 机构查询
|
|
export function getComList(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getComList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 个险业绩排行优化: 业绩查询
|
|
export function getComPerformance(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getComPerformance', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 个险业绩排行优化: 机构查询
|
|
export function getOrgList(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getBranchComList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 获取MIS全部机构 (分级)接口--因内勤多加一级,所以用这个接口
|
|
export function getMisBranchComList(data) {
|
|
// data.isJzg false 为内勤
|
|
// data.isJzg true 为外勤
|
|
return request({
|
|
url: getUrl( '/data/performance/getMisBranchComList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
export function getMisBranchComList2(data) {
|
|
// data.isJzg false 为内勤
|
|
// data.isJzg true 为外勤
|
|
return request({
|
|
url: getUrl( '/agent/agent/getJZGManageComList' , 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 内勤机构
|
|
// export function getMisBranchComList(data) {
|
|
// return request({
|
|
// url: getUrl('/data/performance/getMisBranchComList', 1),
|
|
// method: 'post',
|
|
// data
|
|
// })
|
|
// }
|
|
|