Browse Source

2023.11.27

master
yuejiayang 2 years ago
parent
commit
ffefb1527a
  1. 6
      src/views/modules/part/agentInformation.vue
  2. 6
      src/views/modules/part/manufacturerInformation.vue
  3. 6
      src/views/modules/part/partFamilyInformation.vue
  4. 6
      src/views/modules/part/partGroupInformation.vue
  5. 7
      src/views/modules/part/partInformation.vue
  6. 6
      src/views/modules/part/productGroupInformation.vue
  7. 6
      src/views/modules/part/umInformation.vue

6
src/views/modules/part/agentInformation.vue

@ -126,6 +126,12 @@ export default {
handler: function (newV, oldV) {
this.searchData.agentId = this.searchData.agentId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.agentId = this.modalData.agentId.toUpperCase()
}
}
},
data () {

6
src/views/modules/part/manufacturerInformation.vue

@ -126,6 +126,12 @@ export default {
handler: function (newV, oldV) {
this.searchData.manufacturerId = this.searchData.manufacturerId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.manufacturerId = this.modalData.manufacturerId.toUpperCase()
}
}
},
data () {

6
src/views/modules/part/partFamilyInformation.vue

@ -126,6 +126,12 @@ export default {
handler: function (newV, oldV) {
this.searchData.familyId = this.searchData.familyId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.familyId = this.modalData.familyId.toUpperCase()
}
}
},
data () {

6
src/views/modules/part/partGroupInformation.vue

@ -126,6 +126,12 @@ export default {
handler: function (newV, oldV) {
this.searchData.groupId = this.searchData.groupId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.groupId = this.modalData.groupId.toUpperCase()
}
}
},
data () {

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

@ -441,6 +441,13 @@
this.searchData.partNo = this.searchData.partNo.toUpperCase()
this.searchData.erpPartNo = this.searchData.erpPartNo.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.partNo = this.modalData.umId.toUpperCase()
this.modalData.erpPartNo = this.modalData.erpPartNo.toUpperCase()
}
}
},
data () {

6
src/views/modules/part/productGroupInformation.vue

@ -144,6 +144,12 @@ export default {
handler: function (newV, oldV) {
this.searchData.productGroupId = this.searchData.productGroupId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.productGroupId = this.modalData.productGroupId.toUpperCase()
}
}
},
data () {

6
src/views/modules/part/umInformation.vue

@ -127,6 +127,12 @@
handler: function (newV, oldV) {
this.searchData.umId = this.searchData.umId.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.umId = this.modalData.umId.toUpperCase()
}
}
},
data () {

Loading…
Cancel
Save