@byteluck-fe/model-driven-driven 2.5.1-alpha.1 → 2.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/dist/esm/Builder.js +6 -6
- package/dist/esm/Designer.js +50 -50
- package/dist/esm/Driven.js +101 -101
- package/dist/esm/Plugin.js +2 -2
- package/dist/esm/Store.js +68 -68
- package/dist/esm/utils.js +34 -34
- package/dist/index.umd.js +3 -3
- package/dist/types/Builder.d.ts +8 -8
- package/dist/types/Designer.d.ts +36 -36
- package/dist/types/Driven.d.ts +112 -112
- package/dist/types/EventLogic.d.ts +2 -2
- package/dist/types/Plugin.d.ts +6 -6
- package/dist/types/Store.d.ts +82 -82
- package/dist/types/constants.d.ts +6 -6
- package/dist/types/designerUtils.d.ts +4 -4
- package/dist/types/index.d.ts +8 -8
- package/dist/types/utils.d.ts +55 -55
- package/package.json +6 -6
package/dist/esm/Store.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _array_like_to_array(arr, len) {
|
|
2
2
|
if (len == null || len > arr.length) len = arr.length;
|
|
3
3
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
4
4
|
return arr2;
|
|
5
5
|
}
|
|
6
|
-
function
|
|
6
|
+
function _array_with_holes(arr) {
|
|
7
7
|
if (Array.isArray(arr)) return arr;
|
|
8
8
|
}
|
|
9
|
-
function
|
|
10
|
-
if (Array.isArray(arr)) return
|
|
9
|
+
function _array_without_holes(arr) {
|
|
10
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function _class_call_check(instance, Constructor) {
|
|
13
13
|
if (!(instance instanceof Constructor)) {
|
|
14
14
|
throw new TypeError("Cannot call a class as a function");
|
|
15
15
|
}
|
|
@@ -23,12 +23,12 @@ function _defineProperties(target, props) {
|
|
|
23
23
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
27
27
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
28
28
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
29
29
|
return Constructor;
|
|
30
30
|
}
|
|
31
|
-
function
|
|
31
|
+
function _define_property(obj, key, value) {
|
|
32
32
|
if (key in obj) {
|
|
33
33
|
Object.defineProperty(obj, key, {
|
|
34
34
|
value: value,
|
|
@@ -48,10 +48,10 @@ function _instanceof(left, right) {
|
|
|
48
48
|
return left instanceof right;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
|
-
function
|
|
51
|
+
function _iterable_to_array(iter) {
|
|
52
52
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function _iterable_to_array_limit(arr, i) {
|
|
55
55
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
56
56
|
if (_i == null) return;
|
|
57
57
|
var _arr = [];
|
|
@@ -75,25 +75,25 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
75
75
|
}
|
|
76
76
|
return _arr;
|
|
77
77
|
}
|
|
78
|
-
function
|
|
78
|
+
function _non_iterable_rest() {
|
|
79
79
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
80
80
|
}
|
|
81
|
-
function
|
|
81
|
+
function _non_iterable_spread() {
|
|
82
82
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
83
83
|
}
|
|
84
|
-
function
|
|
85
|
-
return
|
|
84
|
+
function _sliced_to_array(arr, i) {
|
|
85
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
86
86
|
}
|
|
87
|
-
function
|
|
88
|
-
return
|
|
87
|
+
function _to_consumable_array(arr) {
|
|
88
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
89
89
|
}
|
|
90
|
-
function
|
|
90
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
91
91
|
if (!o) return;
|
|
92
|
-
if (typeof o === "string") return
|
|
92
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
93
93
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
94
94
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
95
95
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
96
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
96
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
97
97
|
}
|
|
98
98
|
import { DataBind } from "@byteluck-fe/model-driven-core";
|
|
99
99
|
import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
|
|
@@ -103,48 +103,48 @@ import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-share
|
|
|
103
103
|
export var Store = /*#__PURE__*/ function() {
|
|
104
104
|
"use strict";
|
|
105
105
|
function Store(options) {
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* 页面控件实例树
|
|
109
|
-
* */
|
|
110
|
-
/**
|
|
111
|
-
* 拍平的控件数组
|
|
112
|
-
* */
|
|
113
|
-
/**
|
|
114
|
-
* 控件id组成的map
|
|
115
|
-
* */
|
|
116
|
-
/**
|
|
117
|
-
* dataCode和fieldCode组成的map
|
|
118
|
-
* {
|
|
119
|
-
* [主表dataCode]: {
|
|
120
|
-
* [fieldCode]: 控件
|
|
121
|
-
* },
|
|
122
|
-
* [子表dataCode]: {
|
|
123
|
-
* [fieldCode]: 控件
|
|
124
|
-
* }
|
|
125
|
-
* }
|
|
126
|
-
* */
|
|
127
|
-
/**
|
|
128
|
-
* 当前选中的控件
|
|
129
|
-
* */
|
|
130
|
-
/**
|
|
131
|
-
* 当前选中的数据作用域控件
|
|
132
|
-
* */
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* 当前选中控件的setting
|
|
136
|
-
* */
|
|
137
|
-
|
|
138
|
-
/**
|
|
139
|
-
* 当前选中控件的数据模型
|
|
140
|
-
* */
|
|
141
|
-
/**
|
|
142
|
-
* 扩展字段,比如appId,dataCode等
|
|
143
|
-
* */
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
106
|
+
_class_call_check(this, Store);
|
|
107
|
+
/**
|
|
108
|
+
* 页面控件实例树
|
|
109
|
+
* */ _define_property(this, "instance", void 0);
|
|
110
|
+
/**
|
|
111
|
+
* 拍平的控件数组
|
|
112
|
+
* */ _define_property(this, "flatInstances", void 0);
|
|
113
|
+
/**
|
|
114
|
+
* 控件id组成的map
|
|
115
|
+
* */ _define_property(this, "instanceIdMap", void 0);
|
|
116
|
+
/**
|
|
117
|
+
* dataCode和fieldCode组成的map
|
|
118
|
+
* {
|
|
119
|
+
* [主表dataCode]: {
|
|
120
|
+
* [fieldCode]: 控件
|
|
121
|
+
* },
|
|
122
|
+
* [子表dataCode]: {
|
|
123
|
+
* [fieldCode]: 控件
|
|
124
|
+
* }
|
|
125
|
+
* }
|
|
126
|
+
* */ _define_property(this, "dataFieldCodeMap", void 0);
|
|
127
|
+
/**
|
|
128
|
+
* 当前选中的控件
|
|
129
|
+
* */ _define_property(this, "selected", null);
|
|
130
|
+
/**
|
|
131
|
+
* 当前选中的数据作用域控件
|
|
132
|
+
* */ _define_property(this, "selectedInstanceDataScopeParent", null);
|
|
133
|
+
_define_property(this, "selectedDataScopeFlatInstances", []);
|
|
134
|
+
/**
|
|
135
|
+
* 当前选中控件的setting
|
|
136
|
+
* */ _define_property(this, "selectedInstanceSetting", []);
|
|
137
|
+
_define_property(this, "selectedInstanceSettingItems", []);
|
|
138
|
+
/**
|
|
139
|
+
* 当前选中控件的数据模型
|
|
140
|
+
* */ _define_property(this, "selectedFieldItem", null);
|
|
141
|
+
/**
|
|
142
|
+
* 扩展字段,比如appId,dataCode等
|
|
143
|
+
* */ _define_property(this, "external", {});
|
|
144
|
+
_define_property(this, "movingInstance", null);
|
|
145
|
+
_define_property(this, "movingInstanceOldParent", null);
|
|
146
|
+
_define_property(this, "movingInstanceOldDataScopeParent", null);
|
|
147
|
+
_define_property(this, "getParentBeforeInstanceMove", void 0);
|
|
148
148
|
var _options_getParentBeforeInstanceMove;
|
|
149
149
|
this.getParentBeforeInstanceMove = (_options_getParentBeforeInstanceMove = options.getParentBeforeInstanceMove) !== null && _options_getParentBeforeInstanceMove !== void 0 ? _options_getParentBeforeInstanceMove : function(instance) {
|
|
150
150
|
return instance.parent;
|
|
@@ -152,11 +152,11 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
152
152
|
this.instance = options.instance;
|
|
153
153
|
this.getFlatInstances();
|
|
154
154
|
}
|
|
155
|
-
|
|
155
|
+
_create_class(Store, [
|
|
156
156
|
{
|
|
157
157
|
key: "selectedRules",
|
|
158
|
-
get: /**
|
|
159
|
-
* 当前选中控件的rules
|
|
158
|
+
get: /**
|
|
159
|
+
* 当前选中控件的rules
|
|
160
160
|
* */ function get() {
|
|
161
161
|
if (!this.selected) {
|
|
162
162
|
return null;
|
|
@@ -166,8 +166,8 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
key: "selectedAntdRules",
|
|
169
|
-
get: /**
|
|
170
|
-
* 当前选中控件的antd rules
|
|
169
|
+
get: /**
|
|
170
|
+
* 当前选中控件的antd rules
|
|
171
171
|
* */ function get() {
|
|
172
172
|
var rules = this.selectedRules;
|
|
173
173
|
if (!rules) {
|
|
@@ -200,7 +200,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
200
200
|
this.selectedInstanceSettingItems = [];
|
|
201
201
|
this.selectedInstanceSetting.forEach(function(group) {
|
|
202
202
|
var _this_selectedInstanceSettingItems;
|
|
203
|
-
(_this_selectedInstanceSettingItems = _this.selectedInstanceSettingItems).push.apply(_this_selectedInstanceSettingItems,
|
|
203
|
+
(_this_selectedInstanceSettingItems = _this.selectedInstanceSettingItems).push.apply(_this_selectedInstanceSettingItems, _to_consumable_array(_this.getSettingItems(group)));
|
|
204
204
|
});
|
|
205
205
|
}
|
|
206
206
|
},
|
|
@@ -209,7 +209,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
209
209
|
value: function getSettingItems(group) {
|
|
210
210
|
return _instanceof(group, Group) ? group.items : group.items.reduce(function(result, curr) {
|
|
211
211
|
var _result;
|
|
212
|
-
(_result = result).push.apply(_result,
|
|
212
|
+
(_result = result).push.apply(_result, _to_consumable_array(curr.items));
|
|
213
213
|
return result;
|
|
214
214
|
}, []);
|
|
215
215
|
}
|
|
@@ -242,7 +242,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
242
242
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
243
243
|
try {
|
|
244
244
|
for(var _iterator = map.entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
245
|
-
var _step_value =
|
|
245
|
+
var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
246
246
|
if (value.id === instance.id) {
|
|
247
247
|
map.delete(key);
|
|
248
248
|
break;
|
package/dist/esm/utils.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _array_like_to_array(arr, len) {
|
|
2
2
|
if (len == null || len > arr.length) len = arr.length;
|
|
3
3
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
4
4
|
return arr2;
|
|
5
5
|
}
|
|
6
|
-
function
|
|
6
|
+
function _array_with_holes(arr) {
|
|
7
7
|
if (Array.isArray(arr)) return arr;
|
|
8
8
|
}
|
|
9
|
-
function
|
|
10
|
-
if (Array.isArray(arr)) return
|
|
9
|
+
function _array_without_holes(arr) {
|
|
10
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
11
11
|
}
|
|
12
12
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
13
13
|
try {
|
|
@@ -23,7 +23,7 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
23
23
|
Promise.resolve(value).then(_next, _throw);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function _async_to_generator(fn) {
|
|
27
27
|
return function() {
|
|
28
28
|
var self = this, args = arguments;
|
|
29
29
|
return new Promise(function(resolve, reject) {
|
|
@@ -38,10 +38,10 @@ function _asyncToGenerator(fn) {
|
|
|
38
38
|
});
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
function
|
|
41
|
+
function _iterable_to_array(iter) {
|
|
42
42
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function _iterable_to_array_limit(arr, i) {
|
|
45
45
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
46
46
|
if (_i == null) return;
|
|
47
47
|
var _arr = [];
|
|
@@ -65,27 +65,27 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
65
65
|
}
|
|
66
66
|
return _arr;
|
|
67
67
|
}
|
|
68
|
-
function
|
|
68
|
+
function _non_iterable_rest() {
|
|
69
69
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
70
70
|
}
|
|
71
|
-
function
|
|
71
|
+
function _non_iterable_spread() {
|
|
72
72
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
73
73
|
}
|
|
74
|
-
function
|
|
75
|
-
return
|
|
74
|
+
function _sliced_to_array(arr, i) {
|
|
75
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
76
76
|
}
|
|
77
|
-
function
|
|
78
|
-
return
|
|
77
|
+
function _to_consumable_array(arr) {
|
|
78
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
79
79
|
}
|
|
80
|
-
function
|
|
80
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
81
81
|
if (!o) return;
|
|
82
|
-
if (typeof o === "string") return
|
|
82
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
83
83
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
84
84
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
85
85
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
86
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
86
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
87
87
|
}
|
|
88
|
-
|
|
88
|
+
function _ts_generator(thisArg, body) {
|
|
89
89
|
var f, y, t, g, _ = {
|
|
90
90
|
label: 0,
|
|
91
91
|
sent: function() {
|
|
@@ -179,7 +179,7 @@ var __generator = this && this.__generator || function(thisArg, body) {
|
|
|
179
179
|
done: true
|
|
180
180
|
};
|
|
181
181
|
}
|
|
182
|
-
}
|
|
182
|
+
}
|
|
183
183
|
import { loopFormControl } from "./designerUtils";
|
|
184
184
|
import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
|
|
185
185
|
import Designer from "./Designer";
|
|
@@ -195,9 +195,9 @@ export function getMasterFormControls(controls) {
|
|
|
195
195
|
});
|
|
196
196
|
return formctls;
|
|
197
197
|
}
|
|
198
|
-
/**
|
|
199
|
-
* @description 给modelBindInfoList中填充fieldCode和dataCode
|
|
200
|
-
* @description 我们生成fieldCode的规则是:DataBind的控件,取`field_${id}`,ObjectDataBind的控件,取`field_${id}_${key}`, key指的是ObjectDataBind.keys()
|
|
198
|
+
/**
|
|
199
|
+
* @description 给modelBindInfoList中填充fieldCode和dataCode
|
|
200
|
+
* @description 我们生成fieldCode的规则是:DataBind的控件,取`field_${id}`,ObjectDataBind的控件,取`field_${id}_${key}`, key指的是ObjectDataBind.keys()
|
|
201
201
|
* */ export function fillModelBindInfoListFieldCode(modelBindInfoList) {
|
|
202
202
|
var dataCode = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "";
|
|
203
203
|
if (!modelBindInfoList || !Array.isArray(modelBindInfoList)) return [];
|
|
@@ -228,13 +228,13 @@ function fieldCodeBeforeAddPrefix(fieldCode) {
|
|
|
228
228
|
}
|
|
229
229
|
return prefix + fieldCode;
|
|
230
230
|
}
|
|
231
|
-
/**
|
|
232
|
-
* @description 通过fieldType获取列表表头的type
|
|
231
|
+
/**
|
|
232
|
+
* @description 通过fieldType获取列表表头的type
|
|
233
233
|
* */ export function getColumnTypeFromFiledType(fieldType) {
|
|
234
234
|
return FieldTypeToColumnType[fieldType];
|
|
235
235
|
}
|
|
236
|
-
/**
|
|
237
|
-
* @description 通过modelBindInfoList生成多个columns
|
|
236
|
+
/**
|
|
237
|
+
* @description 通过modelBindInfoList生成多个columns
|
|
238
238
|
* */ export function getColumnsFromModelBindInfoList(modelBindInfoList) {
|
|
239
239
|
var designer = new Designer();
|
|
240
240
|
var columns = [];
|
|
@@ -320,9 +320,9 @@ function checkSchema(controls, messages, ignore) {
|
|
|
320
320
|
return _checkSchema.apply(this, arguments);
|
|
321
321
|
}
|
|
322
322
|
function _checkSchema() {
|
|
323
|
-
_checkSchema =
|
|
323
|
+
_checkSchema = _async_to_generator(function(controls, messages, ignore) {
|
|
324
324
|
var result;
|
|
325
|
-
return
|
|
325
|
+
return _ts_generator(this, function(_state) {
|
|
326
326
|
switch(_state.label){
|
|
327
327
|
case 0:
|
|
328
328
|
if (!Array.isArray(controls)) return [
|
|
@@ -403,7 +403,7 @@ function generatePermissions(controls, parent) {
|
|
|
403
403
|
var result = [];
|
|
404
404
|
if (isArray(controls)) {
|
|
405
405
|
var _result;
|
|
406
|
-
(_result = result).push.apply(_result,
|
|
406
|
+
(_result = result).push.apply(_result, _to_consumable_array(controls.map(function(item) {
|
|
407
407
|
return generatePermissions(item, parent);
|
|
408
408
|
}).flat()));
|
|
409
409
|
} else {
|
|
@@ -436,8 +436,8 @@ function generatePermissions(controls, parent) {
|
|
|
436
436
|
// ) {
|
|
437
437
|
if (controls.controlType === CONTROL_BASE_TYPE.FORM || controls.controlType === CONTROL_BASE_TYPE.COLUMN) {
|
|
438
438
|
var //@ts-ignore
|
|
439
|
-
|
|
440
|
-
|
|
439
|
+
_controls_props_dataBind, _controls_props1, //@ts-ignore
|
|
440
|
+
_controls_props_dataBind1, _controls_props2;
|
|
441
441
|
if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== "") {
|
|
442
442
|
permissionItem.group = "field";
|
|
443
443
|
}
|
|
@@ -445,7 +445,7 @@ function generatePermissions(controls, parent) {
|
|
|
445
445
|
result.push(permissionItem);
|
|
446
446
|
//追加vue容器权限
|
|
447
447
|
if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
|
|
448
|
-
var _controls_props3,
|
|
448
|
+
var _controls_props_dataBind2, _controls_props3, _controls_props_dataBind3, _controls_props4;
|
|
449
449
|
var vueFormItemGroup = "element";
|
|
450
450
|
if (((_controls_props3 = controls.props) === null || _controls_props3 === void 0 ? void 0 : (_controls_props_dataBind2 = _controls_props3.dataBind) === null || _controls_props_dataBind2 === void 0 ? void 0 : _controls_props_dataBind2.fieldCode) !== undefined && ((_controls_props4 = controls.props) === null || _controls_props4 === void 0 ? void 0 : (_controls_props_dataBind3 = _controls_props4.dataBind) === null || _controls_props_dataBind3 === void 0 ? void 0 : _controls_props_dataBind3.fieldCode) !== "") {
|
|
451
451
|
vueFormItemGroup = "field";
|
|
@@ -470,7 +470,7 @@ function generatePermissions(controls, parent) {
|
|
|
470
470
|
} else if (type === CONTROL_TYPE.OPERATION_COLUMN) {
|
|
471
471
|
// 列表的操作列单独处理
|
|
472
472
|
Object.entries(LIST_OPERATION_BUTTON_PERMISSIONS_MAPS).reduce(function(result, param) {
|
|
473
|
-
var _param =
|
|
473
|
+
var _param = _sliced_to_array(param, 2), key = _param[0], _param_ = _param[1], caption = _param_.caption, controlId = _param_.id;
|
|
474
474
|
var operationItem = controls.props[key];
|
|
475
475
|
if (operationItem && operationItem.isShow) {
|
|
476
476
|
var _parent_controlId;
|
|
@@ -512,7 +512,7 @@ function generatePermissions(controls, parent) {
|
|
|
512
512
|
// }
|
|
513
513
|
if (controls.children) {
|
|
514
514
|
var _result1;
|
|
515
|
-
(_result1 = result).push.apply(_result1,
|
|
515
|
+
(_result1 = result).push.apply(_result1, _to_consumable_array(controls.children.map(function(item) {
|
|
516
516
|
return generatePermissions(item, parent);
|
|
517
517
|
}).flat()));
|
|
518
518
|
}
|
|
@@ -520,7 +520,7 @@ function generatePermissions(controls, parent) {
|
|
|
520
520
|
if (controls.controlType === CONTROL_BASE_TYPE.LIST) {
|
|
521
521
|
var // 明细子表和列表的需要给parentId
|
|
522
522
|
_result2;
|
|
523
|
-
(_result2 = result).push.apply(_result2,
|
|
523
|
+
(_result2 = result).push.apply(_result2, _to_consumable_array(controls.props.headers.map(function(item) {
|
|
524
524
|
return generatePermissions(item, permissionItem);
|
|
525
525
|
}).flat()));
|
|
526
526
|
}
|