diff --git a/src/assets/js/api/buildEquipToolManage.js b/src/assets/js/api/buildEquipToolManage.js new file mode 100644 index 00000000..b3b37a5e --- /dev/null +++ b/src/assets/js/api/buildEquipToolManage.js @@ -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); \ No newline at end of file diff --git a/src/views/projectFront/buildEquipToolManage/detail.vue b/src/views/projectFront/buildEquipToolManage/detail.vue new file mode 100644 index 00000000..ff62a9e8 --- /dev/null +++ b/src/views/projectFront/buildEquipToolManage/detail.vue @@ -0,0 +1,1298 @@ + + + + +