flx:新增施工设备机具管理
This commit is contained in:
parent
12a714f843
commit
2649736345
38
src/assets/js/api/buildEquipToolManage.js
Normal file
38
src/assets/js/api/buildEquipToolManage.js
Normal file
@ -0,0 +1,38 @@
|
||||
/**
|
||||
* api接口统一管理 、、质量管理
|
||||
*/
|
||||
import { post, get } from '../http'
|
||||
// 施工设备机类型
|
||||
// 树形列表查询施工设备机具分类信息
|
||||
export const getConstructionEquipmentCategoryTreeApi = data => get('/xmgl/constructionEquipmentToolClassification/tree/list', data);
|
||||
// 添加施工设备机具分类信息
|
||||
export const addConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/add', data);
|
||||
// 编辑施工设备机具分类信息
|
||||
export const editConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/edit', data);
|
||||
// 删除施工设备机具分类信息
|
||||
export const deleteConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/delete', data);
|
||||
// 施工设备机列表
|
||||
// 分页列表查询施工设备机具信息
|
||||
export const getConstructionEquipmentPageApi = data => get('/xmgl/constructionEquipmentTool/page', data);
|
||||
// 编辑施工设备机具信息
|
||||
export const editConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/edit', data);
|
||||
// 删除施工设备机具信息
|
||||
export const deleteConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/delete', data);
|
||||
// 添加施工设备机具信息和附件
|
||||
export const saveWithFileConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/saveWithFile', data);
|
||||
// 通过id查询施工设备机具信息
|
||||
export const getConstructionEquipmentByIdApi = data => get('/xmgl/constructionEquipmentTool/queryById', data);
|
||||
|
||||
// 通过id查询施工设备机具附件信息
|
||||
export const getConstructionEquipmentFileByIdApi = data => get('/xmgl/constructionEquipmentToolFile/queryById', data);
|
||||
// 列表查询施工设备机具附件信息
|
||||
export const getConstructionEquipmentFileListApi = data => get('/xmgl/constructionEquipmentToolFile/list', data);
|
||||
|
||||
// 分页列表查询施工设备机具安全检查信息
|
||||
export const getConstructionEquipmentCheckPageApi = data => get('/xmgl/constructionEquipmentToolCheck/page', data);
|
||||
// 添加施工设备机具安全检查信息
|
||||
export const addConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/add', data);
|
||||
// 删除施工设备机具安全检查信息
|
||||
export const deleteConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/delete', data);
|
||||
// 编辑施工设备机具安全检查信息
|
||||
export const editConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/edit', data);
|
||||
1298
src/views/projectFront/buildEquipToolManage/detail.vue
Normal file
1298
src/views/projectFront/buildEquipToolManage/detail.vue
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user