|
|
|
@ -719,12 +719,12 @@ |
|
|
|
this.searchTable() |
|
|
|
}, |
|
|
|
|
|
|
|
searchTable (type) { |
|
|
|
getOADetailForBM(this.searchData).then(({data}) => { |
|
|
|
async searchTable (type) { |
|
|
|
await getOADetailForBM(this.searchData).then(({data}) => { |
|
|
|
this.spForm.nodeName = data.row.nodeName |
|
|
|
this.spForm.sp = data.row.sp == null ? '' : data.row.sp |
|
|
|
}) |
|
|
|
searchBMBom(this.searchData).then(({data}) => { |
|
|
|
await searchBMBom(this.searchData).then(({data}) => { |
|
|
|
if (data&& data.code === 0) { |
|
|
|
this.bomList = data.rows |
|
|
|
this.bomData = data.row |
|
|
|
@ -735,7 +735,7 @@ |
|
|
|
this.$message.error(data.msg) |
|
|
|
} |
|
|
|
}) |
|
|
|
tsdBasicInformationSearch(this.searchData).then(({data}) => { |
|
|
|
await tsdBasicInformationSearch(this.searchData).then(({data}) => { |
|
|
|
this.baseForm = data.row |
|
|
|
this.bomData.site = data.row.site |
|
|
|
this.bomData.partNo = data.row.finalPartNo |
|
|
|
|