super-page-designer 2.0.9 → 2.0.17
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/dist/es/components/design/utils/assemblys-config.js +85 -55
- package/dist/es/components/design/utils/chart-design-util.js +203 -160
- package/dist/es/components/design/utils/form-design-util.d.ts +5 -4
- package/dist/es/components/design/utils/form-design-util.js +55 -153
- package/dist/es/components/design/utils/interfaces/page-design-types.d.ts +0 -1
- package/dist/es/components/design/utils/page-design-util.d.ts +2 -1
- package/dist/es/components/design/utils/page-design-util.js +8 -2
- package/dist/es/components/design/utils/page-service-util.d.ts +15 -0
- package/dist/es/components/design/utils/page-service-util.js +5 -0
- package/dist/es/components/design/views/assemblys/button/button/button-attr-base.vue.js +19 -2
- package/dist/es/components/design/views/assemblys/button/button/button-attr-event.vue.js +6 -3
- package/dist/es/components/design/views/assemblys/chart/column-line/column-line-attr-base.vue.js +6 -3
- package/dist/es/components/design/views/assemblys/chart/column-line/column-line-attr-style.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/chart/column-line/column-line-design.vue2.js +7 -3
- package/dist/es/components/design/views/assemblys/chart/column-line/series/column-line-series-attr-base.vue.js +3 -1
- package/dist/es/components/design/views/assemblys/chart/column-line/series/column-line-series-attr-style.vue.js +4 -1
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-data.vue.js +68 -3
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-groupby.vue.js +94 -16
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-serieslist.vue.js +12 -6
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-sortby.vue.js +30 -13
- package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dataset-columnline.vue.js +21 -3
- package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dynamic.vue.js +12 -66
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-attr-base.vue.js +20 -12
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-attr-data.vue.js +318 -0
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-attr-data.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-attr-style.vue.js +5 -2
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-design.vue2.js +34 -15
- package/dist/es/components/design/views/assemblys/chart/gauge/series/gauge-series-attr-base.vue.js +4 -19
- package/dist/es/components/design/views/assemblys/chart/gauge/series/gauge-series-attr-style.vue.js +5 -2
- package/dist/es/components/design/views/assemblys/chart/pie/pie-attr-base.vue.js +18 -5
- package/dist/es/components/design/views/assemblys/chart/pie/pie-attr-style.vue.js +5 -2
- package/dist/es/components/design/views/assemblys/chart/pie/pie-design.vue2.js +34 -16
- package/dist/es/components/design/views/assemblys/chart/pie/series/pie-series-attr-base.vue.js +4 -22
- package/dist/es/components/design/views/assemblys/chart/pie/series/pie-series-attr-style.vue.js +4 -1
- package/dist/es/components/design/views/assemblys/chart/radar/radar-attr-base.vue.js +23 -9
- package/dist/es/components/design/views/assemblys/chart/radar/radar-attr-data.vue.js +318 -0
- package/dist/es/components/design/views/assemblys/chart/radar/radar-attr-data.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/chart/radar/radar-attr-style.vue.js +25 -12
- package/dist/es/components/design/views/assemblys/chart/radar/radar-design.vue2.js +37 -13
- package/dist/es/components/design/views/assemblys/chart/radar/series/series-attr-base.vue.js +4 -17
- package/dist/es/components/design/views/assemblys/chart/radar/series/series-attr-dataset.vue.js +82 -256
- package/dist/es/components/design/views/assemblys/chart/radar/series/series-attr-style.vue.js +12 -17
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-attr-base.vue.js +23 -13
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-attr-data.vue.js +205 -0
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-attr-data.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-attr-style.vue.js +5 -7
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-design.vue2.js +35 -12
- package/dist/es/components/design/views/assemblys/chart/scatter/series/scatter-series-attr-base.vue.js +6 -77
- package/dist/es/components/design/views/assemblys/chart/scatter/series/scatter-series-attr-style.vue.js +4 -1
- package/dist/es/components/design/views/assemblys/chart/scatter/series/scatter-series-data.vue.js +191 -0
- package/dist/es/components/design/views/assemblys/chart/scatter/series/scatter-series-data.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/container/tabs/tabs-attr-event.vue.js +30 -0
- package/dist/es/components/design/views/assemblys/container/tabs/tabs-attr-event.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/container/tabs/tabs-attr.vue2.js +2 -1
- package/dist/es/components/design/views/assemblys/form/common/parameter-table.vue.js +186 -0
- package/dist/es/components/design/views/assemblys/form/common/parameter-table.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/common/suffixmodule.vue.js +28 -4
- package/dist/es/components/design/views/assemblys/form/custom/custom-attr-base.vue.js +11 -169
- package/dist/es/components/design/views/assemblys/form/custom/custom-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/custom/custom-design.vue2.js +3 -12
- package/dist/es/components/design/views/assemblys/form/input-text/inputtext-attr-base.vue.js +33 -10
- package/dist/es/components/design/views/assemblys/form/input-text/inputtext-attr.vue2.js +10 -1
- package/dist/es/components/design/views/assemblys/form/link/link-attr-base.vue.js +15 -3
- package/dist/es/components/design/views/assemblys/object-design.vue.js +52 -77
- package/dist/es/components/design/views/assemblys/page/component/setting-form-rule-base-input.vue.d.ts +2 -2
- package/dist/es/components/design/views/design/page-design.vue.d.ts +13 -1
- package/dist/es/components/design/views/design/page-design.vue.js +218 -100
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
- package/dist/es/components/design/views/design/page-event/page-event-content.vue2.js +19 -9
- package/dist/es/components/design/views/design/view/page-switch.vue.d.ts +18 -0
- package/dist/es/components/design/views/design/view/page-switch.vue.js +7 -0
- package/dist/es/components/design/views/design/view/page-switch.vue2.js +185 -0
- package/dist/es/components/design/views/design/view/page-switch.vue3.js +1 -0
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +1 -1
- package/dist/es/components/design/views/design/view/view-design-preview.vue.js +2 -2
- package/dist/es/components/design/views/design/view/view-design.vue.js +7 -9
- package/dist/es/style.css +350 -133
- package/package.json +7 -6
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-drill.vue.js +0 -108
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-drill.vue2.js +0 -4
- package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dataset.vue.js +0 -166
- package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dataset.vue2.js +0 -4
- package/dist/es/components/design/views/assemblys/chart/gauge/series/gauge-series-attr-dataset.vue.js +0 -153
- package/dist/es/components/design/views/assemblys/chart/gauge/series/gauge-series-attr-dataset.vue2.js +0 -4
- package/dist/es/components/design/views/assemblys/chart/radar/series/attrs/attr-testdatas.vue.js +0 -58
- package/dist/es/components/design/views/assemblys/chart/radar/series/attrs/attr-testdatas.vue2.js +0 -4
- package/dist/es/components/design/views/assemblys/form/common/linkpage-params-in.vue.js +0 -154
- package/dist/es/components/design/views/assemblys/form/common/linkpage-params-in.vue2.js +0 -4
- package/dist/es/components/design/views/assemblys/form/common/title.vue.js +0 -45
- package/dist/es/components/design/views/assemblys/form/common/title.vue2.js +0 -4
|
@@ -80,6 +80,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
80
80
|
function afterBindVariable(modelValue, field) {
|
|
81
81
|
if (field == "groupVariable") {
|
|
82
82
|
props.configure.props.groupVariable = modelValue;
|
|
83
|
+
} else if (field == "selGroupVariable") {
|
|
84
|
+
props.configure.props.selGroupVariable = modelValue;
|
|
83
85
|
}
|
|
84
86
|
}
|
|
85
87
|
const sourceFields = ref([]);
|
|
@@ -95,6 +97,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
95
97
|
if (hisServiceFields) {
|
|
96
98
|
const prevField = hisServiceDataField ? hisServiceDataField : "";
|
|
97
99
|
for (let f of hisServiceFields) {
|
|
100
|
+
if (!(!f.type || f.type == "string" || f.type == "any")) {
|
|
101
|
+
continue;
|
|
102
|
+
}
|
|
98
103
|
if (!prevField || f.value.startsWith(prevField + ".")) {
|
|
99
104
|
const tempField = {};
|
|
100
105
|
Object.assign(tempField, f);
|
|
@@ -125,9 +130,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
125
130
|
const _component_el_option = resolveComponent("el-option");
|
|
126
131
|
const _component_el_select = resolveComponent("el-select");
|
|
127
132
|
const _component_el_table = resolveComponent("el-table");
|
|
133
|
+
const _component_el_switch = resolveComponent("el-switch");
|
|
128
134
|
const _component_el_form_item = resolveComponent("el-form-item");
|
|
129
135
|
const _component_el_radio_button = resolveComponent("el-radio-button");
|
|
130
136
|
const _component_el_radio_group = resolveComponent("el-radio-group");
|
|
137
|
+
const _component_el_text = resolveComponent("el-text");
|
|
131
138
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
132
139
|
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
133
140
|
title: "统计纬度",
|
|
@@ -252,13 +259,25 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
252
259
|
_: 1
|
|
253
260
|
}, 8, ["data"]),
|
|
254
261
|
createVNode(_component_el_form_item, {
|
|
262
|
+
label: "数据钻取",
|
|
263
|
+
style: { "margin-top": "10px", "margin-bottom": "-15px" }
|
|
264
|
+
}, {
|
|
265
|
+
default: withCtx(() => [
|
|
266
|
+
createVNode(_component_el_switch, {
|
|
267
|
+
modelValue: __props.configure.props.enableDrill,
|
|
268
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.enableDrill = $event)
|
|
269
|
+
}, null, 8, ["modelValue"])
|
|
270
|
+
]),
|
|
271
|
+
_: 1
|
|
272
|
+
}),
|
|
273
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
255
274
|
label: "维度来源",
|
|
256
|
-
style: { "margin-top": "
|
|
275
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
257
276
|
}, {
|
|
258
277
|
default: withCtx(() => [
|
|
259
278
|
createVNode(_component_el_select, {
|
|
260
279
|
modelValue: __props.configure.props.groupSource,
|
|
261
|
-
"onUpdate:modelValue": _cache[
|
|
280
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.groupSource = $event),
|
|
262
281
|
placeholder: "默认",
|
|
263
282
|
clearable: ""
|
|
264
283
|
}, {
|
|
@@ -276,15 +295,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
276
295
|
}, 8, ["modelValue"])
|
|
277
296
|
]),
|
|
278
297
|
_: 1
|
|
279
|
-
}),
|
|
298
|
+
}, 512), [
|
|
299
|
+
[vShow, !__props.configure.props.enableDrill]
|
|
300
|
+
]),
|
|
280
301
|
withDirectives(createVNode(_component_el_form_item, {
|
|
281
302
|
label: "显示位置",
|
|
282
|
-
style: { "margin-top": "-
|
|
303
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
283
304
|
}, {
|
|
284
305
|
default: withCtx(() => [
|
|
285
306
|
createVNode(_component_el_select, {
|
|
286
307
|
modelValue: __props.configure.props.groupPosition,
|
|
287
|
-
"onUpdate:modelValue": _cache[
|
|
308
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.groupPosition = $event),
|
|
288
309
|
placeholder: "不显示",
|
|
289
310
|
clearable: ""
|
|
290
311
|
}, {
|
|
@@ -307,16 +328,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
307
328
|
]),
|
|
308
329
|
_: 1
|
|
309
330
|
}, 512), [
|
|
310
|
-
[vShow, !__props.configure.props.groupSource || __props.configure.props.groupSource == "fix"]
|
|
331
|
+
[vShow, !__props.configure.props.groupSource || __props.configure.props.groupSource == "fix" || __props.configure.props.enableDrill]
|
|
311
332
|
]),
|
|
312
333
|
withDirectives(createVNode(_component_el_form_item, {
|
|
313
334
|
label: "显示组件",
|
|
314
|
-
style: { "margin-top": "-
|
|
335
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
315
336
|
}, {
|
|
316
337
|
default: withCtx(() => [
|
|
317
338
|
createVNode(_component_el_radio_group, {
|
|
318
339
|
modelValue: __props.configure.props.groupComponent,
|
|
319
|
-
"onUpdate:modelValue": _cache[
|
|
340
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.groupComponent = $event)
|
|
320
341
|
}, {
|
|
321
342
|
default: withCtx(() => [
|
|
322
343
|
createVNode(_component_el_radio_button, { value: "group" }, {
|
|
@@ -343,31 +364,34 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
343
364
|
]),
|
|
344
365
|
_: 1
|
|
345
366
|
}, 512), [
|
|
346
|
-
[
|
|
367
|
+
[
|
|
368
|
+
vShow,
|
|
369
|
+
__props.configure.props.groupSource != "variable" && __props.configure.props.groupPosition && !__props.configure.props.enableDrill
|
|
370
|
+
]
|
|
347
371
|
]),
|
|
348
372
|
withDirectives(createVNode(_component_el_form_item, {
|
|
349
373
|
label: "维度变量",
|
|
350
|
-
style: { "margin-top": "-
|
|
374
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
351
375
|
}, {
|
|
352
376
|
default: withCtx(() => [
|
|
353
377
|
createVNode(BindVariable, {
|
|
354
378
|
modelValue: __props.configure.props.groupVariable,
|
|
355
379
|
paramTypes: ["data", "page"],
|
|
356
|
-
"onUpdate:modelValue": _cache[
|
|
380
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = (value) => afterBindVariable(value, "groupVariable"))
|
|
357
381
|
}, null, 8, ["modelValue"])
|
|
358
382
|
]),
|
|
359
383
|
_: 1
|
|
360
384
|
}, 512), [
|
|
361
|
-
[vShow, __props.configure.props.groupSource == "variable"]
|
|
385
|
+
[vShow, __props.configure.props.groupSource == "variable" && !__props.configure.props.enableDrill]
|
|
362
386
|
]),
|
|
363
|
-
createVNode(_component_el_form_item, {
|
|
387
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
364
388
|
label: "多维度显示",
|
|
365
|
-
style: { "margin-top": "
|
|
389
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
366
390
|
}, {
|
|
367
391
|
default: withCtx(() => [
|
|
368
392
|
createVNode(_component_el_radio_group, {
|
|
369
393
|
modelValue: __props.configure.props.mulGroupShow,
|
|
370
|
-
"onUpdate:modelValue": _cache[
|
|
394
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.mulGroupShow = $event)
|
|
371
395
|
}, {
|
|
372
396
|
default: withCtx(() => [
|
|
373
397
|
createVNode(_component_el_radio_button, { value: "space" }, {
|
|
@@ -387,7 +411,61 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
387
411
|
}, 8, ["modelValue"])
|
|
388
412
|
]),
|
|
389
413
|
_: 1
|
|
390
|
-
})
|
|
414
|
+
}, 512), [
|
|
415
|
+
[vShow, !__props.configure.props.enableDrill]
|
|
416
|
+
]),
|
|
417
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
418
|
+
label: "选中维度至",
|
|
419
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
420
|
+
}, {
|
|
421
|
+
default: withCtx(() => [
|
|
422
|
+
createVNode(BindVariable, {
|
|
423
|
+
modelValue: __props.configure.props.selGroupVariable,
|
|
424
|
+
paramTypes: ["data", "page"],
|
|
425
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = (value) => afterBindVariable(value, "selGroupVariable"))
|
|
426
|
+
}, null, 8, ["modelValue"]),
|
|
427
|
+
createVNode(_component_el_text, {
|
|
428
|
+
type: "success",
|
|
429
|
+
size: "small"
|
|
430
|
+
}, {
|
|
431
|
+
default: withCtx(() => [
|
|
432
|
+
createTextVNode("将选中的维度值设置到变量")
|
|
433
|
+
]),
|
|
434
|
+
_: 1
|
|
435
|
+
})
|
|
436
|
+
]),
|
|
437
|
+
_: 1
|
|
438
|
+
}, 512), [
|
|
439
|
+
[vShow, !__props.configure.props.enableDrill]
|
|
440
|
+
]),
|
|
441
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
442
|
+
label: "最后层级时",
|
|
443
|
+
style: { "margin-top": "20px", "margin-bottom": "-15px" }
|
|
444
|
+
}, {
|
|
445
|
+
default: withCtx(() => [
|
|
446
|
+
createVNode(_component_el_select, {
|
|
447
|
+
modelValue: __props.configure.props.drillEndTrigger,
|
|
448
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.drillEndTrigger = $event),
|
|
449
|
+
clearable: "",
|
|
450
|
+
placeholder: "无动作"
|
|
451
|
+
}, {
|
|
452
|
+
default: withCtx(() => [
|
|
453
|
+
createVNode(_component_el_option, {
|
|
454
|
+
value: "clearDrill",
|
|
455
|
+
label: "清除钻取层级"
|
|
456
|
+
}),
|
|
457
|
+
createVNode(_component_el_option, {
|
|
458
|
+
value: "clickEvent",
|
|
459
|
+
label: "触发Click事件"
|
|
460
|
+
})
|
|
461
|
+
]),
|
|
462
|
+
_: 1
|
|
463
|
+
}, 8, ["modelValue"])
|
|
464
|
+
]),
|
|
465
|
+
_: 1
|
|
466
|
+
}, 512), [
|
|
467
|
+
[vShow, __props.configure.props.enableDrill]
|
|
468
|
+
])
|
|
391
469
|
])
|
|
392
470
|
]),
|
|
393
471
|
_: 1
|
package/dist/es/components/design/views/assemblys/chart/common/common-attr-serieslist.vue.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref } from "vue";
|
|
1
|
+
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref } from "vue";
|
|
2
|
+
import { getUuidv4 } from "../../../../utils/common-util.js";
|
|
2
3
|
import { Top, Bottom, Plus, Delete } from "@element-plus/icons-vue";
|
|
3
4
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
4
5
|
const _hoisted_2 = { style: { "text-align": "center", "margin": "0px -8px", "padding-top": "4px", "padding-left": "2px" } };
|
|
@@ -16,6 +17,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
16
17
|
},
|
|
17
18
|
setup(__props) {
|
|
18
19
|
const props = __props;
|
|
20
|
+
const thisTitle = ref("系列列表");
|
|
21
|
+
if (props.defaultType == "radar") {
|
|
22
|
+
thisTitle.value = "数据列表";
|
|
23
|
+
}
|
|
19
24
|
function moveTop(rowItem) {
|
|
20
25
|
let sortIndex = -1;
|
|
21
26
|
const itemLen = props.configure.items.length;
|
|
@@ -62,8 +67,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
62
67
|
type: props.defaultType ? props.defaultType : "bar",
|
|
63
68
|
//默认柱状图
|
|
64
69
|
index: maxIndex + 1,
|
|
70
|
+
uuid: getUuidv4(),
|
|
65
71
|
props: {
|
|
66
|
-
title: "系列" + (maxIndex + 1)
|
|
72
|
+
title: (props.defaultType == "radar" ? "数据" : "系列") + (maxIndex + 1)
|
|
67
73
|
},
|
|
68
74
|
style: { yaxisLeft: {}, yaxisRight: {} }
|
|
69
75
|
});
|
|
@@ -95,7 +101,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
95
101
|
const _component_el_table = resolveComponent("el-table");
|
|
96
102
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
97
103
|
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
98
|
-
title:
|
|
104
|
+
title: thisTitle.value,
|
|
99
105
|
name: "seriesList",
|
|
100
106
|
class: "amb-design-attr-group-header"
|
|
101
107
|
}, {
|
|
@@ -158,7 +164,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
158
164
|
default: withCtx((scope) => [
|
|
159
165
|
createVNode(_component_el_icon, {
|
|
160
166
|
size: "14",
|
|
161
|
-
style: { "color": "#
|
|
167
|
+
style: { "color": "#5893ef", "cursor": "pointer", "font-weight": "bold", "margin-right": "8px" },
|
|
162
168
|
onClick: ($event) => addSeries(scope.row)
|
|
163
169
|
}, {
|
|
164
170
|
default: withCtx(() => [
|
|
@@ -168,7 +174,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
168
174
|
}, 1032, ["onClick"]),
|
|
169
175
|
createVNode(_component_el_icon, {
|
|
170
176
|
size: "14",
|
|
171
|
-
style: { "color": "#
|
|
177
|
+
style: { "color": "#5893ef", "cursor": "pointer" },
|
|
172
178
|
onClick: ($event) => deleteSeries(scope.row)
|
|
173
179
|
}, {
|
|
174
180
|
default: withCtx(() => [
|
|
@@ -185,7 +191,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
185
191
|
])
|
|
186
192
|
]),
|
|
187
193
|
_: 1
|
|
188
|
-
});
|
|
194
|
+
}, 8, ["title"]);
|
|
189
195
|
};
|
|
190
196
|
}
|
|
191
197
|
});
|
|
@@ -52,6 +52,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
52
52
|
const _component_el_text = resolveComponent("el-text");
|
|
53
53
|
const _component_el_radio_group = resolveComponent("el-radio-group");
|
|
54
54
|
const _component_el_divider = resolveComponent("el-divider");
|
|
55
|
+
const _component_el_switch = resolveComponent("el-switch");
|
|
55
56
|
const _component_el_input_number = resolveComponent("el-input-number");
|
|
56
57
|
const _component_el_input = resolveComponent("el-input");
|
|
57
58
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
@@ -64,7 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
64
65
|
createElementVNode("div", _hoisted_1, [
|
|
65
66
|
createVNode(_component_el_form_item, {
|
|
66
67
|
label: "排序对象",
|
|
67
|
-
style: { "margin-top": "4px", "margin-bottom": "
|
|
68
|
+
style: { "margin-top": "4px", "margin-bottom": "-5px" }
|
|
68
69
|
}, {
|
|
69
70
|
default: withCtx(() => [
|
|
70
71
|
createVNode(_component_el_select, {
|
|
@@ -91,7 +92,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
91
92
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.orderSource = $event)
|
|
92
93
|
}, {
|
|
93
94
|
default: withCtx(() => [
|
|
94
|
-
withDirectives(createVNode(_component_el_form_item, { style: { "margin-top": "
|
|
95
|
+
withDirectives(createVNode(_component_el_form_item, { style: { "margin-top": "15px" } }, {
|
|
95
96
|
label: withCtx(() => [
|
|
96
97
|
createVNode(_component_el_radio, { value: "fix" }, {
|
|
97
98
|
default: withCtx(() => [
|
|
@@ -162,26 +163,38 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
162
163
|
_: 1
|
|
163
164
|
}, 8, ["modelValue"]),
|
|
164
165
|
createVNode(_component_el_divider, { style: { "margin-top": "-5px", "margin-bottom": "15px" } }),
|
|
165
|
-
createVNode(
|
|
166
|
+
createVNode(_component_el_form_item, {
|
|
167
|
+
label: "限制数量",
|
|
168
|
+
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
169
|
+
}, {
|
|
170
|
+
default: withCtx(() => [
|
|
171
|
+
createVNode(_component_el_switch, {
|
|
172
|
+
modelValue: __props.configure.props.limitQuantity,
|
|
173
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.limitQuantity = $event)
|
|
174
|
+
}, null, 8, ["modelValue"])
|
|
175
|
+
]),
|
|
176
|
+
_: 1
|
|
177
|
+
}),
|
|
178
|
+
withDirectives(createVNode(_component_el_radio_group, {
|
|
166
179
|
modelValue: __props.configure.props.itemNumSource,
|
|
167
|
-
"onUpdate:modelValue": _cache[
|
|
180
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.itemNumSource = $event)
|
|
168
181
|
}, {
|
|
169
182
|
default: withCtx(() => [
|
|
170
|
-
createVNode(_component_el_form_item, { style: { "margin-top": "
|
|
183
|
+
createVNode(_component_el_form_item, { style: { "margin-top": "25px" } }, {
|
|
171
184
|
label: withCtx(() => [
|
|
172
185
|
createVNode(_component_el_radio, { value: "fix" }, {
|
|
173
186
|
default: withCtx(() => [
|
|
174
|
-
createTextVNode("
|
|
187
|
+
createTextVNode("固定数量")
|
|
175
188
|
]),
|
|
176
189
|
_: 1
|
|
177
190
|
})
|
|
178
191
|
]),
|
|
179
192
|
default: withCtx(() => [
|
|
180
193
|
createVNode(_component_el_input_number, {
|
|
181
|
-
disabled: __props.configure.props.itemNumSource != "fix",
|
|
194
|
+
disabled: __props.configure.props.itemNumSource && __props.configure.props.itemNumSource != "fix",
|
|
182
195
|
placeholder: "10",
|
|
183
196
|
modelValue: __props.configure.props.itemNumFix,
|
|
184
|
-
"onUpdate:modelValue": _cache[
|
|
197
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.itemNumFix = $event),
|
|
185
198
|
min: 1
|
|
186
199
|
}, null, 8, ["disabled", "modelValue"])
|
|
187
200
|
]),
|
|
@@ -201,7 +214,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
201
214
|
showLabel: __props.configure.props.itemNumSource != "variable",
|
|
202
215
|
modelValue: __props.configure.props.itemNumVariable,
|
|
203
216
|
paramTypes: ["data", "page"],
|
|
204
|
-
"onUpdate:modelValue": _cache[
|
|
217
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = (value) => afterBindVariable(value, "itemNumVariable"))
|
|
205
218
|
}, null, 8, ["showLabel", "modelValue"]),
|
|
206
219
|
withDirectives(createVNode(_component_el_text, {
|
|
207
220
|
type: "success",
|
|
@@ -219,15 +232,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
219
232
|
})
|
|
220
233
|
]),
|
|
221
234
|
_: 1
|
|
222
|
-
}, 8, ["modelValue"]),
|
|
223
|
-
|
|
235
|
+
}, 8, ["modelValue"]), [
|
|
236
|
+
[vShow, __props.configure.props.limitQuantity]
|
|
237
|
+
]),
|
|
238
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
224
239
|
label: "超出时别名",
|
|
225
240
|
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
226
241
|
}, {
|
|
227
242
|
default: withCtx(() => [
|
|
228
243
|
createVNode(_component_el_input, {
|
|
229
244
|
modelValue: __props.configure.props.overItemAlias,
|
|
230
|
-
"onUpdate:modelValue": _cache[
|
|
245
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.overItemAlias = $event),
|
|
231
246
|
placeholder: "请输入"
|
|
232
247
|
}, null, 8, ["modelValue"]),
|
|
233
248
|
createVNode(_component_el_text, {
|
|
@@ -241,7 +256,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
241
256
|
})
|
|
242
257
|
]),
|
|
243
258
|
_: 1
|
|
244
|
-
})
|
|
259
|
+
}, 512), [
|
|
260
|
+
[vShow, __props.configure.props.limitQuantity]
|
|
261
|
+
])
|
|
245
262
|
])
|
|
246
263
|
]),
|
|
247
264
|
_: 1
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, createElementBlock, Fragment, renderList, toDisplayString } from "vue";
|
|
1
|
+
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, createElementBlock, Fragment, renderList, toDisplayString, withDirectives, vShow } from "vue";
|
|
2
2
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
3
3
|
const _hoisted_2 = { style: { "float": "left" } };
|
|
4
4
|
const _hoisted_3 = { style: { "float": "right", "color": "var(--el-text-color-secondary)", "font-size": "13px" } };
|
|
@@ -25,6 +25,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
25
25
|
if (hisServiceFields) {
|
|
26
26
|
const prevField = hisServiceDataField ? hisServiceDataField : "";
|
|
27
27
|
for (let f of hisServiceFields) {
|
|
28
|
+
if (!(!f.type || f.type == "any" || f.type == "number")) {
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
28
31
|
if (!prevField || f.value.startsWith(prevField + ".")) {
|
|
29
32
|
const tempField = {};
|
|
30
33
|
Object.assign(tempField, f);
|
|
@@ -47,6 +50,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
47
50
|
const _component_el_option = resolveComponent("el-option");
|
|
48
51
|
const _component_el_select = resolveComponent("el-select");
|
|
49
52
|
const _component_el_form_item = resolveComponent("el-form-item");
|
|
53
|
+
const _component_el_switch = resolveComponent("el-switch");
|
|
50
54
|
const _component_el_input_number = resolveComponent("el-input-number");
|
|
51
55
|
const _component_el_radio_group = resolveComponent("el-radio-group");
|
|
52
56
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
@@ -59,7 +63,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
59
63
|
createElementVNode("div", _hoisted_1, [
|
|
60
64
|
createVNode(_component_el_radio_group, {
|
|
61
65
|
modelValue: __props.configure.props.yaxisSource,
|
|
62
|
-
"onUpdate:modelValue": _cache[
|
|
66
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.yaxisSource = $event)
|
|
63
67
|
}, {
|
|
64
68
|
default: withCtx(() => [
|
|
65
69
|
createVNode(_component_el_form_item, { style: { "margin-top": "4px" } }, {
|
|
@@ -104,6 +108,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
104
108
|
]),
|
|
105
109
|
_: 1
|
|
106
110
|
}),
|
|
111
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
112
|
+
label: "累计显示",
|
|
113
|
+
style: { "margin-top": "-10px" }
|
|
114
|
+
}, {
|
|
115
|
+
default: withCtx(() => [
|
|
116
|
+
createVNode(_component_el_switch, {
|
|
117
|
+
modelValue: __props.configure.props.isCumulative,
|
|
118
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.isCumulative = $event)
|
|
119
|
+
}, null, 8, ["modelValue"])
|
|
120
|
+
]),
|
|
121
|
+
_: 1
|
|
122
|
+
}, 512), [
|
|
123
|
+
[vShow, !__props.configure.props.yaxisSource || __props.configure.props.yaxisSource == "variable"]
|
|
124
|
+
]),
|
|
107
125
|
createVNode(_component_el_form_item, { style: { "margin-top": "-10px", "margin-bottom": "-15px" } }, {
|
|
108
126
|
label: withCtx(() => [
|
|
109
127
|
createVNode(_component_el_radio, { value: "fix" }, {
|
|
@@ -118,7 +136,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
118
136
|
disabled: __props.configure.props.yaxisSource != "fix",
|
|
119
137
|
placeholder: "请输入",
|
|
120
138
|
modelValue: __props.configure.props.yaxisFix,
|
|
121
|
-
"onUpdate:modelValue": _cache[
|
|
139
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.yaxisFix = $event),
|
|
122
140
|
min: 1,
|
|
123
141
|
preision: "2"
|
|
124
142
|
}, null, 8, ["disabled", "modelValue"])
|
package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dynamic.vue.js
CHANGED
|
@@ -2,8 +2,6 @@ import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx
|
|
|
2
2
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
3
3
|
const _hoisted_2 = { style: { "float": "left" } };
|
|
4
4
|
const _hoisted_3 = { style: { "float": "right", "color": "var(--el-text-color-secondary)", "font-size": "13px" } };
|
|
5
|
-
const _hoisted_4 = { style: { "float": "left" } };
|
|
6
|
-
const _hoisted_5 = { style: { "float": "right", "color": "var(--el-text-color-secondary)", "font-size": "13px" } };
|
|
7
5
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
6
|
__name: "common-attr-dynamic",
|
|
9
7
|
props: {
|
|
@@ -28,6 +26,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
28
26
|
if (hisServiceFields) {
|
|
29
27
|
const prevField = hisServiceDataField ? hisServiceDataField : "";
|
|
30
28
|
for (let f of hisServiceFields) {
|
|
29
|
+
if (!(!f.type || f.type == "string" || f.type == "any")) {
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
31
32
|
if (!prevField || f.value.startsWith(prevField + ".")) {
|
|
32
33
|
const tempField = {};
|
|
33
34
|
Object.assign(tempField, f);
|
|
@@ -51,6 +52,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
51
52
|
const _component_el_text = resolveComponent("el-text");
|
|
52
53
|
const _component_el_form_item = resolveComponent("el-form-item");
|
|
53
54
|
const _component_el_input = resolveComponent("el-input");
|
|
55
|
+
const _component_el_switch = resolveComponent("el-switch");
|
|
54
56
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
55
57
|
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
56
58
|
title: "动态设置",
|
|
@@ -60,7 +62,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
60
62
|
default: withCtx(() => [
|
|
61
63
|
createElementVNode("div", _hoisted_1, [
|
|
62
64
|
createVNode(_component_el_form_item, {
|
|
63
|
-
label: "
|
|
65
|
+
label: "动态系列",
|
|
64
66
|
style: { "margin-top": "4px" }
|
|
65
67
|
}, {
|
|
66
68
|
default: withCtx(() => [
|
|
@@ -118,7 +120,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
118
120
|
size: "small"
|
|
119
121
|
}, {
|
|
120
122
|
default: withCtx(() => [
|
|
121
|
-
createTextVNode("默认为动态字段的值,可按${
|
|
123
|
+
createTextVNode("默认为动态字段的值,可按${name}获取默认名称")
|
|
122
124
|
]),
|
|
123
125
|
_: 1
|
|
124
126
|
})
|
|
@@ -126,74 +128,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
126
128
|
_: 1
|
|
127
129
|
}),
|
|
128
130
|
withDirectives(createVNode(_component_el_form_item, {
|
|
129
|
-
label: "
|
|
130
|
-
style: { "margin-top": "15px", "margin-bottom": "-15px" }
|
|
131
|
-
}, {
|
|
132
|
-
default: withCtx(() => [
|
|
133
|
-
createVNode(_component_el_select, {
|
|
134
|
-
size: "small",
|
|
135
|
-
modelValue: __props.configure.props.dynamicStackField,
|
|
136
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.dynamicStackField = $event),
|
|
137
|
-
title: __props.configure.props.dynamicStackField,
|
|
138
|
-
filterable: "",
|
|
139
|
-
"allow-create": "",
|
|
140
|
-
clearable: "",
|
|
141
|
-
placeholder: "请选择"
|
|
142
|
-
}, {
|
|
143
|
-
default: withCtx(() => [
|
|
144
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(sourceFields.value, (item) => {
|
|
145
|
-
return openBlock(), createBlock(_component_el_option, {
|
|
146
|
-
key: item.value,
|
|
147
|
-
label: item.label,
|
|
148
|
-
value: item.value
|
|
149
|
-
}, {
|
|
150
|
-
default: withCtx(() => [
|
|
151
|
-
createElementVNode("span", _hoisted_4, toDisplayString(item.label), 1),
|
|
152
|
-
createElementVNode("span", _hoisted_5, toDisplayString(item.type), 1)
|
|
153
|
-
]),
|
|
154
|
-
_: 2
|
|
155
|
-
}, 1032, ["label", "value"]);
|
|
156
|
-
}), 128))
|
|
157
|
-
]),
|
|
158
|
-
_: 1
|
|
159
|
-
}, 8, ["modelValue", "title"]),
|
|
160
|
-
createVNode(_component_el_text, {
|
|
161
|
-
type: "success",
|
|
162
|
-
size: "small"
|
|
163
|
-
}, {
|
|
164
|
-
default: withCtx(() => [
|
|
165
|
-
createTextVNode("如按年份展开分析,动态字段为类别时,根据查询出的类别动态生成系列")
|
|
166
|
-
]),
|
|
167
|
-
_: 1
|
|
168
|
-
})
|
|
169
|
-
]),
|
|
170
|
-
_: 1
|
|
171
|
-
}, 512), [
|
|
172
|
-
[vShow, __props.configure.type == "bar" && __props.configure.type != "scatter"]
|
|
173
|
-
]),
|
|
174
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
175
|
-
label: "堆叠名称",
|
|
131
|
+
label: "堆叠展示",
|
|
176
132
|
style: { "margin-top": "15px", "margin-bottom": "-15px" }
|
|
177
133
|
}, {
|
|
178
134
|
default: withCtx(() => [
|
|
179
|
-
createVNode(
|
|
180
|
-
modelValue: __props.configure.props.
|
|
181
|
-
"onUpdate:modelValue": _cache[
|
|
182
|
-
|
|
183
|
-
}, null, 8, ["modelValue"]),
|
|
184
|
-
createVNode(_component_el_text, {
|
|
185
|
-
type: "success",
|
|
186
|
-
size: "small"
|
|
187
|
-
}, {
|
|
188
|
-
default: withCtx(() => [
|
|
189
|
-
createTextVNode("默认为堆叠字段的值,可按${obj.堆叠字段名}获取变量值")
|
|
190
|
-
]),
|
|
191
|
-
_: 1
|
|
192
|
-
})
|
|
135
|
+
createVNode(_component_el_switch, {
|
|
136
|
+
modelValue: __props.configure.props.dynamicShowStack,
|
|
137
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.dynamicShowStack = $event)
|
|
138
|
+
}, null, 8, ["modelValue"])
|
|
193
139
|
]),
|
|
194
140
|
_: 1
|
|
195
141
|
}, 512), [
|
|
196
|
-
[vShow, __props.configure.type == "bar" && __props.configure.
|
|
142
|
+
[vShow, __props.configure.type == "bar" && __props.configure.props.dynamicSeriesField]
|
|
197
143
|
])
|
|
198
144
|
])
|
|
199
145
|
]),
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode } from "vue";
|
|
2
2
|
import _sfc_main$1 from "../common/common-attr-base.vue.js";
|
|
3
|
-
import _sfc_main$
|
|
4
|
-
import _sfc_main$
|
|
5
|
-
import _sfc_main$
|
|
3
|
+
import _sfc_main$4 from "../common/common-attr-assistant.vue.js";
|
|
4
|
+
import _sfc_main$5 from "../../common/common-attr-size.vue.js";
|
|
5
|
+
import _sfc_main$2 from "./gauge-attr-data.vue.js";
|
|
6
|
+
import _sfc_main$3 from "../../form/common/data-linkage.vue.js";
|
|
6
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
8
|
__name: "gauge-attr-base",
|
|
8
9
|
props: {
|
|
@@ -12,9 +13,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
setup(__props) {
|
|
15
|
-
const openCollapseItems = ref([
|
|
16
|
+
const openCollapseItems = ref([
|
|
17
|
+
"propsBase",
|
|
18
|
+
"dataSet",
|
|
19
|
+
"propsGroup",
|
|
20
|
+
"attrSize",
|
|
21
|
+
"propsSort",
|
|
22
|
+
"propsDrill",
|
|
23
|
+
"propsAssistant",
|
|
24
|
+
"linkage"
|
|
25
|
+
]);
|
|
16
26
|
return (_ctx, _cache) => {
|
|
17
|
-
const _component_commonAttrGroupby = resolveComponent("commonAttrGroupby");
|
|
18
27
|
const _component_el_collapse = resolveComponent("el-collapse");
|
|
19
28
|
const _component_el_form = resolveComponent("el-form");
|
|
20
29
|
return openBlock(), createBlock(_component_el_form, {
|
|
@@ -29,13 +38,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
29
38
|
}, {
|
|
30
39
|
default: withCtx(() => [
|
|
31
40
|
createVNode(_sfc_main$1, { configure: __props.configure }, null, 8, ["configure"]),
|
|
32
|
-
createVNode(_sfc_main$2, {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}, null, 8, ["
|
|
36
|
-
createVNode(
|
|
37
|
-
createVNode(_sfc_main$
|
|
38
|
-
createVNode(_sfc_main$4, {
|
|
41
|
+
createVNode(_sfc_main$2, { configure: __props.configure }, null, 8, ["configure"]),
|
|
42
|
+
createVNode(_sfc_main$3, {
|
|
43
|
+
configureProps: __props.configure.props
|
|
44
|
+
}, null, 8, ["configureProps"]),
|
|
45
|
+
createVNode(_sfc_main$4, { configure: __props.configure }, null, 8, ["configure"]),
|
|
46
|
+
createVNode(_sfc_main$5, {
|
|
39
47
|
size: __props.configure.props.size
|
|
40
48
|
}, null, 8, ["size"])
|
|
41
49
|
]),
|