Browse Source

fix: 修复ApiSelect属性被覆盖的问题 (#1226)

pull/1252/head
Joyboo 5 years ago
committed by GitHub
parent
commit
754d1986e9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/Form/src/components/ApiSelect.vue

2
src/components/Form/src/components/ApiSelect.vue

@ -77,9 +77,9 @@
if (next) {
const value = next[valueField];
prev.push({
...omit(next, [labelField, valueField]),
label: next[labelField],
value: numberToString ? `${value}` : value,
...omit(next, [labelField, valueField]),
});
}
return prev;

Loading…
Cancel
Save