Browse Source

2024-02-21 物料修改2

master
fengyuan_yang 2 years ago
parent
commit
4e594defe0
  1. 22
      src/views/modules/part/partInformation.vue

22
src/views/modules/part/partInformation.vue

@ -250,8 +250,8 @@
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<span slot="label" @click="getBaseList(127)"><a herf="#">来源国家 / Country of Origin</a></span> <span slot="label" @click="getBaseList(127)"><a herf="#">来源国家 / Country of Origin</a></span>
<el-input v-model="modalData.isoCountry" style="width: 128px"></el-input>
<el-input v-model="modalData.isoCountryDesc" disabled style="width: 330px"></el-input>
<el-input v-model="modalData.countryOfOrigin" style="width: 128px"></el-input>
<el-input v-model="modalData.countryOfOriginDesc" disabled style="width: 330px"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules"> <el-form :inline="true" label-position="top" :model="modalData" :rules="rules">
@ -1266,8 +1266,8 @@
abcClassDesc: '', abcClassDesc: '',
frequencyClass: '', frequencyClass: '',
lifecycleStage: '', lifecycleStage: '',
isoCountry: '',
isoCountryDesc: '',
countryOfOrigin: '',
countryOfOriginDesc: '',
manufacturingLeadTime: '', manufacturingLeadTime: '',
expectedLeadTime: '', expectedLeadTime: '',
regionOfOrigin: '', regionOfOrigin: '',
@ -2984,8 +2984,8 @@
abcClassDesc: '', abcClassDesc: '',
frequencyClass: 'Very Slow Mover', frequencyClass: 'Very Slow Mover',
lifecycleStage: 'Development', lifecycleStage: 'Development',
isoCountry: '',
isoCountryDesc: '',
countryOfOrigin: '',
countryOfOriginDesc: '',
manufacturingLeadTime: '', manufacturingLeadTime: '',
expectedLeadTime: '', expectedLeadTime: '',
regionOfOrigin: '', regionOfOrigin: '',
@ -3089,8 +3089,8 @@
abcClassDesc: row.abcClassDesc, abcClassDesc: row.abcClassDesc,
frequencyClass: row.frequencyClass, frequencyClass: row.frequencyClass,
lifecycleStage: row.lifecycleStage, lifecycleStage: row.lifecycleStage,
isoCountry: row.isoCountry,
isoCountryDesc: row.isoCountryDesc,
countryOfOrigin: row.countryOfOrigin,
countryOfOriginDesc: row.countryOfOriginDesc,
manufacturingLeadTime: row.manufacturingLeadTime, manufacturingLeadTime: row.manufacturingLeadTime,
expectedLeadTime: row.expectedLeadTime, expectedLeadTime: row.expectedLeadTime,
regionOfOrigin: row.regionOfOrigin, regionOfOrigin: row.regionOfOrigin,
@ -3876,7 +3876,7 @@
} else if (val === 126) { } else if (val === 126) {
strVal = this.modalData.abcClass strVal = this.modalData.abcClass
} else if (val === 127) { } else if (val === 127) {
strVal = this.modalData.isoCountry
strVal = this.modalData.countryOfOrigin
} else if (val === 128) { } else if (val === 128) {
strVal = this.modalData.regionOfOrigin strVal = this.modalData.regionOfOrigin
} else if (val === 129) { } else if (val === 129) {
@ -3948,8 +3948,8 @@
this.modalData.abcClass = val.abc_class this.modalData.abcClass = val.abc_class
this.modalData.abcClassDesc = val.abc_class_desc this.modalData.abcClassDesc = val.abc_class_desc
} else if (this.tagNo === 127) { } else if (this.tagNo === 127) {
this.modalData.isoCountry = val.iso_country
this.modalData.isoCountryDesc = val.iso_country_desc
this.modalData.countryOfOrigin = val.country_of_origin
this.modalData.countryOfOriginDesc = val.country_of_origin_desc
} else if (this.tagNo === 128) { } else if (this.tagNo === 128) {
this.modalData.regionOfOrigin = val.region_of_origin this.modalData.regionOfOrigin = val.region_of_origin
this.modalData.regionOfOriginDesc = val.region_of_origin_desc this.modalData.regionOfOriginDesc = val.region_of_origin_desc

Loading…
Cancel
Save