Browse Source

2026-03-06

ECN优化“新IFS物料”删不掉的问题
master
fengyuan_yang 2 days ago
parent
commit
9af59c4a5d
  1. 15
      src/views/modules/changeManagement/changeRecord.vue

15
src/views/modules/changeManagement/changeRecord.vue

@ -320,7 +320,7 @@
min-width="170" min-width="170"
label="New IFS Part No."> label="New IFS Part No.">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input clearable @keydown.native.prevent :ref="`newPartNo${scope.$index}`" v-model="scope.row.finalPartNo" style="width:77%"></el-input>
<el-input clearable @keydown.native.prevent @clear="scope.row.newPartNo = ''" :ref="`newPartNo${scope.$index}`" v-model="scope.row.finalPartNo" style="width:77%"></el-input>
<el-button :disabled="showModalFlag||changeRequestDetailFlag('newPartNo') === 'N'" type="primary" @click="choosePartNo(scope.row)" style="width:18%;padding: 3px 7px">·&nbsp;·&nbsp;·</el-button> <el-button :disabled="showModalFlag||changeRequestDetailFlag('newPartNo') === 'N'" type="primary" @click="choosePartNo(scope.row)" style="width:18%;padding: 3px 7px">·&nbsp;·&nbsp;·</el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -4284,7 +4284,12 @@
this.modalData.menuId = this.$route.meta.menuId this.modalData.menuId = this.$route.meta.menuId
// finalPartNoIFSnewPartNoPLM // finalPartNoIFSnewPartNoPLM
// newPartNoPLM
// finalPartNo newPartNo clearable
this.chooseDataList.forEach(item => {
if (!item.finalPartNo) {
item.newPartNo = ''
}
})
this.modalData.detailList = this.chooseDataList this.modalData.detailList = this.chooseDataList
this.modalData.ecnTypeData = this.form this.modalData.ecnTypeData = this.form
this.modalData.costImpactData = this.costImpactData this.modalData.costImpactData = this.costImpactData
@ -4632,6 +4637,12 @@
this.countersignatureData.changeNo = this.modalData.changeNo this.countersignatureData.changeNo = this.modalData.changeNo
this.countersignatureData.chooseCSItemList = this.chooseCSItemList this.countersignatureData.chooseCSItemList = this.chooseCSItemList
// finalPartNo newPartNo clearable
this.chooseDataList.forEach(item => {
if (!item.finalPartNo) {
item.newPartNo = ''
}
})
this.modalData.detailList = this.chooseDataList this.modalData.detailList = this.chooseDataList
this.modalData.ecnTypeData = this.form this.modalData.ecnTypeData = this.form
this.modalData.costImpactData = this.costImpactData this.modalData.costImpactData = this.costImpactData

Loading…
Cancel
Save