18 lines
438 B
TypeScript
18 lines
438 B
TypeScript
![]() |
import request from '@/utils/request';
|
||
|
/**
|
||
|
* 查询已报名的供应商
|
||
|
* @param params
|
||
|
*/
|
||
|
export async function getPage(params?: any) {
|
||
|
return request(`/api/biz-service-ebtp-tender/v1/supplier_register/get_register/${params}`,{
|
||
|
method: 'GET',
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 根据id查询项目信息
|
||
|
* @param id
|
||
|
*/
|
||
|
export function getProjectById(id: any) {
|
||
|
return request('/api/biz-service-ebtp-project/v1/projectRecord/' + id);
|
||
|
}
|