|
@@ -65,7 +65,8 @@ export default {
|
|
|
control: function (newVal) {
|
|
|
if (newVal) {
|
|
|
let names = [];
|
|
|
- for (const key in newVal.function) {
|
|
|
+ const keys = Object.keys(newVal.function).sort();
|
|
|
+ for (const key of keys) {
|
|
|
names.push(key);
|
|
|
}
|
|
|
this.list = this.__proto__.getControlItem(names, newVal, {
|