Browse Source

2025/6/16

master
Aoi_Tori 9 months ago
parent
commit
48e4529c27
  1. 7
      src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue

7
src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue

@ -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-form :inline="true" label-position="top" :model="searchData">
<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 :label="' '">
<el-button type="primary" @click="queryUrlFile">查询</el-button>
@ -709,6 +709,7 @@
this.baseForm=data.row;
this.bomData.site=data.row.site
this.bomData.partNo=data.row.finalPartNo
this.bomData.urlFile=data.row.urlFile
this.getNodeAuthority(data.row)
})
},
@ -747,7 +748,8 @@
codeNo: this.searchData.codeNo,
bomType: this.currentRow.bomType,
engChgLevel: this.currentRow.engChgLevel,
bomAlternativeNo: this.currentRow.alternativeNo
bomAlternativeNo: this.currentRow.alternativeNo,
urlFile: this.currentRow.urlFile,
}
updateBMBomRev(inData).then(({data})=>{
if(data&& data.code===0){
@ -769,6 +771,7 @@
partNo: this.bomData.partNo,
bomType: this.bomData.bomType,
engChgLevel: this.bomData.engChgLevel,
urlFile: this.bomData.urlFile,
}
localStorage.setItem('bomData', JSON.stringify(inData))
window.open('#/part-bomManagement')

Loading…
Cancel
Save