1234567891011121314151617181920 |
- import request from "@/utils/common/request"
- /**
- * 获取标段账号列表
- * @param id 标段id
- */
- export async function apiGetSettingAccount(id: string) {
- const { data } = await request.get('/api/projectSetting/bid/account', { bidsectionId: id })
- return data
- }
- /**
- * 添加成员账号
- * @param bidsectionId 标段id
- * @param accountId 账号id
- */
- export async function apiCreateBidAccount(bidsectionId: string, accountId: string) {
- const { data } = await request.post('/api/projectSetting/bid/account/create', { bidsectionId, accountId })
- return data
- }
|