diff --git a/src/api/sampleManagement/technicalSpecificationList.js b/src/api/sampleManagement/technicalSpecificationList.js index bde77e2..d04ec68 100644 --- a/src/api/sampleManagement/technicalSpecificationList.js +++ b/src/api/sampleManagement/technicalSpecificationList.js @@ -113,3 +113,4 @@ export const deleteBMprintIndigoColor= data => createAPI(`/technicalSpecificatio * @returns {*} */ export const issueChange= data => createAPI(`/technicalSpecification/issueChange`,'post',data) +export const submitChange= data => createAPI(`/technicalSpecification/submitChange`,'post',data) diff --git a/src/views/modules/processManagement/processBindingInfo.vue b/src/views/modules/processManagement/processBindingInfo.vue index cf7e63d..2c45801 100644 --- a/src/views/modules/processManagement/processBindingInfo.vue +++ b/src/views/modules/processManagement/processBindingInfo.vue @@ -1188,9 +1188,9 @@ } } else if (row.menuId === '103002') { // BM this.queryTableParam = { - tableType: 'plm_technical_specification_sheet', + tableType: 'plm_stepRole_base_bm', passTable: [], - addTable: [] + addTable: ['plm_technical_specification_sheet'] } } else { return diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue index 650c159..cc70bf0 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue @@ -417,8 +417,12 @@ }, searchTable(){ searchBMBom(this.searchData).then(({data}) => { - this.bomList = data.rows; - this.bomData = data.row; + if(data&& data.code===0){ + this.bomList = data.rows; + this.bomData = data.row; + } else { + this.$message.error(data.msg) + } }); }, searchDetailTable(){ diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue index f7b223c..614476d 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue @@ -2,6 +2,9 @@