Files
ys-app/src/api/crm/customer/getCustomer.js
PC-202311141343\Administrator 8739cb4a34 整体提交
2025-08-29 14:43:12 +08:00

54 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import request from "@/utils/request"
// 查询客户人员列表
export function getCustomerList(params){
return request.get({
url: '/crm/app/appCustomerIfno/pageList',
data: params
},{isTransformResponse: false})
}
// 查询系统推荐等级
export function getCustomerLevel(params){
return request.get({
url: '/crm/app/appCrmCusUserNewController/queryCustomerLevel',
data: params
},{isTransformResponse: false})
}
// 客户人员新增
export function saveappCrmCusUserNew(params){
return request.get({
url: '/crm/app/appCrmCusUserNewController/add',
data: params
},{isTransformResponse: false})
}
// 查询业务员名下所有的客户
export function SearchForAllCustomersSalesperson(params){
return request.get({
url: '/crm/app/appCrmCusUserNewController/SearchForAllCustomersSalesperson',
data: params
},{isTransformResponse: false})
}
// 客户人员归属审核详情
export function getCusUserApprovalListDetail(params){
return request.get({
url: '/crm/app/appCrmCusUserNewController/getCusUserApprovalListDetail',
data: params
},{isTransformResponse: false})
}
// 查询主归属人列表
export function SearchForAllPerson(params){
return request.get({
url: '/crm/app/appCrmCusUserNewController/SearchForAllPerson',
data: params
},{isTransformResponse: false})
}
// 客户人员新增审核列表
export function getCusUserApprovalList(params) {
return request.get({
url: '/crm/app/appCrmCusUserNewController/getCusUserApprovalList',
data: params
}, {isTransformResponse: false}
)
}