投标管理

This commit is contained in:
2025-08-20 21:09:18 +08:00
parent 7e4a5e17cc
commit 388a31dd18
10 changed files with 1449 additions and 1 deletions

View File

@ -0,0 +1,31 @@
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
});
};
// 新增招投标人员
export const biddingUserList = (projectId) => {
return request({
url: '/bidding/biddingUser/list',
method: 'get',
params: { projectId }
});
};