Browse Source

2024-10-14

master
qiezi 1 year ago
parent
commit
522dc7bcb2
  1. 12
      src/views/modules/quotation/requestForQuote.vue

12
src/views/modules/quotation/requestForQuote.vue

@ -1003,7 +1003,17 @@ export default {
this.rejectOpinion = ''
}
},
"modalData.sourcing"(newVal,oldVal){
if (newVal !== 'Y' && newVal !== '0' && newVal !== 0){
this.modalData.tracker = ''
this.modalData.trackerName = ''
}
},
"modalData.tracker"(newVal,oldVal){
if (newVal === '' || newVal === null || newVal === undefined){
this.modalData.trackerName = ''
}
}
},
data() {
return {

Loading…
Cancel
Save