Browse Source

修复单位下拉列表不显示问题

pull/82/head
xuxiaoming 3 years ago
parent
commit
8902c06ee4
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/views/factoryModel/part/material/BOMConfigure.vue

+ 3
- 2
src/views/factoryModel/part/material/BOMConfigure.vue View File

@ -359,8 +359,9 @@ export default {
},
//
getUOMArr() {
getUOMArr().then(({ data: { records = [] } }) => {
this.uomArray = records || [];
getUOMArr().then(({ data= [] }) => {
this.uomArray = data || [];
});
},
//


Loading…
Cancel
Save