|
@@ -859,11 +859,12 @@ export function approvalStore(data) {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 各部门未拜访门店数量
|
|
// 各部门未拜访门店数量
|
|
|
-export function selectNoVisitsInfo(query) {
|
|
|
|
|
|
|
+export function selectNoVisitsInfo(query, signal) {
|
|
|
return request({
|
|
return request({
|
|
|
url: '/mobile/storeStatistics/selectNoVisitsInfo',
|
|
url: '/mobile/storeStatistics/selectNoVisitsInfo',
|
|
|
method: 'get',
|
|
method: 'get',
|
|
|
params: query,
|
|
params: query,
|
|
|
|
|
+ signal: signal,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -877,11 +878,12 @@ export function getReportMaterial(query) {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 提示类页签-查询下属业务员色卡指标接口
|
|
// 提示类页签-查询下属业务员色卡指标接口
|
|
|
-export function getReportMaterialType(data) {
|
|
|
|
|
|
|
+export function getReportMaterialType(data, signal) {
|
|
|
return request({
|
|
return request({
|
|
|
url: '/mobile/reportMobile/getReportMaterialType',
|
|
url: '/mobile/reportMobile/getReportMaterialType',
|
|
|
method: 'post',
|
|
method: 'post',
|
|
|
data: data,
|
|
data: data,
|
|
|
|
|
+ signal: signal,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -940,11 +942,12 @@ export function selectUserStoreNoVisits(data) {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 提示类建店详情接口
|
|
// 提示类建店详情接口
|
|
|
-export function selectPendingCasesInfo(query) {
|
|
|
|
|
|
|
+export function selectPendingCasesInfo(query, signal) {
|
|
|
return request({
|
|
return request({
|
|
|
url: '/mobile/storeStatistics/selectPendingCasesInfo',
|
|
url: '/mobile/storeStatistics/selectPendingCasesInfo',
|
|
|
method: 'get',
|
|
method: 'get',
|
|
|
params: query,
|
|
params: query,
|
|
|
|
|
+ signal: signal,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|