6 changed files with 2376 additions and 1 deletions
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询履约保证金账户管理列表
|
||||
|
export function listLybzj(query) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj/list', |
||||
|
method: 'post', |
||||
|
data: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询履约保证金账户管理详细
|
||||
|
export function getLybzj(id) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增履约保证金账户管理
|
||||
|
export function addLybzj(data) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改履约保证金账户管理
|
||||
|
export function updateLybzj(data) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除履约保证金账户管理
|
||||
|
export function delLybzj(id) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出履约保证金账户管理
|
||||
|
export function exportLybzj(query) { |
||||
|
return request({ |
||||
|
url: '/system/lybzj/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询质量保证金账户管理列表
|
||||
|
export function listZlbzj(query) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj/list', |
||||
|
method: 'post', |
||||
|
data: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询质量保证金账户管理详细
|
||||
|
export function getZlbzj(id) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增质量保证金账户管理
|
||||
|
export function addZlbzj(data) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改质量保证金账户管理
|
||||
|
export function updateZlbzj(data) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除质量保证金账户管理
|
||||
|
export function delZlbzj(id) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出质量保证金账户管理
|
||||
|
export function exportZlbzj(query) { |
||||
|
return request({ |
||||
|
url: '/system/zlbzj/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
File diff suppressed because it is too large
File diff suppressed because it is too large
Loading…
Reference in new issue