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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-designer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"description": "AgileBuilder super page designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -23,9 +23,12 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@element-plus/icons": "^0.0.11",
|
|
25
25
|
"@element-plus/icons-vue": "^2.3.1",
|
|
26
|
+
"@logicflow/core": "^1.2.23",
|
|
27
|
+
"@logicflow/extension": "^1.2.23",
|
|
28
|
+
"@logicflow/layout": "1.2.0-alpha.16",
|
|
26
29
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
27
30
|
"@vueuse/core": "^10.9.0",
|
|
28
|
-
"agilebuilder-ui": "1.0.
|
|
31
|
+
"agilebuilder-ui": "1.0.14",
|
|
29
32
|
"echarts": "^5.5.0",
|
|
30
33
|
"element-plus": "^2.6.1",
|
|
31
34
|
"font-awesome": "^4.7.0",
|
|
@@ -35,8 +38,8 @@
|
|
|
35
38
|
"pinia": "^2.1.7",
|
|
36
39
|
"qrcode": "^1.5.3",
|
|
37
40
|
"quill": "^2.0.1",
|
|
38
|
-
"service-flow-designer": "2.0.
|
|
39
|
-
"super-page-runtime": "2.0.
|
|
41
|
+
"service-flow-designer": "2.0.15",
|
|
42
|
+
"super-page-runtime": "2.0.16",
|
|
40
43
|
"uuid": "^9.0.1",
|
|
41
44
|
"vite": "^5.1.6",
|
|
42
45
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|
|
@@ -56,8 +59,6 @@
|
|
|
56
59
|
"@codemirror/search": "^6.5.6",
|
|
57
60
|
"@codemirror/state": "^6.4.1",
|
|
58
61
|
"@lezer/highlight": "^1.2.0",
|
|
59
|
-
"@logicflow/core": "^1.2.23",
|
|
60
|
-
"@logicflow/extension": "^1.2.23",
|
|
61
62
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
62
63
|
"@types/jsdom": "^21.1.6",
|
|
63
64
|
"@types/node": "^20.11.28",
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, withDirectives, createTextVNode, vShow } from "vue";
|
|
2
|
-
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
3
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
|
-
__name: "common-attr-drill",
|
|
5
|
-
props: {
|
|
6
|
-
configure: {
|
|
7
|
-
required: true,
|
|
8
|
-
type: Object
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
setup(__props) {
|
|
12
|
-
return (_ctx, _cache) => {
|
|
13
|
-
const _component_el_switch = resolveComponent("el-switch");
|
|
14
|
-
const _component_el_form_item = resolveComponent("el-form-item");
|
|
15
|
-
const _component_el_input = resolveComponent("el-input");
|
|
16
|
-
const _component_el_text = resolveComponent("el-text");
|
|
17
|
-
const _component_el_radio_button = resolveComponent("el-radio-button");
|
|
18
|
-
const _component_el_radio_group = resolveComponent("el-radio-group");
|
|
19
|
-
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
20
|
-
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
21
|
-
title: "数据钻取",
|
|
22
|
-
name: "propsDrill",
|
|
23
|
-
class: "amb-design-attr-group-header"
|
|
24
|
-
}, {
|
|
25
|
-
default: withCtx(() => [
|
|
26
|
-
createElementVNode("div", _hoisted_1, [
|
|
27
|
-
createVNode(_component_el_form_item, {
|
|
28
|
-
label: "开启",
|
|
29
|
-
style: { "margin-top": "0px", "margin-bottom": "-15px" }
|
|
30
|
-
}, {
|
|
31
|
-
default: withCtx(() => [
|
|
32
|
-
createVNode(_component_el_switch, {
|
|
33
|
-
modelValue: __props.configure.props.enableDrill,
|
|
34
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.enableDrill = $event)
|
|
35
|
-
}, null, 8, ["modelValue"])
|
|
36
|
-
]),
|
|
37
|
-
_: 1
|
|
38
|
-
}),
|
|
39
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
40
|
-
label: "钻取顺序",
|
|
41
|
-
style: { "margin-top": "20px", "margin-bottom": "10px" }
|
|
42
|
-
}, {
|
|
43
|
-
default: withCtx(() => [
|
|
44
|
-
createVNode(_component_el_input, {
|
|
45
|
-
modelValue: __props.configure.props.drillOrders,
|
|
46
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.drillOrders = $event),
|
|
47
|
-
placeholder: "请输入"
|
|
48
|
-
}, null, 8, ["modelValue"]),
|
|
49
|
-
createVNode(_component_el_text, {
|
|
50
|
-
type: "success",
|
|
51
|
-
size: "small"
|
|
52
|
-
}, {
|
|
53
|
-
default: withCtx(() => [
|
|
54
|
-
createTextVNode("逗号隔开,第一层为统计纬度")
|
|
55
|
-
]),
|
|
56
|
-
_: 1
|
|
57
|
-
})
|
|
58
|
-
]),
|
|
59
|
-
_: 1
|
|
60
|
-
}, 512), [
|
|
61
|
-
[vShow, __props.configure.props.enableDrill]
|
|
62
|
-
]),
|
|
63
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
64
|
-
label: "显示位置",
|
|
65
|
-
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
66
|
-
}, {
|
|
67
|
-
default: withCtx(() => [
|
|
68
|
-
createVNode(_component_el_radio_group, {
|
|
69
|
-
modelValue: __props.configure.props.drillLabelAlign,
|
|
70
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.drillLabelAlign = $event)
|
|
71
|
-
}, {
|
|
72
|
-
default: withCtx(() => [
|
|
73
|
-
createVNode(_component_el_radio_button, { value: "left" }, {
|
|
74
|
-
default: withCtx(() => [
|
|
75
|
-
createTextVNode("左")
|
|
76
|
-
]),
|
|
77
|
-
_: 1
|
|
78
|
-
}),
|
|
79
|
-
createVNode(_component_el_radio_button, { value: "center" }, {
|
|
80
|
-
default: withCtx(() => [
|
|
81
|
-
createTextVNode("中")
|
|
82
|
-
]),
|
|
83
|
-
_: 1
|
|
84
|
-
}),
|
|
85
|
-
createVNode(_component_el_radio_button, { value: "right" }, {
|
|
86
|
-
default: withCtx(() => [
|
|
87
|
-
createTextVNode("右")
|
|
88
|
-
]),
|
|
89
|
-
_: 1
|
|
90
|
-
})
|
|
91
|
-
]),
|
|
92
|
-
_: 1
|
|
93
|
-
}, 8, ["modelValue"])
|
|
94
|
-
]),
|
|
95
|
-
_: 1
|
|
96
|
-
}, 512), [
|
|
97
|
-
[vShow, __props.configure.props.enableDrill]
|
|
98
|
-
])
|
|
99
|
-
])
|
|
100
|
-
]),
|
|
101
|
-
_: 1
|
|
102
|
-
});
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
});
|
|
106
|
-
export {
|
|
107
|
-
_sfc_main as default
|
|
108
|
-
};
|
package/dist/es/components/design/views/assemblys/chart/common-series/common-attr-dataset.vue.js
DELETED
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createTextVNode, withDirectives, vShow } from "vue";
|
|
2
|
-
import { Search, Plus } from "@element-plus/icons-vue";
|
|
3
|
-
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
4
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
-
__name: "common-attr-dataset",
|
|
6
|
-
props: {
|
|
7
|
-
configure: {
|
|
8
|
-
type: Object,
|
|
9
|
-
required: true
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
setup(__props) {
|
|
13
|
-
return (_ctx, _cache) => {
|
|
14
|
-
const _component_el_button = resolveComponent("el-button");
|
|
15
|
-
const _component_el_input = resolveComponent("el-input");
|
|
16
|
-
const _component_el_form_item = resolveComponent("el-form-item");
|
|
17
|
-
const _component_el_option = resolveComponent("el-option");
|
|
18
|
-
const _component_el_select = resolveComponent("el-select");
|
|
19
|
-
const _component_el_text = resolveComponent("el-text");
|
|
20
|
-
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
21
|
-
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
22
|
-
title: "数据设置",
|
|
23
|
-
name: "dataList",
|
|
24
|
-
class: "amb-design-attr-group-header"
|
|
25
|
-
}, {
|
|
26
|
-
default: withCtx(() => [
|
|
27
|
-
createElementVNode("div", _hoisted_1, [
|
|
28
|
-
createVNode(_component_el_form_item, {
|
|
29
|
-
label: "数据源",
|
|
30
|
-
style: { "margin-top": "4px" }
|
|
31
|
-
}, {
|
|
32
|
-
default: withCtx(() => [
|
|
33
|
-
createVNode(_component_el_input, {
|
|
34
|
-
modelValue: __props.configure.props.serviceName,
|
|
35
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.serviceName = $event),
|
|
36
|
-
readonly: ""
|
|
37
|
-
}, {
|
|
38
|
-
append: withCtx(() => [
|
|
39
|
-
createVNode(_component_el_button, { icon: unref(Search) }, null, 8, ["icon"]),
|
|
40
|
-
createVNode(_component_el_button, { icon: unref(Plus) }, null, 8, ["icon"])
|
|
41
|
-
]),
|
|
42
|
-
_: 1
|
|
43
|
-
}, 8, ["modelValue"])
|
|
44
|
-
]),
|
|
45
|
-
_: 1
|
|
46
|
-
}),
|
|
47
|
-
createVNode(_component_el_form_item, {
|
|
48
|
-
label: "数据集",
|
|
49
|
-
style: { "margin-top": "-5px" }
|
|
50
|
-
}, {
|
|
51
|
-
default: withCtx(() => [
|
|
52
|
-
createVNode(_component_el_select, {
|
|
53
|
-
modelValue: __props.configure.props.datasField,
|
|
54
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.datasField = $event),
|
|
55
|
-
placeholder: "根目录",
|
|
56
|
-
clearable: ""
|
|
57
|
-
}, {
|
|
58
|
-
default: withCtx(() => [
|
|
59
|
-
createVNode(_component_el_option, {
|
|
60
|
-
label: "data",
|
|
61
|
-
value: "root"
|
|
62
|
-
})
|
|
63
|
-
]),
|
|
64
|
-
_: 1
|
|
65
|
-
}, 8, ["modelValue"]),
|
|
66
|
-
createVNode(_component_el_text, {
|
|
67
|
-
type: "success",
|
|
68
|
-
size: "small"
|
|
69
|
-
}, {
|
|
70
|
-
default: withCtx(() => [
|
|
71
|
-
createTextVNode("默认为根目录")
|
|
72
|
-
]),
|
|
73
|
-
_: 1
|
|
74
|
-
})
|
|
75
|
-
]),
|
|
76
|
-
_: 1
|
|
77
|
-
}),
|
|
78
|
-
createVNode(_component_el_form_item, {
|
|
79
|
-
label: "X坐标字段",
|
|
80
|
-
style: { "margin-top": "-10px" }
|
|
81
|
-
}, {
|
|
82
|
-
default: withCtx(() => [
|
|
83
|
-
createVNode(_component_el_select, {
|
|
84
|
-
modelValue: __props.configure.props.xaxisField,
|
|
85
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.xaxisField = $event),
|
|
86
|
-
placeholder: "请选择",
|
|
87
|
-
multiple: "",
|
|
88
|
-
"collapse-tags": "",
|
|
89
|
-
clearable: ""
|
|
90
|
-
}, {
|
|
91
|
-
default: withCtx(() => [
|
|
92
|
-
createVNode(_component_el_option, {
|
|
93
|
-
label: "field1",
|
|
94
|
-
value: "root"
|
|
95
|
-
})
|
|
96
|
-
]),
|
|
97
|
-
_: 1
|
|
98
|
-
}, 8, ["modelValue"]),
|
|
99
|
-
withDirectives(createVNode(_component_el_text, {
|
|
100
|
-
type: "success",
|
|
101
|
-
size: "small"
|
|
102
|
-
}, {
|
|
103
|
-
default: withCtx(() => [
|
|
104
|
-
createTextVNode("默认为选择的纬度字段,可多选")
|
|
105
|
-
]),
|
|
106
|
-
_: 1
|
|
107
|
-
}, 512), [
|
|
108
|
-
[vShow, __props.configure.type != "scatter"]
|
|
109
|
-
]),
|
|
110
|
-
withDirectives(createVNode(_component_el_text, {
|
|
111
|
-
type: "success",
|
|
112
|
-
size: "small"
|
|
113
|
-
}, {
|
|
114
|
-
default: withCtx(() => [
|
|
115
|
-
createTextVNode("数字类型,默认为选择的纬度字段,单选")
|
|
116
|
-
]),
|
|
117
|
-
_: 1
|
|
118
|
-
}, 512), [
|
|
119
|
-
[vShow, __props.configure.type == "scatter"]
|
|
120
|
-
])
|
|
121
|
-
]),
|
|
122
|
-
_: 1
|
|
123
|
-
}),
|
|
124
|
-
createVNode(_component_el_form_item, {
|
|
125
|
-
label: "Y坐标字段",
|
|
126
|
-
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
127
|
-
}, {
|
|
128
|
-
default: withCtx(() => [
|
|
129
|
-
createVNode(_component_el_select, {
|
|
130
|
-
modelValue: __props.configure.props.yaxisField,
|
|
131
|
-
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.yaxisField = $event),
|
|
132
|
-
placeholder: "请选择",
|
|
133
|
-
multiple: "",
|
|
134
|
-
"collapse-tags": "",
|
|
135
|
-
clearable: ""
|
|
136
|
-
}, {
|
|
137
|
-
default: withCtx(() => [
|
|
138
|
-
createVNode(_component_el_option, {
|
|
139
|
-
label: "field1",
|
|
140
|
-
value: "root"
|
|
141
|
-
})
|
|
142
|
-
]),
|
|
143
|
-
_: 1
|
|
144
|
-
}, 8, ["modelValue"]),
|
|
145
|
-
createVNode(_component_el_text, {
|
|
146
|
-
type: "success",
|
|
147
|
-
size: "small"
|
|
148
|
-
}, {
|
|
149
|
-
default: withCtx(() => [
|
|
150
|
-
createTextVNode("默认为选择的数值字段,单选")
|
|
151
|
-
]),
|
|
152
|
-
_: 1
|
|
153
|
-
})
|
|
154
|
-
]),
|
|
155
|
-
_: 1
|
|
156
|
-
})
|
|
157
|
-
])
|
|
158
|
-
]),
|
|
159
|
-
_: 1
|
|
160
|
-
});
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
});
|
|
164
|
-
export {
|
|
165
|
-
_sfc_main as default
|
|
166
|
-
};
|
|
@@ -1,153 +0,0 @@
|
|
|
1
|
-
import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createTextVNode } from "vue";
|
|
2
|
-
import { Search, Plus } from "@element-plus/icons-vue";
|
|
3
|
-
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
4
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
-
__name: "gauge-series-attr-dataset",
|
|
6
|
-
props: {
|
|
7
|
-
configure: {
|
|
8
|
-
type: Object,
|
|
9
|
-
required: true
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
setup(__props) {
|
|
13
|
-
return (_ctx, _cache) => {
|
|
14
|
-
const _component_el_button = resolveComponent("el-button");
|
|
15
|
-
const _component_el_input = resolveComponent("el-input");
|
|
16
|
-
const _component_el_form_item = resolveComponent("el-form-item");
|
|
17
|
-
const _component_el_option = resolveComponent("el-option");
|
|
18
|
-
const _component_el_select = resolveComponent("el-select");
|
|
19
|
-
const _component_el_text = resolveComponent("el-text");
|
|
20
|
-
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
21
|
-
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
22
|
-
title: "数据设置",
|
|
23
|
-
name: "dataList",
|
|
24
|
-
class: "amb-design-attr-group-header"
|
|
25
|
-
}, {
|
|
26
|
-
default: withCtx(() => [
|
|
27
|
-
createElementVNode("div", _hoisted_1, [
|
|
28
|
-
createVNode(_component_el_form_item, {
|
|
29
|
-
label: "数据源",
|
|
30
|
-
style: { "margin-top": "4px" }
|
|
31
|
-
}, {
|
|
32
|
-
default: withCtx(() => [
|
|
33
|
-
createVNode(_component_el_input, {
|
|
34
|
-
modelValue: __props.configure.props.serviceName,
|
|
35
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.serviceName = $event),
|
|
36
|
-
readonly: ""
|
|
37
|
-
}, {
|
|
38
|
-
append: withCtx(() => [
|
|
39
|
-
createVNode(_component_el_button, { icon: unref(Search) }, null, 8, ["icon"]),
|
|
40
|
-
createVNode(_component_el_button, { icon: unref(Plus) }, null, 8, ["icon"])
|
|
41
|
-
]),
|
|
42
|
-
_: 1
|
|
43
|
-
}, 8, ["modelValue"])
|
|
44
|
-
]),
|
|
45
|
-
_: 1
|
|
46
|
-
}),
|
|
47
|
-
createVNode(_component_el_form_item, {
|
|
48
|
-
label: "数据集",
|
|
49
|
-
style: { "margin-top": "-5px" }
|
|
50
|
-
}, {
|
|
51
|
-
default: withCtx(() => [
|
|
52
|
-
createVNode(_component_el_select, {
|
|
53
|
-
modelValue: __props.configure.props.datasField,
|
|
54
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.datasField = $event),
|
|
55
|
-
placeholder: "根目录",
|
|
56
|
-
clearable: ""
|
|
57
|
-
}, {
|
|
58
|
-
default: withCtx(() => [
|
|
59
|
-
createVNode(_component_el_option, {
|
|
60
|
-
label: "data",
|
|
61
|
-
value: "root"
|
|
62
|
-
})
|
|
63
|
-
]),
|
|
64
|
-
_: 1
|
|
65
|
-
}, 8, ["modelValue"]),
|
|
66
|
-
createVNode(_component_el_text, {
|
|
67
|
-
type: "success",
|
|
68
|
-
size: "small"
|
|
69
|
-
}, {
|
|
70
|
-
default: withCtx(() => [
|
|
71
|
-
createTextVNode("默认为根目录")
|
|
72
|
-
]),
|
|
73
|
-
_: 1
|
|
74
|
-
})
|
|
75
|
-
]),
|
|
76
|
-
_: 1
|
|
77
|
-
}),
|
|
78
|
-
createVNode(_component_el_form_item, {
|
|
79
|
-
label: "名称字段",
|
|
80
|
-
style: { "margin-top": "-10px" }
|
|
81
|
-
}, {
|
|
82
|
-
default: withCtx(() => [
|
|
83
|
-
createVNode(_component_el_select, {
|
|
84
|
-
modelValue: __props.configure.props.xaxisField,
|
|
85
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.xaxisField = $event),
|
|
86
|
-
placeholder: "请选择",
|
|
87
|
-
multiple: "",
|
|
88
|
-
"collapse-tags": "",
|
|
89
|
-
clearable: ""
|
|
90
|
-
}, {
|
|
91
|
-
default: withCtx(() => [
|
|
92
|
-
createVNode(_component_el_option, {
|
|
93
|
-
label: "field1",
|
|
94
|
-
value: "root"
|
|
95
|
-
})
|
|
96
|
-
]),
|
|
97
|
-
_: 1
|
|
98
|
-
}, 8, ["modelValue"]),
|
|
99
|
-
createVNode(_component_el_text, {
|
|
100
|
-
type: "success",
|
|
101
|
-
size: "small"
|
|
102
|
-
}, {
|
|
103
|
-
default: withCtx(() => [
|
|
104
|
-
createTextVNode("默认为选择的维度字段,可为空")
|
|
105
|
-
]),
|
|
106
|
-
_: 1
|
|
107
|
-
})
|
|
108
|
-
]),
|
|
109
|
-
_: 1
|
|
110
|
-
}),
|
|
111
|
-
createVNode(_component_el_form_item, {
|
|
112
|
-
label: "值字段",
|
|
113
|
-
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
114
|
-
}, {
|
|
115
|
-
default: withCtx(() => [
|
|
116
|
-
createVNode(_component_el_select, {
|
|
117
|
-
modelValue: __props.configure.props.yaxisField,
|
|
118
|
-
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.yaxisField = $event),
|
|
119
|
-
placeholder: "请选择",
|
|
120
|
-
multiple: "",
|
|
121
|
-
"collapse-tags": "",
|
|
122
|
-
clearable: ""
|
|
123
|
-
}, {
|
|
124
|
-
default: withCtx(() => [
|
|
125
|
-
createVNode(_component_el_option, {
|
|
126
|
-
label: "field1",
|
|
127
|
-
value: "root"
|
|
128
|
-
})
|
|
129
|
-
]),
|
|
130
|
-
_: 1
|
|
131
|
-
}, 8, ["modelValue"]),
|
|
132
|
-
createVNode(_component_el_text, {
|
|
133
|
-
type: "success",
|
|
134
|
-
size: "small"
|
|
135
|
-
}, {
|
|
136
|
-
default: withCtx(() => [
|
|
137
|
-
createTextVNode("默认为选择的数值字段,可多选")
|
|
138
|
-
]),
|
|
139
|
-
_: 1
|
|
140
|
-
})
|
|
141
|
-
]),
|
|
142
|
-
_: 1
|
|
143
|
-
})
|
|
144
|
-
])
|
|
145
|
-
]),
|
|
146
|
-
_: 1
|
|
147
|
-
});
|
|
148
|
-
};
|
|
149
|
-
}
|
|
150
|
-
});
|
|
151
|
-
export {
|
|
152
|
-
_sfc_main as default
|
|
153
|
-
};
|
package/dist/es/components/design/views/assemblys/chart/radar/series/attrs/attr-testdatas.vue.js
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
|
|
2
|
-
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
3
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
|
-
__name: "attr-testdatas",
|
|
5
|
-
props: {
|
|
6
|
-
configure: {
|
|
7
|
-
type: Object,
|
|
8
|
-
required: true
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
setup(__props) {
|
|
12
|
-
return (_ctx, _cache) => {
|
|
13
|
-
const _component_el_input = resolveComponent("el-input");
|
|
14
|
-
const _component_el_form_item = resolveComponent("el-form-item");
|
|
15
|
-
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
16
|
-
return openBlock(), createBlock(_component_el_collapse_item, {
|
|
17
|
-
title: "测试数据",
|
|
18
|
-
name: "propsTestDatas",
|
|
19
|
-
class: "amb-design-attr-group-header"
|
|
20
|
-
}, {
|
|
21
|
-
default: withCtx(() => [
|
|
22
|
-
createElementVNode("div", _hoisted_1, [
|
|
23
|
-
createVNode(_component_el_form_item, {
|
|
24
|
-
label: "配置项",
|
|
25
|
-
style: { "margin-top": "4px" }
|
|
26
|
-
}, {
|
|
27
|
-
default: withCtx(() => [
|
|
28
|
-
createVNode(_component_el_input, {
|
|
29
|
-
modelValue: __props.configure.props.testitems,
|
|
30
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.testitems = $event),
|
|
31
|
-
placeholder: "请输入"
|
|
32
|
-
}, null, 8, ["modelValue"])
|
|
33
|
-
]),
|
|
34
|
-
_: 1
|
|
35
|
-
}),
|
|
36
|
-
createVNode(_component_el_form_item, {
|
|
37
|
-
label: "数据",
|
|
38
|
-
style: { "margin-top": "-10px", "margin-bottom": "-15px" }
|
|
39
|
-
}, {
|
|
40
|
-
default: withCtx(() => [
|
|
41
|
-
createVNode(_component_el_input, {
|
|
42
|
-
modelValue: __props.configure.props.testdatas,
|
|
43
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.testdatas = $event),
|
|
44
|
-
placeholder: "请输入"
|
|
45
|
-
}, null, 8, ["modelValue"])
|
|
46
|
-
]),
|
|
47
|
-
_: 1
|
|
48
|
-
})
|
|
49
|
-
])
|
|
50
|
-
]),
|
|
51
|
-
_: 1
|
|
52
|
-
});
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
});
|
|
56
|
-
export {
|
|
57
|
-
_sfc_main as default
|
|
58
|
-
};
|