This commit is contained in:
2026-07-02 19:36:49 +08:00
parent bc80e297d5
commit cc4b55ed8e
13 changed files with 1327 additions and 93 deletions
+19
View File
@@ -167,3 +167,22 @@ export const reqGetGrooveTypeList = ()=>get(`BaseInfo/GetGrooveType`)
*
*/
export const reqSaveFitupCheck = (data)=>post(`PreWeldInspection/SaveFitupCheck`, data)
/**
* 获取防腐等级
* @returns
*/
export const reqPaintCodeList = ()=>get(`/AntiCorrosionCheck/GetPaintCodeList`)
/**
* 保存防腐填报记录
* @param {Object} data
*/
export const reqSaveAntiCorrosionCheck = (data={})=>post(`/AntiCorrosionCheck/SaveRecord`,data)
/**
* 获取防腐填报记录
* @param {String} materialCode
*/
export const reqGetAntiCorrosionCheck = (params) => get(`/AntiCorrosionCheck/GetRecordsByMaterialCode?materialCode=${params.materialCode}&projectId=${params.projectId}`)