包装管理列表

This commit is contained in:
2026-06-11 14:11:56 +08:00
parent 06781c69e1
commit 780814bad4
9 changed files with 622 additions and 216 deletions
+7 -2
View File
@@ -9,6 +9,11 @@ import {
export const reqProjectWorkArea = (projectId)=>get(`BaseInfo/getProjectWorkArea?projectId=${projectId}`)
/**
* 获取焊口位置
* 请求焊口位置
*/
export const getWeldingLocation = ()=>get(`BaseInfo/getWeldingLocation`)
export const reqWeldingLocation = ()=>get(`BaseInfo/getWeldingLocation`)
/**
* 根据项目ID单位类型请求单位
*/
export const reqUnitByProjectIdUnitType = (projectId, unitType="")=>get(`Unit/getUnitByProjectIdUnitType?projectId=${projectId}&unitType=${unitType}`)
+7 -1
View File
@@ -34,4 +34,10 @@ export const reqSaveWeldingDailyByWeldJointId = (data) => get(
/**
* 点口
*/
export const reqGetManualPointSave = (weldJointId)=>get(`NDETrust/getManualPointSave?weldJointId=${weldJointId}`)
export const reqGetManualPointSave = (weldJointId)=>get(`NDETrust/getManualPointSave?weldJointId=${weldJointId}`)
// ========================= 包装管理 ====================================
/**
* 包装管理列表
*/
export const reqPackagingInformationList = (data)=> get(`PackagingManage/GetPackagingInformationList?unitId=${data.unitId}&projectId=${data.projectId}&pageindex=${data.pageIndex}&pagesize=${data.pageSize}&packagingCode=${data.packagingCode}&hasTrainNumber=${data.hasTrainNumber}`)