增加参数 isTransformResponse:false

This commit is contained in:
xuli3099
2025-08-27 18:14:27 +08:00
parent 7986117466
commit c7b5f355ae

View File

@@ -5,6 +5,8 @@ export function getYsVisistList(data) {
return request.get({
url: '/crm/app/appVisistReport/list',
data: data
},{
isTransformResponse:false
})
}
//市场信息列表接口
@@ -12,6 +14,8 @@ export function CrmMarketInformationList(data) {
return request.get({
url: '/crm/app/informationMarketInformation/list',
data: data
},{
isTransformResponse:false
})
}
//市场信息模块待审核改为提交
@@ -19,6 +23,8 @@ export function handleCrmMarketInfo(data) {
return request.post({
url: '/crm/app/informationMarketInformation/handleCrmMarketInfo',
data
},{
isTransformResponse:false
})
}
//获取客户名称
@@ -26,6 +32,8 @@ export function getYsCustomerList(data) {
return request.get({
url: '/crm/app/appCustomerIfno/pageList',
data
},{
isTransformResponse:false
})
}
//市场信息模块提交
@@ -33,6 +41,8 @@ export function crmMarketInformationAdd(data) {
return request.post({
url: '/crm/app/informationMarketInformation/add',
data
},{
isTransformResponse:false
})
}
//市场信息模块查询
@@ -40,6 +50,8 @@ export function crminformationItemForDetail(data) {
return request.get({
url: '/crm/app/informationMarketInformation/getDetail',
data
},{
isTransformResponse:false
})
}
//客户人员信息查询
@@ -47,6 +59,8 @@ export function crmCustomerUser(data) {
return request.get({
url: '/crm/app/appCrmCusUserNewController/crmCustomerUser',
data
},{
isTransformResponse:false
})
}
//市场信息根据ID删除
@@ -54,6 +68,8 @@ export function crmMarketInformationDelete(data) {
return request.get({
url: '/crm/app/informationMarketInformation/delete',
data
},{
isTransformResponse:false
})
}
//市场信息查询接口
@@ -61,6 +77,8 @@ export function viewingMarketInfForAllMembers(data) {
return request.get({
url: '/crm/app/informationMarketInformation/viewList',
data
},{
isTransformResponse:false
})
}
//市场信息详情查询接口
@@ -68,6 +86,8 @@ export function viewingMarketInfgetDetail(data) {
return request.get({
url: '/crm/app/informationMarketInformation/getDetail',
data
},{
isTransformResponse:false
})
}
//市场信审核列表接口
@@ -75,6 +95,8 @@ export function approvalMarketInfget(data) {
return request.get({
url: 'app/informationMarketInformation/Approval',
data
},{
isTransformResponse:false
})
}
//回款模块列表查询
@@ -82,6 +104,8 @@ export function getPaymentList(data) {
return request.get({
url: '/crm/app/InformationReviewController/getPaymentList',
data
},{
isTransformResponse:false
})
}
//回款新增接口
@@ -89,6 +113,8 @@ export function addPaymentCollection(data) {
return request.post({
url: '/crm/app/InformationReviewController/addPaymentCollection',
data
},{
isTransformResponse:false
})
}
//回款更新接口
@@ -96,6 +122,8 @@ export function updatePaymentDetail(data) {
return request.post({
url: '/crm/app/InformationReviewController/updatePaymentDetail',
data
},{
isTransformResponse:false
})
}
//回款删除接口
@@ -103,6 +131,8 @@ export function deletePaymentDetail(data) {
return request.post({
url: '/crm/app/InformationReviewController/deletePaymentDetail',
data
},{
isTransformResponse:false
})
}
@@ -111,6 +141,8 @@ export function getFullStaffStatisticsViewingTable(data) {
return request.get({
url: '/crm/app/InformationReviewController/getFullStaffStatisticsViewingTable',
data
},{
isTransformResponse:false
})
}
//个人查询回款接口
@@ -118,6 +150,8 @@ export function getPersonalPaymentCollectionTable(data) {
return request.get({
url: '/crm/app/InformationReviewController/getPersonalPaymentCollectionTable',
data
},{
isTransformResponse:false
})
}
@@ -126,6 +160,8 @@ export function crmMarketInformationApprovalSuccess(data) {
return request.get({
url: '/crm/app/informationMarketInformation/ApprovalSuccess',
data
},{
isTransformResponse:false
})
}
//市场信息审核驳回接口
@@ -133,5 +169,7 @@ export function crmMarketInformationApprovalUnSuccess(data) {
return request.get({
url: '/crm/app/informationMarketInformation/ApprovalUnSuccess',
data
},{
isTransformResponse:false
})
}