Files
td_official/src/api/bidding/appointment/index.ts

32 lines
599 B
TypeScript
Raw Normal View History

2025-08-20 21:09:18 +08:00
import request from '@/utils/request';
/**
*
* @param query
* @returns {*}
*/
export const biddingGetUser = (query) => {
return request({
url: '/bidding/biddingUser/getUser',
method: 'get',
params: query
});
};
// 新增招投标人员
export const AddbiddingUser = (data) => {
return request({
url: '/bidding/biddingUser',
method: 'post',
data
});
};
2025-08-29 14:58:31 +08:00
// 查询招投标人员
2025-08-20 21:09:18 +08:00
export const biddingUserList = (projectId) => {
return request({
url: '/bidding/biddingUser/list',
method: 'get',
params: { projectId }
});
};