fix: 客户检索分页查询
This commit is contained in:
@@ -1,76 +1,89 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export default {
|
||||
|
||||
//获取客户信息列表
|
||||
GetCustomerList(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
//添加客户信息
|
||||
AddCustomerInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/AddCustomerInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
GetProjectInfoList(param) {
|
||||
return request({
|
||||
url: `/Project/GetProjectInfoList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
AddProjectInfo(param) {
|
||||
return request({
|
||||
url: `/Project/AddProjectInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
UpdateProjectInfo(param) {
|
||||
return request({
|
||||
url: `/Project/updateProjectInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
//添加客户联系人
|
||||
AddCustomerMemberInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/AddCustomerMemberInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
GetCustomerMemberList(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerMemberList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
GetCustomerInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
// 获取客户信息列表
|
||||
export function GetCustomerList(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
// 添加客户信息
|
||||
export function AddCustomerInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/AddCustomerInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function GetProjectInfoList(param) {
|
||||
return request({
|
||||
url: `/Project/GetProjectInfoList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function AddProjectInfo(param) {
|
||||
return request({
|
||||
url: `/Project/AddProjectInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function UpdateProjectInfo(param) {
|
||||
return request({
|
||||
url: `/Project/updateProjectInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
// 添加客户联系人
|
||||
export function AddCustomerMemberInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/AddCustomerMemberInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function GetCustomerMemberList(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerMemberList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function GetCustomerInfo(param) {
|
||||
return request({
|
||||
url: `/Customer/GetCustomerInfo`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
// 客户检索 - 搜索合作伙伴公司
|
||||
export function searchPartnerCompany(param) {
|
||||
return request({
|
||||
url: `/Customer/SearchPartnerCompany`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export default {
|
||||
GetCustomerList,
|
||||
AddCustomerInfo,
|
||||
GetProjectInfoList,
|
||||
AddProjectInfo,
|
||||
UpdateProjectInfo,
|
||||
AddCustomerMemberInfo,
|
||||
GetCustomerMemberList,
|
||||
GetCustomerInfo,
|
||||
searchPartnerCompany
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user