|
|
|
@ -797,6 +797,7 @@ |
|
|
|
//变更工艺路线 |
|
|
|
modalFlag:false, |
|
|
|
routeDetailList:[], |
|
|
|
currentRoute:null |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted () { |
|
|
|
@ -1218,15 +1219,15 @@ |
|
|
|
}, |
|
|
|
changeRouteRev(){ |
|
|
|
this.searchDetailTable() |
|
|
|
this.currentRow=null |
|
|
|
this.currentRoute=null |
|
|
|
this.modalFlag=true; |
|
|
|
|
|
|
|
}, |
|
|
|
getRow(row){ |
|
|
|
this.currentRow=row |
|
|
|
this.currentRoute=row |
|
|
|
}, |
|
|
|
updateBMRouteRev(){ |
|
|
|
if(this.currentRow==null){ |
|
|
|
if(this.currentRoute==null){ |
|
|
|
this.$alert('请点击选择Route版本!', '错误', { |
|
|
|
confirmButtonText: '确定' |
|
|
|
}) |
|
|
|
@ -1235,9 +1236,9 @@ |
|
|
|
let inData={ |
|
|
|
site:this.routeData.site, |
|
|
|
codeNo:this.searchData.codeNo, |
|
|
|
routingType:this.currentRow.routingType, |
|
|
|
routingRevision:this.currentRow.routingRevision, |
|
|
|
routeAlternativeNo:this.currentRow.alternativeNo |
|
|
|
routingType:this.currentRoute.routingType, |
|
|
|
routingRevision:this.currentRoute.routingRevision, |
|
|
|
routingAlternativeNo:this.currentRoute.alternativeNo |
|
|
|
} |
|
|
|
this.$confirm("更改工艺路线后,之前填写的工艺信息都将覆盖,是否继续?", '保存提示', { |
|
|
|
confirmButtonText: '确定', |
|
|
|
|