story#4506, KPI演示优化-240709

This commit is contained in:
2024-07-10 21:19:53 +08:00
parent 48cd129290
commit 0aa9f3ec04
3 changed files with 317 additions and 102 deletions

View File

@ -36,14 +36,7 @@ export function getKpiDetailsData(data){
data
})
}
/*export function getSupplierId(data){
return request({
url: '/supplier/select/supplier',
method:'GET',
// contentType: 'application/json',
data
})
}*/
// 关键词搜索服务商名称
export function getSupplierId(key) {
return request({
url: '/supplier/select/supplier',
@ -53,3 +46,13 @@ export function getSupplierId(key) {
}
});
}
// supplier/select/driver 关键词搜索司机名称
export function getDriverName(key) {
return request({
url: '/supplier/select/driver',
method: 'GET',
params: {
key: key ,
}
});
}