task#14196,kpi优化

This commit is contained in:
2024-07-05 17:25:00 +08:00
parent cb50de4039
commit b2af0684fa
4 changed files with 440 additions and 218 deletions

View File

@ -36,3 +36,21 @@ 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',
method: 'GET',
// key
params: {
key: key ,// 假设后端接口接受名为 'name' 的查询参数
}
});
}