@web-utils/component 2.7.5 → 2.7.7
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/chunks/{ConfigDate.vue_vue_type_template_lang.420fa897.js → ConfigDate.vue_vue_type_template_lang.116fbad4.js} +1 -1
- package/dist/chunks/{ConfigDynamic.vue_vue_type_template_lang.82d24ab0.js → ConfigDynamic.vue_vue_type_template_lang.99082e47.js} +1 -1
- package/dist/chunks/{ConfigSelect.vue_vue_type_template_lang.7db7e57f.js → ConfigSelect.vue_vue_type_template_lang.e7a9d5b7.js} +6 -6
- package/dist/chunks/{ConfigTable.vue_vue_type_template_lang.3e8136d9.js → ConfigTable.vue_vue_type_template_lang.e9060616.js} +4 -1
- package/dist/chunks/{ConfigTree.vue_vue_type_style_index_0_scoped_true_lang.3770c37e.js → ConfigTree.vue_vue_type_style_index_0_scoped_true_lang.89ec5376.js} +127 -126
- package/dist/chunks/{ConfigUpload.vue_vue_type_template_lang.531a9b2a.js → ConfigUpload.vue_vue_type_template_lang.48dd814b.js} +3 -3
- package/dist/chunks/{WidgetConfig.vue_vue_type_template_lang.fbbbff76.js → WidgetConfig.vue_vue_type_template_lang.24a87d72.js} +74 -33
- package/dist/chunks/{WidgetForm.vue_vue_type_template_lang.82248338.js → WidgetForm.vue_vue_type_template_lang.fbb7d6b7.js} +12 -7
- package/dist/chunks/{WidgetFormGroup.vue_vue_type_template_lang.c636aabd.js → WidgetFormGroup.vue_vue_type_template_lang.47789aae.js} +8 -3
- package/dist/components/afd-column/index.js +8 -5
- package/dist/components/chat/index.js +14 -14
- package/dist/components/column-slot/index.js +25 -26
- package/dist/components/config-array/index.js +13 -11
- package/dist/components/config-color/index.js +4 -2
- package/dist/components/config-custom/index.js +3 -1
- package/dist/components/config-date/index.js +7 -5
- package/dist/components/config-dynamic/index.js +10 -8
- package/dist/components/config-event/index.js +3 -1
- package/dist/components/config-group/index.js +8 -6
- package/dist/components/config-input/index.js +8 -5
- package/dist/components/config-map/index.js +10 -8
- package/dist/components/config-number/index.js +12 -10
- package/dist/components/config-rate/index.js +4 -2
- package/dist/components/config-rate/style.css +1 -1
- package/dist/components/config-select/index.js +4 -2
- package/dist/components/config-slider/index.js +8 -6
- package/dist/components/config-switch/index.js +4 -2
- package/dist/components/config-switch/style.css +1 -1
- package/dist/components/config-table/index.js +4 -2
- package/dist/components/config-textarea/index.js +5 -3
- package/dist/components/config-title/index.js +5 -3
- package/dist/components/config-tree/index.js +5 -3
- package/dist/components/config-tree/style.css +1 -1
- package/dist/components/config-u-editor/index.js +6 -4
- package/dist/components/config-upload/index.js +5 -3
- package/dist/components/dialog-excel/index.js +3 -3
- package/dist/components/dialog-filter/index.js +1 -1
- package/dist/components/flow/index.js +4 -4
- package/dist/components/form-config/index.js +5 -3
- package/dist/components/form-temp/index.js +1 -1
- package/dist/components/fy-array/index.js +20 -20
- package/dist/components/{article → fy-article}/index.js +1 -1
- package/dist/components/{article → fy-article}/style.css +0 -0
- package/dist/components/fy-checkbox/index.js +1 -1
- package/dist/components/{code → fy-code}/index.js +1 -1
- package/dist/components/fy-curd/index.js +4 -4
- package/dist/components/fy-draggable/index.js +1 -1
- package/dist/components/fy-dynamic/index.js +42 -44
- package/dist/components/fy-form/index.js +88 -87
- package/dist/components/fy-form-design/index.js +17 -9
- package/dist/components/fy-input-tree/index.js +1 -1
- package/dist/components/{progress → fy-progress}/index.js +1 -1
- package/dist/components/fy-radio/index.js +4 -4
- package/dist/components/fy-switch/index.js +3 -3
- package/dist/components/fy-tree/index.js +1 -1
- package/dist/components/fy-u-editor/index.js +374 -0
- package/dist/components/fy-u-editor/style.css +1 -0
- package/dist/components/fy-upload/index.js +6 -6
- package/dist/components/header-search/index.js +9 -3
- package/dist/components/search/index.js +1 -1
- package/dist/components/table-page/index.js +5 -5
- package/dist/components/widget-config/index.js +24 -21
- package/dist/components/widget-form/index.js +8 -5
- package/dist/components/widget-form-group/index.js +13 -8
- package/dist/components/widget-form-table/index.js +17 -12
- package/dist/index.css +71 -62
- package/dist/index.es.js +2781 -2345
- package/package.json +4 -2
- package/web-types.json +234 -110
|
@@ -4,7 +4,9 @@ import { n as normalizeComponent } from "../../chunks/vueComponentNormalizer.71e
|
|
|
4
4
|
const __vue2_script = {
|
|
5
5
|
name: "ConfigCustom",
|
|
6
6
|
components: { MonacoEditor },
|
|
7
|
-
props:
|
|
7
|
+
props: {
|
|
8
|
+
data: Object
|
|
9
|
+
},
|
|
8
10
|
data() {
|
|
9
11
|
return {
|
|
10
12
|
params: this.data.params || {},
|
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as e, r as o } from "../../chunks/ConfigDate.vue_vue_type_template_lang.116fbad4.js";
|
|
2
2
|
import { n as s } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const r = {
|
|
4
4
|
name: "ConfigDate",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
6
8
|
}, t = {};
|
|
7
9
|
var a = /* @__PURE__ */ s(
|
|
8
10
|
r,
|
|
9
|
-
e,
|
|
10
11
|
o,
|
|
12
|
+
e,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
19
|
+
function c(i) {
|
|
18
20
|
for (let n in t)
|
|
19
21
|
this[n] = t[n];
|
|
20
22
|
}
|
|
@@ -1,22 +1,24 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as o, r as e } from "../../chunks/ConfigDynamic.vue_vue_type_template_lang.99082e47.js";
|
|
2
2
|
import { n as s } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const r = {
|
|
4
4
|
name: "ConfigDynamic",
|
|
5
|
-
props:
|
|
6
|
-
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
8
|
+
}, t = {};
|
|
7
9
|
var a = /* @__PURE__ */ s(
|
|
8
10
|
r,
|
|
9
11
|
e,
|
|
10
|
-
|
|
12
|
+
o,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
18
|
-
for (let n in
|
|
19
|
-
this[n] =
|
|
19
|
+
function c(i) {
|
|
20
|
+
for (let n in t)
|
|
21
|
+
this[n] = t[n];
|
|
20
22
|
}
|
|
21
23
|
const m = /* @__PURE__ */ function() {
|
|
22
24
|
return a.exports;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as o, r as t } from "../../chunks/ConfigGroup.vue_vue_type_template_lang.44117322.js";
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "ConfigGroup",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
data() {
|
|
7
9
|
return {
|
|
8
10
|
iconList: [{
|
|
@@ -11,11 +13,11 @@ const s = {
|
|
|
11
13
|
}]
|
|
12
14
|
};
|
|
13
15
|
}
|
|
14
|
-
},
|
|
16
|
+
}, e = {};
|
|
15
17
|
var i = /* @__PURE__ */ r(
|
|
16
18
|
s,
|
|
17
19
|
t,
|
|
18
|
-
|
|
20
|
+
o,
|
|
19
21
|
!1,
|
|
20
22
|
l,
|
|
21
23
|
null,
|
|
@@ -23,8 +25,8 @@ var i = /* @__PURE__ */ r(
|
|
|
23
25
|
null
|
|
24
26
|
);
|
|
25
27
|
function l(c) {
|
|
26
|
-
for (let n in
|
|
27
|
-
this[n] =
|
|
28
|
+
for (let n in e)
|
|
29
|
+
this[n] = e[n];
|
|
28
30
|
}
|
|
29
31
|
const _ = /* @__PURE__ */ function() {
|
|
30
32
|
return i.exports;
|
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as e, r as o } from "../../chunks/ConfigInput.vue_vue_type_template_lang.cc1eb052.js";
|
|
2
2
|
import { n as s } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const r = {
|
|
4
4
|
name: "ConfigInput",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object,
|
|
7
|
+
defaultValues: Object
|
|
8
|
+
}
|
|
6
9
|
}, t = {};
|
|
7
10
|
var a = /* @__PURE__ */ s(
|
|
8
11
|
r,
|
|
9
|
-
e,
|
|
10
12
|
o,
|
|
13
|
+
e,
|
|
11
14
|
!1,
|
|
12
15
|
l,
|
|
13
16
|
null,
|
|
@@ -18,9 +21,9 @@ function l(u) {
|
|
|
18
21
|
for (let n in t)
|
|
19
22
|
this[n] = t[n];
|
|
20
23
|
}
|
|
21
|
-
const
|
|
24
|
+
const _ = /* @__PURE__ */ function() {
|
|
22
25
|
return a.exports;
|
|
23
26
|
}();
|
|
24
27
|
export {
|
|
25
|
-
|
|
28
|
+
_ as default
|
|
26
29
|
};
|
|
@@ -1,22 +1,24 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as o, r as e } from "../../chunks/ConfigMap.vue_vue_type_template_lang.daee4d38.js";
|
|
2
2
|
import { n as s } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const r = {
|
|
4
4
|
name: "ConfigMap",
|
|
5
|
-
props:
|
|
6
|
-
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
8
|
+
}, t = {};
|
|
7
9
|
var a = /* @__PURE__ */ s(
|
|
8
10
|
r,
|
|
9
11
|
e,
|
|
10
|
-
|
|
12
|
+
o,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
18
|
-
for (let n in
|
|
19
|
-
this[n] =
|
|
19
|
+
function c(i) {
|
|
20
|
+
for (let n in t)
|
|
21
|
+
this[n] = t[n];
|
|
20
22
|
}
|
|
21
23
|
const p = /* @__PURE__ */ function() {
|
|
22
24
|
return a.exports;
|
|
@@ -1,26 +1,28 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as e, r as o } from "../../chunks/ConfigNumber.vue_vue_type_template_lang.d60231d7.js";
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "ConfigNumber",
|
|
5
|
-
props:
|
|
6
|
-
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
8
|
+
}, t = {};
|
|
7
9
|
var a = /* @__PURE__ */ r(
|
|
8
10
|
s,
|
|
11
|
+
o,
|
|
9
12
|
e,
|
|
10
|
-
t,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
18
|
-
for (let n in
|
|
19
|
-
this[n] =
|
|
19
|
+
function c(i) {
|
|
20
|
+
for (let n in t)
|
|
21
|
+
this[n] = t[n];
|
|
20
22
|
}
|
|
21
|
-
const
|
|
23
|
+
const _ = /* @__PURE__ */ function() {
|
|
22
24
|
return a.exports;
|
|
23
25
|
}();
|
|
24
26
|
export {
|
|
25
|
-
|
|
27
|
+
_ as default
|
|
26
28
|
};
|
|
@@ -2,7 +2,9 @@ import { s as o, r as i } from "../../chunks/ConfigRate.vue_vue_type_style_index
|
|
|
2
2
|
import { n as a } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const l = {
|
|
4
4
|
name: "ConfigRate",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
data() {
|
|
7
9
|
return {
|
|
8
10
|
textVisible: !1,
|
|
@@ -53,7 +55,7 @@ var n = /* @__PURE__ */ a(
|
|
|
53
55
|
o,
|
|
54
56
|
!1,
|
|
55
57
|
r,
|
|
56
|
-
"
|
|
58
|
+
"1c86355d",
|
|
57
59
|
null,
|
|
58
60
|
null
|
|
59
61
|
);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.el-tag[data-v-
|
|
1
|
+
.el-tag[data-v-1c86355d]{vertical-align:top}.el-tag+.el-tag[data-v-1c86355d]{margin-left:5px}.input-new-tag[data-v-1c86355d]{width:90px;margin-left:5px;vertical-align:bottom}.color-picker[data-v-1c86355d]{left:10px;vertical-align:top}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import Draggable from "vuedraggable";
|
|
2
2
|
import { M as MonacoEditor } from "../../chunks/monaco.1dbdc960.js";
|
|
3
|
-
import { s as staticRenderFns, r as render } from "../../chunks/ConfigSelect.vue_vue_type_template_lang.
|
|
3
|
+
import { s as staticRenderFns, r as render } from "../../chunks/ConfigSelect.vue_vue_type_template_lang.e7a9d5b7.js";
|
|
4
4
|
import { n as normalizeComponent } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
5
5
|
const __vue2_script = {
|
|
6
6
|
name: "ConfigSelect",
|
|
7
7
|
components: { Draggable, MonacoEditor },
|
|
8
|
-
props:
|
|
8
|
+
props: {
|
|
9
|
+
data: Object
|
|
10
|
+
},
|
|
9
11
|
data() {
|
|
10
12
|
return {
|
|
11
13
|
option: {
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { s as
|
|
1
|
+
import { s as e, r as o } from "../../chunks/ConfigSlider.vue_vue_type_template_lang.27b8cc7b.js";
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "ConfigSlider",
|
|
5
|
-
props:
|
|
6
|
-
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
8
|
+
}, t = {};
|
|
7
9
|
var i = /* @__PURE__ */ r(
|
|
8
10
|
s,
|
|
11
|
+
o,
|
|
9
12
|
e,
|
|
10
|
-
t,
|
|
11
13
|
!1,
|
|
12
14
|
l,
|
|
13
15
|
null,
|
|
@@ -15,8 +17,8 @@ var i = /* @__PURE__ */ r(
|
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
19
|
function l(a) {
|
|
18
|
-
for (let n in
|
|
19
|
-
this[n] =
|
|
20
|
+
for (let n in t)
|
|
21
|
+
this[n] = t[n];
|
|
20
22
|
}
|
|
21
23
|
const u = /* @__PURE__ */ function() {
|
|
22
24
|
return i.exports;
|
|
@@ -2,7 +2,9 @@ import { s as n, r as o } from "../../chunks/ConfigSwitch.vue_vue_type_style_ind
|
|
|
2
2
|
import { n as a } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "ConfigSwitch",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
methods: {
|
|
7
9
|
handleDicClear() {
|
|
8
10
|
this.data.dicData = [{ label: "", value: "0" }, { label: "", value: "1" }];
|
|
@@ -15,7 +17,7 @@ var l = /* @__PURE__ */ a(
|
|
|
15
17
|
n,
|
|
16
18
|
!1,
|
|
17
19
|
r,
|
|
18
|
-
"
|
|
20
|
+
"8b486734",
|
|
19
21
|
null,
|
|
20
22
|
null
|
|
21
23
|
);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.dic[data-v-
|
|
1
|
+
.dic[data-v-8b486734]{display:flex;margin-bottom:5px}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { M as MonacoEditor } from "../../chunks/monaco.1dbdc960.js";
|
|
2
|
-
import { s as staticRenderFns, r as render, A as AfdColumn } from "../../chunks/ConfigTable.vue_vue_type_template_lang.
|
|
2
|
+
import { s as staticRenderFns, r as render, A as AfdColumn } from "../../chunks/ConfigTable.vue_vue_type_template_lang.e9060616.js";
|
|
3
3
|
import { n as normalizeComponent } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
4
4
|
const __vue2_script = {
|
|
5
5
|
name: "ConfigTable",
|
|
6
6
|
components: { MonacoEditor, AfdColumn },
|
|
7
|
-
props:
|
|
7
|
+
props: {
|
|
8
|
+
data: Object
|
|
9
|
+
},
|
|
8
10
|
data() {
|
|
9
11
|
return {
|
|
10
12
|
options: {
|
|
@@ -2,19 +2,21 @@ import { s as e, r as o } from "../../chunks/ConfigTextarea.vue_vue_type_templat
|
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "ConfigTextarea",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
6
8
|
}, t = {};
|
|
7
9
|
var a = /* @__PURE__ */ r(
|
|
8
10
|
s,
|
|
9
11
|
o,
|
|
10
12
|
e,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
19
|
+
function c(i) {
|
|
18
20
|
for (let n in t)
|
|
19
21
|
this[n] = t[n];
|
|
20
22
|
}
|
|
@@ -2,7 +2,9 @@ import { s as e, r as o } from "../../chunks/ConfigTitle.vue_vue_type_template_l
|
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const i = {
|
|
4
4
|
name: "ConfigTitle",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
data() {
|
|
7
9
|
return {
|
|
8
10
|
options: ["100", "200", "300", "400", "500", "600", "700", "800", "900", "blod", "bloder", "inherit", "initial", "lighter", "normal", "revert", "unset"]
|
|
@@ -23,9 +25,9 @@ function l(a) {
|
|
|
23
25
|
for (let t in n)
|
|
24
26
|
this[t] = n[t];
|
|
25
27
|
}
|
|
26
|
-
const
|
|
28
|
+
const _ = /* @__PURE__ */ function() {
|
|
27
29
|
return s.exports;
|
|
28
30
|
}();
|
|
29
31
|
export {
|
|
30
|
-
|
|
32
|
+
_ as default
|
|
31
33
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { M as MonacoEditor } from "../../chunks/monaco.1dbdc960.js";
|
|
2
2
|
import Draggable from "vuedraggable";
|
|
3
|
-
import { s as staticRenderFns, r as render } from "../../chunks/ConfigTree.vue_vue_type_style_index_0_scoped_true_lang.
|
|
3
|
+
import { s as staticRenderFns, r as render } from "../../chunks/ConfigTree.vue_vue_type_style_index_0_scoped_true_lang.89ec5376.js";
|
|
4
4
|
import { n as normalizeComponent } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
5
5
|
const __vue2_script = {
|
|
6
6
|
name: "ConfigTree",
|
|
7
7
|
components: { MonacoEditor, Draggable },
|
|
8
|
-
props:
|
|
8
|
+
props: {
|
|
9
|
+
data: Object
|
|
10
|
+
},
|
|
9
11
|
data() {
|
|
10
12
|
return {
|
|
11
13
|
dialogForm: {},
|
|
@@ -104,7 +106,7 @@ var __component__ = /* @__PURE__ */ normalizeComponent(
|
|
|
104
106
|
staticRenderFns,
|
|
105
107
|
!1,
|
|
106
108
|
__vue2_injectStyles,
|
|
107
|
-
"
|
|
109
|
+
"657de8b2",
|
|
108
110
|
null,
|
|
109
111
|
null
|
|
110
112
|
);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.custom-tree-node[data-v-
|
|
1
|
+
.custom-tree-node[data-v-657de8b2]{flex:1;display:flex;align-items:center;justify-content:space-between;font-size:14px;padding-right:8px}
|
|
@@ -2,11 +2,13 @@ import { s as i, r as s } from "../../chunks/ConfigUEditor.vue_vue_type_template
|
|
|
2
2
|
import { n as e } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const a = {
|
|
4
4
|
name: "ConfigUEditor",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
watch: {
|
|
7
9
|
"data.options.oss": function(t) {
|
|
8
10
|
debugger;
|
|
9
|
-
t
|
|
11
|
+
t === "ali" ? this.data.options.qiniu = {} : t === "qiniu" && (this.data.options.ali = {});
|
|
10
12
|
}
|
|
11
13
|
}
|
|
12
14
|
}, o = {};
|
|
@@ -15,12 +17,12 @@ var r = /* @__PURE__ */ e(
|
|
|
15
17
|
s,
|
|
16
18
|
i,
|
|
17
19
|
!1,
|
|
18
|
-
|
|
20
|
+
c,
|
|
19
21
|
null,
|
|
20
22
|
null,
|
|
21
23
|
null
|
|
22
24
|
);
|
|
23
|
-
function
|
|
25
|
+
function c(t) {
|
|
24
26
|
for (let n in o)
|
|
25
27
|
this[n] = o[n];
|
|
26
28
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { s as n, r as o } from "../../chunks/ConfigUpload.vue_vue_type_template_lang.
|
|
1
|
+
import { s as n, r as o } from "../../chunks/ConfigUpload.vue_vue_type_template_lang.48dd814b.js";
|
|
2
2
|
import { n as s } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const i = {
|
|
4
4
|
name: "ConfigUpload",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
},
|
|
6
8
|
data() {
|
|
7
9
|
return {
|
|
8
10
|
option: {
|
|
@@ -24,7 +26,7 @@ const i = {
|
|
|
24
26
|
},
|
|
25
27
|
immediate: !0
|
|
26
28
|
},
|
|
27
|
-
"data.drag": function(
|
|
29
|
+
"data.drag": function() {
|
|
28
30
|
},
|
|
29
31
|
"data.dragFile": function(t) {
|
|
30
32
|
t && this.$delete(this.data, "listType");
|
|
@@ -183,7 +183,7 @@ const m = {
|
|
|
183
183
|
} else {
|
|
184
184
|
let e = [];
|
|
185
185
|
const r = (i = []) => {
|
|
186
|
-
i.forEach((o
|
|
186
|
+
i.forEach((o) => {
|
|
187
187
|
o.children ? r(o.children) : s.includes(o.prop) && e.push(o);
|
|
188
188
|
});
|
|
189
189
|
};
|
|
@@ -206,9 +206,9 @@ function b(t) {
|
|
|
206
206
|
for (let s in n)
|
|
207
207
|
this[s] = n[s];
|
|
208
208
|
}
|
|
209
|
-
const
|
|
209
|
+
const x = /* @__PURE__ */ function() {
|
|
210
210
|
return f.exports;
|
|
211
211
|
}();
|
|
212
212
|
export {
|
|
213
|
-
|
|
213
|
+
x as default
|
|
214
214
|
};
|
|
@@ -13,7 +13,7 @@ var h = function() {
|
|
|
13
13
|
}, [n("div", {
|
|
14
14
|
staticClass: "avue-grid"
|
|
15
15
|
}), t._l(t.option.nodeList, function(i, o) {
|
|
16
|
-
return i.display ? t._e() : n("FlowNode", {
|
|
16
|
+
return [i.display ? t._e() : n("FlowNode", {
|
|
17
17
|
key: o,
|
|
18
18
|
attrs: {
|
|
19
19
|
id: i.id,
|
|
@@ -40,7 +40,7 @@ var h = function() {
|
|
|
40
40
|
}], null, !0)
|
|
41
41
|
}, [t._t("default", null, {
|
|
42
42
|
node: i
|
|
43
|
-
})], 2);
|
|
43
|
+
})], 2)];
|
|
44
44
|
})], 2)]);
|
|
45
45
|
}, d = [];
|
|
46
46
|
const m = {
|
|
@@ -171,7 +171,7 @@ const m = {
|
|
|
171
171
|
// 改变节点的位置
|
|
172
172
|
changeNodeSite({ index: t, left: e, top: n }) {
|
|
173
173
|
for (var i = 0; i < this.option.nodeList.length; i++)
|
|
174
|
-
|
|
174
|
+
i === t && (this.$set(this.option.nodeList[i], "left", e), this.$set(this.option.nodeList[i], "top", n));
|
|
175
175
|
},
|
|
176
176
|
//删除节点
|
|
177
177
|
deleteNode(t) {
|
|
@@ -223,7 +223,7 @@ const m = {
|
|
|
223
223
|
jsPlumbInit() {
|
|
224
224
|
const t = this;
|
|
225
225
|
this.jsPlumb.ready(function() {
|
|
226
|
-
t.jsPlumb.importDefaults(t.jsplumbSetting), t.jsPlumb.setSuspendDrawing(!1, !0), t.loadEasyFlow(), t.jsPlumb.bind("click", function(e
|
|
226
|
+
t.jsPlumb.importDefaults(t.jsplumbSetting), t.jsPlumb.setSuspendDrawing(!1, !0), t.loadEasyFlow(), t.jsPlumb.bind("click", function(e) {
|
|
227
227
|
console.log("click", e), t.$confirm("确定删除所点击的线吗?", "提示", {
|
|
228
228
|
confirmButtonText: "确定",
|
|
229
229
|
cancelButtonText: "取消",
|
|
@@ -2,19 +2,21 @@ import { s as t, r as e } from "../../chunks/FormConfig.vue_vue_type_template_la
|
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "FormConfig",
|
|
5
|
-
props:
|
|
5
|
+
props: {
|
|
6
|
+
data: Object
|
|
7
|
+
}
|
|
6
8
|
}, o = {};
|
|
7
9
|
var a = /* @__PURE__ */ r(
|
|
8
10
|
s,
|
|
9
11
|
e,
|
|
10
12
|
t,
|
|
11
13
|
!1,
|
|
12
|
-
|
|
14
|
+
c,
|
|
13
15
|
null,
|
|
14
16
|
null,
|
|
15
17
|
null
|
|
16
18
|
);
|
|
17
|
-
function i
|
|
19
|
+
function c(i) {
|
|
18
20
|
for (let n in o)
|
|
19
21
|
this[n] = o[n];
|
|
20
22
|
}
|