13 lines
446 B
TypeScript
13 lines
446 B
TypeScript
![]() |
import request from '@/utils/request';
|
||
|
|
||
|
export async function getPayandreply(projectId: any) { // 列表
|
||
|
return request('/api/biz-service-ebtp-tender/v1/supplier_register/get_payandreply_status/' + projectId, {
|
||
|
method: 'get',
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export async function getDetail(supplierId: any) { // 查看详情
|
||
|
return request('/api/biz-service-ebtp-tender/v1/supplier_register/payandreply_status_detail/' + supplierId, {
|
||
|
method: 'get',
|
||
|
});
|
||
|
}
|