Browse Source

Merge pull request '修复单位下拉列表不显示问题' (#82) from xuxiaoming into develop

Reviewed-on: http://101.201.121.115:3000/leo/LAPP_AdvancedPlanner_Front/pulls/82
pull/87/head
xuxiaoming 3 years ago
parent
commit
c1d56a32dc
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