|
|
@ -277,7 +277,7 @@ |
|
|
<el-dialog title="UL文件号/UL Product Model" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="urlFileFlag" width="700px"> |
|
|
<el-dialog title="UL文件号/UL Product Model" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="urlFileFlag" width="700px"> |
|
|
<el-form :inline="true" label-position="top" :model="searchData"> |
|
|
<el-form :inline="true" label-position="top" :model="searchData"> |
|
|
<el-form-item :label="'名称'"> |
|
|
<el-form-item :label="'名称'"> |
|
|
<el-input v-model="bomData.urlFile" clearable style="width: 120px"></el-input> |
|
|
|
|
|
|
|
|
<el-input v-model="bomData.urlFile" clearable style="width: 370px"></el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item :label="' '"> |
|
|
<el-form-item :label="' '"> |
|
|
<el-button type="primary" @click="queryUrlFile">查询</el-button> |
|
|
<el-button type="primary" @click="queryUrlFile">查询</el-button> |
|
|
@ -709,6 +709,7 @@ |
|
|
this.baseForm=data.row; |
|
|
this.baseForm=data.row; |
|
|
this.bomData.site=data.row.site |
|
|
this.bomData.site=data.row.site |
|
|
this.bomData.partNo=data.row.finalPartNo |
|
|
this.bomData.partNo=data.row.finalPartNo |
|
|
|
|
|
this.bomData.urlFile=data.row.urlFile |
|
|
this.getNodeAuthority(data.row) |
|
|
this.getNodeAuthority(data.row) |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
@ -747,7 +748,8 @@ |
|
|
codeNo: this.searchData.codeNo, |
|
|
codeNo: this.searchData.codeNo, |
|
|
bomType: this.currentRow.bomType, |
|
|
bomType: this.currentRow.bomType, |
|
|
engChgLevel: this.currentRow.engChgLevel, |
|
|
engChgLevel: this.currentRow.engChgLevel, |
|
|
bomAlternativeNo: this.currentRow.alternativeNo |
|
|
|
|
|
|
|
|
bomAlternativeNo: this.currentRow.alternativeNo, |
|
|
|
|
|
urlFile: this.currentRow.urlFile, |
|
|
} |
|
|
} |
|
|
updateBMBomRev(inData).then(({data})=>{ |
|
|
updateBMBomRev(inData).then(({data})=>{ |
|
|
if(data&& data.code===0){ |
|
|
if(data&& data.code===0){ |
|
|
@ -769,6 +771,7 @@ |
|
|
partNo: this.bomData.partNo, |
|
|
partNo: this.bomData.partNo, |
|
|
bomType: this.bomData.bomType, |
|
|
bomType: this.bomData.bomType, |
|
|
engChgLevel: this.bomData.engChgLevel, |
|
|
engChgLevel: this.bomData.engChgLevel, |
|
|
|
|
|
urlFile: this.bomData.urlFile, |
|
|
} |
|
|
} |
|
|
localStorage.setItem('bomData', JSON.stringify(inData)) |
|
|
localStorage.setItem('bomData', JSON.stringify(inData)) |
|
|
window.open('#/part-bomManagement') |
|
|
window.open('#/part-bomManagement') |
|
|
|