CRM_25-11-18#story#7366,服务商KPI界面需求2025.9.11

This commit is contained in:
2025-11-27 15:00:34 +08:00
parent 2c61085515
commit 6e7a5a4b42
8 changed files with 1919 additions and 3 deletions

View File

@@ -81,4 +81,31 @@ export function getDriverName(key) {
key: key ,
}
});
}
}
// 车辆 总览
export function vehicleTotalInfo(data) {
return request({
url: '/supplier/supplierKPI/querySupplierVehicleStatisticsKpi',
method: 'POST',
data
});
}
// 服务商维度查询车辆
export function vehicleInfoBySupplier(data) {
return request({
url: '/supplier/supplierKPI/querySupplierStatisticsKpiBySupplier',
method: 'POST',
data
});
}
// 车辆维度查询车辆
export function vehicleInfoByVehicle(data) {
return request({
url: '/supplier/supplierKPI/querySupplierVehicleKpi',
method: 'POST',
data
});
}