@web-utils/component 2.7.8 → 2.7.9
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/{FormConfig.vue_vue_type_template_lang.85b4ee87.js → FormConfig.vue_vue_type_template_lang.a246f077.js} +2 -14
- package/dist/chunks/{WidgetConfig.vue_vue_type_template_lang.24a87d72.js → WidgetConfig.vue_vue_type_template_lang.d3cd0479.js} +59 -44
- package/dist/components/dialog-filter/index.js +1 -0
- package/dist/components/form-config/index.js +1 -1
- package/dist/components/fy-form-design/index.js +59 -44
- package/dist/components/widget-config/index.js +1 -1
- package/dist/index.es.js +113 -94
- package/package.json +1 -1
- package/web-types.json +1 -1
|
@@ -103,9 +103,6 @@ var s = function() {
|
|
|
103
103
|
label: "多分组转标签"
|
|
104
104
|
}
|
|
105
105
|
}, [a("ElSwitch", {
|
|
106
|
-
attrs: {
|
|
107
|
-
"active-color": "#409EFF"
|
|
108
|
-
},
|
|
109
106
|
model: {
|
|
110
107
|
value: t.data.tabs,
|
|
111
108
|
callback: function(e) {
|
|
@@ -130,9 +127,6 @@ var s = function() {
|
|
|
130
127
|
label: "显示按钮"
|
|
131
128
|
}
|
|
132
129
|
}, [a("ElSwitch", {
|
|
133
|
-
attrs: {
|
|
134
|
-
"active-color": "#409EFF"
|
|
135
|
-
},
|
|
136
130
|
model: {
|
|
137
131
|
value: t.data.menuBtn,
|
|
138
132
|
callback: function(e) {
|
|
@@ -145,9 +139,6 @@ var s = function() {
|
|
|
145
139
|
label: "显示提交按钮"
|
|
146
140
|
}
|
|
147
141
|
}, [a("ElSwitch", {
|
|
148
|
-
attrs: {
|
|
149
|
-
"active-color": "#409EFF"
|
|
150
|
-
},
|
|
151
142
|
model: {
|
|
152
143
|
value: t.data.submitBtn,
|
|
153
144
|
callback: function(e) {
|
|
@@ -175,9 +166,6 @@ var s = function() {
|
|
|
175
166
|
label: "显示清空按钮"
|
|
176
167
|
}
|
|
177
168
|
}, [a("ElSwitch", {
|
|
178
|
-
attrs: {
|
|
179
|
-
"active-color": "#409EFF"
|
|
180
|
-
},
|
|
181
169
|
model: {
|
|
182
170
|
value: t.data.emptyBtn,
|
|
183
171
|
callback: function(e) {
|
|
@@ -225,8 +213,8 @@ var s = function() {
|
|
|
225
213
|
expression: "data.disabled"
|
|
226
214
|
}
|
|
227
215
|
})], 1)], 1)], 1);
|
|
228
|
-
},
|
|
216
|
+
}, n = [];
|
|
229
217
|
export {
|
|
230
218
|
s as r,
|
|
231
|
-
|
|
219
|
+
n as s
|
|
232
220
|
};
|
|
@@ -1227,15 +1227,15 @@ const ConfigEvent = /* @__PURE__ */ function() {
|
|
|
1227
1227
|
this.onLoad = "(res, cb) => { }";
|
|
1228
1228
|
return;
|
|
1229
1229
|
}
|
|
1230
|
-
let { props:
|
|
1231
|
-
|
|
1232
|
-
const { value:
|
|
1230
|
+
let { props: r } = this.data;
|
|
1231
|
+
r || (r = { label: "label", value: "value" });
|
|
1232
|
+
const { value: i } = r, _ = `(res, cb) => {
|
|
1233
1233
|
let { page, value, data } = res
|
|
1234
1234
|
if (!page) page = { currentPage: 1, pageSize: 10 }
|
|
1235
1235
|
const { currentPage, pageSize } = page
|
|
1236
1236
|
let params = { ...data, ${n || "current"}: currentPage, ${o || "page"}: pageSize }
|
|
1237
1237
|
|
|
1238
|
-
if (value) params['${
|
|
1238
|
+
if (value) params['${i}'] = value
|
|
1239
1239
|
|
|
1240
1240
|
if ('${a || "get"}' == 'get') params = { params: { ...params } }
|
|
1241
1241
|
|
|
@@ -1264,7 +1264,7 @@ const ConfigEvent = /* @__PURE__ */ function() {
|
|
|
1264
1264
|
if (value) {
|
|
1265
1265
|
const records = result.data
|
|
1266
1266
|
if (records && records.length > 0) cb(records[0])
|
|
1267
|
-
else this.$message.error('根据${
|
|
1267
|
+
else this.$message.error('根据${i}: ' + value + ' 查询不到结果')
|
|
1268
1268
|
} else cb(result)
|
|
1269
1269
|
})
|
|
1270
1270
|
}`;
|
|
@@ -1477,18 +1477,23 @@ var render = function() {
|
|
|
1477
1477
|
})], 1) : t._e(), ["cascader", "checkbox", "radio", "select", "tree", "upload", "img", "array", "slider", "timerange", "daterange", "datetimerange"].includes(t.data.type) ? a("ElFormItem", {
|
|
1478
1478
|
attrs: {
|
|
1479
1479
|
label: "数据类型"
|
|
1480
|
-
}
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1480
|
+
},
|
|
1481
|
+
scopedSlots: t._u([{
|
|
1482
|
+
key: "label",
|
|
1483
|
+
fn: function() {
|
|
1484
|
+
return [a("ElLink", {
|
|
1485
|
+
attrs: {
|
|
1486
|
+
underline: !1,
|
|
1487
|
+
href: "https://avuejs.com/docs/datatype.html",
|
|
1488
|
+
target: "_blank"
|
|
1489
|
+
}
|
|
1490
|
+
}, [t._v(" 数据类型 "), a("i", {
|
|
1491
|
+
staticClass: "el-icon-question"
|
|
1492
|
+
})])];
|
|
1493
|
+
},
|
|
1494
|
+
proxy: !0
|
|
1495
|
+
}], null, !1, 3051713203)
|
|
1496
|
+
}, [a("ElSelect", {
|
|
1492
1497
|
attrs: {
|
|
1493
1498
|
placeholder: "数据类型",
|
|
1494
1499
|
clearable: ""
|
|
@@ -1515,21 +1520,26 @@ var render = function() {
|
|
|
1515
1520
|
label: "Array",
|
|
1516
1521
|
value: "array"
|
|
1517
1522
|
}
|
|
1518
|
-
})], 1)],
|
|
1523
|
+
})], 1)], 1) : t._e(), a("ElFormItem", {
|
|
1519
1524
|
attrs: {
|
|
1520
1525
|
label: "字段提示"
|
|
1521
|
-
}
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1526
|
+
},
|
|
1527
|
+
scopedSlots: t._u([{
|
|
1528
|
+
key: "label",
|
|
1529
|
+
fn: function() {
|
|
1530
|
+
return [a("ElLink", {
|
|
1531
|
+
attrs: {
|
|
1532
|
+
underline: !1,
|
|
1533
|
+
href: "https://avuejs.com/form/form-tip.html",
|
|
1534
|
+
target: "_blank"
|
|
1535
|
+
}
|
|
1536
|
+
}, [t._v(" 字段提示 "), a("i", {
|
|
1537
|
+
staticClass: "el-icon-question"
|
|
1538
|
+
})])];
|
|
1539
|
+
},
|
|
1540
|
+
proxy: !0
|
|
1541
|
+
}], null, !1, 708991366)
|
|
1542
|
+
}, [a("ElInput", {
|
|
1533
1543
|
attrs: {
|
|
1534
1544
|
clearable: "",
|
|
1535
1545
|
placeholder: "字段提示"
|
|
@@ -1541,7 +1551,7 @@ var render = function() {
|
|
|
1541
1551
|
},
|
|
1542
1552
|
expression: "data.tip"
|
|
1543
1553
|
}
|
|
1544
|
-
})],
|
|
1554
|
+
})], 1), t.data.tip && !["upload"].includes(t.data.type) ? a("ElFormItem", {
|
|
1545
1555
|
attrs: {
|
|
1546
1556
|
label: "字段提示位置",
|
|
1547
1557
|
"label-width": "110px"
|
|
@@ -1581,18 +1591,23 @@ var render = function() {
|
|
|
1581
1591
|
})], 1)], 1) : t._e(), a("ElFormItem", {
|
|
1582
1592
|
attrs: {
|
|
1583
1593
|
label: "标题提示"
|
|
1584
|
-
}
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1594
|
+
},
|
|
1595
|
+
scopedSlots: t._u([{
|
|
1596
|
+
key: "label",
|
|
1597
|
+
fn: function() {
|
|
1598
|
+
return [a("ElLink", {
|
|
1599
|
+
attrs: {
|
|
1600
|
+
underline: !1,
|
|
1601
|
+
href: "https://avuejs.com/form/form-tip.html",
|
|
1602
|
+
target: "_blank"
|
|
1603
|
+
}
|
|
1604
|
+
}, [t._v(" 标题提示 "), a("i", {
|
|
1605
|
+
staticClass: "el-icon-question"
|
|
1606
|
+
})])];
|
|
1607
|
+
},
|
|
1608
|
+
proxy: !0
|
|
1609
|
+
}], null, !1, 1033131739)
|
|
1610
|
+
}, [a("ElInput", {
|
|
1596
1611
|
attrs: {
|
|
1597
1612
|
clearable: "",
|
|
1598
1613
|
placeholder: "标题提示"
|
|
@@ -1604,7 +1619,7 @@ var render = function() {
|
|
|
1604
1619
|
},
|
|
1605
1620
|
expression: "data.labelTip"
|
|
1606
1621
|
}
|
|
1607
|
-
})],
|
|
1622
|
+
})], 1), t.data.labelTip && !["upload"].includes(t.data.type) ? a("ElFormItem", {
|
|
1608
1623
|
attrs: {
|
|
1609
1624
|
label: "标题提示位置",
|
|
1610
1625
|
"label-width": "110px"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as t, r as e } from "../../chunks/FormConfig.vue_vue_type_template_lang.
|
|
1
|
+
import { s as t, r as e } from "../../chunks/FormConfig.vue_vue_type_template_lang.a246f077.js";
|
|
2
2
|
import { n as r } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const s = {
|
|
4
4
|
name: "FormConfig",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as staticRenderFns$3, r as render$3, C as ConfigCustom, a as ConfigInput, b as ConfigTextarea, c as ConfigNumber, d as ConfigDynamic, e as ConfigSwitch, f as ConfigRate, g as ConfigSlider, h as ConfigColor, i as ConfigSelect, j as ConfigTree, k as ConfigDate, l as ConfigUpload, m as ConfigUEditor, n as ConfigMap, o as ConfigGroup, p as ConfigArray, q as ConfigTitle, t as ConfigEvent, u as ConfigTable, v as fields } from "../../chunks/WidgetConfig.vue_vue_type_template_lang.
|
|
1
|
+
import { s as staticRenderFns$3, r as render$3, C as ConfigCustom, a as ConfigInput, b as ConfigTextarea, c as ConfigNumber, d as ConfigDynamic, e as ConfigSwitch, f as ConfigRate, g as ConfigSlider, h as ConfigColor, i as ConfigSelect, j as ConfigTree, k as ConfigDate, l as ConfigUpload, m as ConfigUEditor, n as ConfigMap, o as ConfigGroup, p as ConfigArray, q as ConfigTitle, t as ConfigEvent, u as ConfigTable, v as fields } from "../../chunks/WidgetConfig.vue_vue_type_template_lang.d3cd0479.js";
|
|
2
2
|
import { isBlank } from "@web-utils/core";
|
|
3
3
|
import { c as convert, M as MonacoEditor } from "../../chunks/monaco.1dbdc960.js";
|
|
4
4
|
import { d as deepClone } from "../../chunks/util.80e28481.js";
|
|
@@ -7,7 +7,7 @@ import { W as WidgetFormItem } from "../../chunks/WidgetFormTable.vue_vue_type_t
|
|
|
7
7
|
import { W as WidgetFormTable } from "../../chunks/WidgetFormGroup.vue_vue_type_template_lang.47789aae.js";
|
|
8
8
|
import { s as staticRenderFns$1, r as render$1, W as WidgetFormGroup } from "../../chunks/WidgetForm.vue_vue_type_template_lang.fbb7d6b7.js";
|
|
9
9
|
import { n as normalizeComponent } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
10
|
-
import { s as staticRenderFns$2, r as render$2 } from "../../chunks/FormConfig.vue_vue_type_template_lang.
|
|
10
|
+
import { s as staticRenderFns$2, r as render$2 } from "../../chunks/FormConfig.vue_vue_type_template_lang.a246f077.js";
|
|
11
11
|
const widgetEmpty = "data:image/png;base64,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", history = {
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
@@ -625,7 +625,25 @@ var render = function() {
|
|
|
625
625
|
placement: "top",
|
|
626
626
|
trigger: "hover",
|
|
627
627
|
width: "350px"
|
|
628
|
-
}
|
|
628
|
+
},
|
|
629
|
+
scopedSlots: t._u([{
|
|
630
|
+
key: "reference",
|
|
631
|
+
fn: function() {
|
|
632
|
+
return [o("ElButton", {
|
|
633
|
+
staticStyle: {
|
|
634
|
+
"margin-left": "10px"
|
|
635
|
+
},
|
|
636
|
+
attrs: {
|
|
637
|
+
size: "medium",
|
|
638
|
+
type: "primary"
|
|
639
|
+
},
|
|
640
|
+
on: {
|
|
641
|
+
click: t.handleCopy
|
|
642
|
+
}
|
|
643
|
+
}, [t._v(" 复制 ")])];
|
|
644
|
+
},
|
|
645
|
+
proxy: !0
|
|
646
|
+
}])
|
|
629
647
|
}, [o("ElForm", {
|
|
630
648
|
staticStyle: {
|
|
631
649
|
padding: "0 20px"
|
|
@@ -654,40 +672,50 @@ var render = function() {
|
|
|
654
672
|
placement: "top-start",
|
|
655
673
|
trigger: "hover",
|
|
656
674
|
content: "复制json对象"
|
|
657
|
-
}
|
|
658
|
-
}, [o("ElRadio", {
|
|
659
|
-
attrs: {
|
|
660
|
-
slot: "reference",
|
|
661
|
-
label: "json"
|
|
662
675
|
},
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
676
|
+
scopedSlots: t._u([{
|
|
677
|
+
key: "reference",
|
|
678
|
+
fn: function() {
|
|
679
|
+
return [o("ElRadio", {
|
|
680
|
+
attrs: {
|
|
681
|
+
label: "json"
|
|
682
|
+
},
|
|
683
|
+
model: {
|
|
684
|
+
value: t.configOption.generateType,
|
|
685
|
+
callback: function(s) {
|
|
686
|
+
t.$set(t.configOption, "generateType", s);
|
|
687
|
+
},
|
|
688
|
+
expression: "configOption.generateType"
|
|
689
|
+
}
|
|
690
|
+
}, [t._v(" json ")])];
|
|
668
691
|
},
|
|
669
|
-
|
|
670
|
-
}
|
|
671
|
-
}
|
|
692
|
+
proxy: !0
|
|
693
|
+
}])
|
|
694
|
+
}), o("ElPopover", {
|
|
672
695
|
attrs: {
|
|
673
696
|
placement: "top-start",
|
|
674
697
|
trigger: "hover",
|
|
675
698
|
content: "复制string字符串,可直接用于后端保存无需再次处理。"
|
|
676
|
-
}
|
|
677
|
-
}, [o("ElRadio", {
|
|
678
|
-
attrs: {
|
|
679
|
-
slot: "reference",
|
|
680
|
-
label: "string"
|
|
681
699
|
},
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
700
|
+
scopedSlots: t._u([{
|
|
701
|
+
key: "reference",
|
|
702
|
+
fn: function() {
|
|
703
|
+
return [o("ElRadio", {
|
|
704
|
+
attrs: {
|
|
705
|
+
label: "string"
|
|
706
|
+
},
|
|
707
|
+
model: {
|
|
708
|
+
value: t.configOption.generateType,
|
|
709
|
+
callback: function(s) {
|
|
710
|
+
t.$set(t.configOption, "generateType", s);
|
|
711
|
+
},
|
|
712
|
+
expression: "configOption.generateType"
|
|
713
|
+
}
|
|
714
|
+
}, [t._v(" string ")])];
|
|
687
715
|
},
|
|
688
|
-
|
|
689
|
-
}
|
|
690
|
-
}
|
|
716
|
+
proxy: !0
|
|
717
|
+
}])
|
|
718
|
+
})], 1), o("ElFormItem", {
|
|
691
719
|
attrs: {
|
|
692
720
|
label: "缩进长度-空格数量"
|
|
693
721
|
}
|
|
@@ -753,20 +781,7 @@ var render = function() {
|
|
|
753
781
|
},
|
|
754
782
|
expression: "configOption.dropQuotesOnNumbers"
|
|
755
783
|
}
|
|
756
|
-
})], 1)], 1), o("
|
|
757
|
-
staticStyle: {
|
|
758
|
-
"margin-left": "10px"
|
|
759
|
-
},
|
|
760
|
-
attrs: {
|
|
761
|
-
slot: "reference",
|
|
762
|
-
size: "medium",
|
|
763
|
-
type: "primary"
|
|
764
|
-
},
|
|
765
|
-
on: {
|
|
766
|
-
click: t.handleCopy
|
|
767
|
-
},
|
|
768
|
-
slot: "reference"
|
|
769
|
-
}, [t._v(" 复制 ")])], 1)], 1)], 1), o("ElDrawer", {
|
|
784
|
+
})], 1)], 1)], 1)], 1)], 1), o("ElDrawer", {
|
|
770
785
|
attrs: {
|
|
771
786
|
title: "预览",
|
|
772
787
|
visible: t.previewVisible,
|
|
@@ -956,7 +971,7 @@ const FyFormDesign_vue_vue_type_style_index_0_lang = "", __vue2_script = {
|
|
|
956
971
|
steps: [await this.transAvueOptionsToFormDesigner({ ...this.widgetForm, ...options })],
|
|
957
972
|
storage: this.storage
|
|
958
973
|
}), this.undoRedo && window.addEventListener("keydown", (t) => {
|
|
959
|
-
(t.metaKey && !t.shiftKey && t.keyCode
|
|
974
|
+
(t.metaKey && !t.shiftKey && t.keyCode === 90 || t.ctrlKey && !t.shiftKey && t.keyCode === 90) && (this.widgetForm = this.handleUndo()), (t.metaKey && t.shiftKey && t.keyCode === 90 || t.ctrlKey && t.shiftKey && t.keyCode === 90 || t.ctrlKey && t.keyCode === 89) && (this.widgetForm = this.handleRedo());
|
|
960
975
|
}, !1);
|
|
961
976
|
},
|
|
962
977
|
// 加载icon
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s, r, C as o, a as l, b as d, c as f, d as u, e as c, f as g, g as p, h, i as C, j as m, k as b, l as v, m as y, n as _, o as x, p as j, q, t as w, u as R, v as k } from "../../chunks/WidgetConfig.vue_vue_type_template_lang.
|
|
1
|
+
import { s, r, C as o, a as l, b as d, c as f, d as u, e as c, f as g, g as p, h, i as C, j as m, k as b, l as v, m as y, n as _, o as x, p as j, q, t as w, u as R, v as k } from "../../chunks/WidgetConfig.vue_vue_type_template_lang.d3cd0479.js";
|
|
2
2
|
import { n as O } from "../../chunks/vueComponentNormalizer.71e2aa87.js";
|
|
3
3
|
const T = [
|
|
4
4
|
"year",
|
package/dist/index.es.js
CHANGED
|
@@ -6329,6 +6329,7 @@ var render$2b = function() {
|
|
|
6329
6329
|
class: ["avue-crud__dialog", "avue-crud__filter"],
|
|
6330
6330
|
attrs: {
|
|
6331
6331
|
"lock-scroll": "",
|
|
6332
|
+
"append-to-body": "",
|
|
6332
6333
|
title: "过滤条件",
|
|
6333
6334
|
size: t.crud.isMobile ? "100%" : "60%",
|
|
6334
6335
|
visible: t.box
|
|
@@ -17511,9 +17512,6 @@ var render$1s = function() {
|
|
|
17511
17512
|
label: "多分组转标签"
|
|
17512
17513
|
}
|
|
17513
17514
|
}, [s("ElSwitch", {
|
|
17514
|
-
attrs: {
|
|
17515
|
-
"active-color": "#409EFF"
|
|
17516
|
-
},
|
|
17517
17515
|
model: {
|
|
17518
17516
|
value: t.data.tabs,
|
|
17519
17517
|
callback: function(a) {
|
|
@@ -17538,9 +17536,6 @@ var render$1s = function() {
|
|
|
17538
17536
|
label: "显示按钮"
|
|
17539
17537
|
}
|
|
17540
17538
|
}, [s("ElSwitch", {
|
|
17541
|
-
attrs: {
|
|
17542
|
-
"active-color": "#409EFF"
|
|
17543
|
-
},
|
|
17544
17539
|
model: {
|
|
17545
17540
|
value: t.data.menuBtn,
|
|
17546
17541
|
callback: function(a) {
|
|
@@ -17553,9 +17548,6 @@ var render$1s = function() {
|
|
|
17553
17548
|
label: "显示提交按钮"
|
|
17554
17549
|
}
|
|
17555
17550
|
}, [s("ElSwitch", {
|
|
17556
|
-
attrs: {
|
|
17557
|
-
"active-color": "#409EFF"
|
|
17558
|
-
},
|
|
17559
17551
|
model: {
|
|
17560
17552
|
value: t.data.submitBtn,
|
|
17561
17553
|
callback: function(a) {
|
|
@@ -17583,9 +17575,6 @@ var render$1s = function() {
|
|
|
17583
17575
|
label: "显示清空按钮"
|
|
17584
17576
|
}
|
|
17585
17577
|
}, [s("ElSwitch", {
|
|
17586
|
-
attrs: {
|
|
17587
|
-
"active-color": "#409EFF"
|
|
17588
|
-
},
|
|
17589
17578
|
model: {
|
|
17590
17579
|
value: t.data.emptyBtn,
|
|
17591
17580
|
callback: function(a) {
|
|
@@ -22159,18 +22148,23 @@ var render$16 = function() {
|
|
|
22159
22148
|
})], 1) : t._e(), ["cascader", "checkbox", "radio", "select", "tree", "upload", "img", "array", "slider", "timerange", "daterange", "datetimerange"].includes(t.data.type) ? s("ElFormItem", {
|
|
22160
22149
|
attrs: {
|
|
22161
22150
|
label: "数据类型"
|
|
22162
|
-
}
|
|
22163
|
-
|
|
22164
|
-
|
|
22165
|
-
|
|
22166
|
-
|
|
22167
|
-
|
|
22168
|
-
|
|
22169
|
-
|
|
22170
|
-
|
|
22171
|
-
|
|
22172
|
-
|
|
22173
|
-
|
|
22151
|
+
},
|
|
22152
|
+
scopedSlots: t._u([{
|
|
22153
|
+
key: "label",
|
|
22154
|
+
fn: function() {
|
|
22155
|
+
return [s("ElLink", {
|
|
22156
|
+
attrs: {
|
|
22157
|
+
underline: !1,
|
|
22158
|
+
href: "https://avuejs.com/docs/datatype.html",
|
|
22159
|
+
target: "_blank"
|
|
22160
|
+
}
|
|
22161
|
+
}, [t._v(" 数据类型 "), s("i", {
|
|
22162
|
+
staticClass: "el-icon-question"
|
|
22163
|
+
})])];
|
|
22164
|
+
},
|
|
22165
|
+
proxy: !0
|
|
22166
|
+
}], null, !1, 3051713203)
|
|
22167
|
+
}, [s("ElSelect", {
|
|
22174
22168
|
attrs: {
|
|
22175
22169
|
placeholder: "数据类型",
|
|
22176
22170
|
clearable: ""
|
|
@@ -22197,21 +22191,26 @@ var render$16 = function() {
|
|
|
22197
22191
|
label: "Array",
|
|
22198
22192
|
value: "array"
|
|
22199
22193
|
}
|
|
22200
|
-
})], 1)],
|
|
22194
|
+
})], 1)], 1) : t._e(), s("ElFormItem", {
|
|
22201
22195
|
attrs: {
|
|
22202
22196
|
label: "字段提示"
|
|
22203
|
-
}
|
|
22204
|
-
|
|
22205
|
-
|
|
22206
|
-
|
|
22207
|
-
|
|
22208
|
-
|
|
22209
|
-
|
|
22210
|
-
|
|
22211
|
-
|
|
22212
|
-
|
|
22213
|
-
|
|
22214
|
-
|
|
22197
|
+
},
|
|
22198
|
+
scopedSlots: t._u([{
|
|
22199
|
+
key: "label",
|
|
22200
|
+
fn: function() {
|
|
22201
|
+
return [s("ElLink", {
|
|
22202
|
+
attrs: {
|
|
22203
|
+
underline: !1,
|
|
22204
|
+
href: "https://avuejs.com/form/form-tip.html",
|
|
22205
|
+
target: "_blank"
|
|
22206
|
+
}
|
|
22207
|
+
}, [t._v(" 字段提示 "), s("i", {
|
|
22208
|
+
staticClass: "el-icon-question"
|
|
22209
|
+
})])];
|
|
22210
|
+
},
|
|
22211
|
+
proxy: !0
|
|
22212
|
+
}], null, !1, 708991366)
|
|
22213
|
+
}, [s("ElInput", {
|
|
22215
22214
|
attrs: {
|
|
22216
22215
|
clearable: "",
|
|
22217
22216
|
placeholder: "字段提示"
|
|
@@ -22223,7 +22222,7 @@ var render$16 = function() {
|
|
|
22223
22222
|
},
|
|
22224
22223
|
expression: "data.tip"
|
|
22225
22224
|
}
|
|
22226
|
-
})],
|
|
22225
|
+
})], 1), t.data.tip && !["upload"].includes(t.data.type) ? s("ElFormItem", {
|
|
22227
22226
|
attrs: {
|
|
22228
22227
|
label: "字段提示位置",
|
|
22229
22228
|
"label-width": "110px"
|
|
@@ -22263,18 +22262,23 @@ var render$16 = function() {
|
|
|
22263
22262
|
})], 1)], 1) : t._e(), s("ElFormItem", {
|
|
22264
22263
|
attrs: {
|
|
22265
22264
|
label: "标题提示"
|
|
22266
|
-
}
|
|
22267
|
-
|
|
22268
|
-
|
|
22269
|
-
|
|
22270
|
-
|
|
22271
|
-
|
|
22272
|
-
|
|
22273
|
-
|
|
22274
|
-
|
|
22275
|
-
|
|
22276
|
-
|
|
22277
|
-
|
|
22265
|
+
},
|
|
22266
|
+
scopedSlots: t._u([{
|
|
22267
|
+
key: "label",
|
|
22268
|
+
fn: function() {
|
|
22269
|
+
return [s("ElLink", {
|
|
22270
|
+
attrs: {
|
|
22271
|
+
underline: !1,
|
|
22272
|
+
href: "https://avuejs.com/form/form-tip.html",
|
|
22273
|
+
target: "_blank"
|
|
22274
|
+
}
|
|
22275
|
+
}, [t._v(" 标题提示 "), s("i", {
|
|
22276
|
+
staticClass: "el-icon-question"
|
|
22277
|
+
})])];
|
|
22278
|
+
},
|
|
22279
|
+
proxy: !0
|
|
22280
|
+
}], null, !1, 1033131739)
|
|
22281
|
+
}, [s("ElInput", {
|
|
22278
22282
|
attrs: {
|
|
22279
22283
|
clearable: "",
|
|
22280
22284
|
placeholder: "标题提示"
|
|
@@ -22286,7 +22290,7 @@ var render$16 = function() {
|
|
|
22286
22290
|
},
|
|
22287
22291
|
expression: "data.labelTip"
|
|
22288
22292
|
}
|
|
22289
|
-
})],
|
|
22293
|
+
})], 1), t.data.labelTip && !["upload"].includes(t.data.type) ? s("ElFormItem", {
|
|
22290
22294
|
attrs: {
|
|
22291
22295
|
label: "标题提示位置",
|
|
22292
22296
|
"label-width": "110px"
|
|
@@ -22949,7 +22953,25 @@ var render$15 = function() {
|
|
|
22949
22953
|
placement: "top",
|
|
22950
22954
|
trigger: "hover",
|
|
22951
22955
|
width: "350px"
|
|
22952
|
-
}
|
|
22956
|
+
},
|
|
22957
|
+
scopedSlots: t._u([{
|
|
22958
|
+
key: "reference",
|
|
22959
|
+
fn: function() {
|
|
22960
|
+
return [s("ElButton", {
|
|
22961
|
+
staticStyle: {
|
|
22962
|
+
"margin-left": "10px"
|
|
22963
|
+
},
|
|
22964
|
+
attrs: {
|
|
22965
|
+
size: "medium",
|
|
22966
|
+
type: "primary"
|
|
22967
|
+
},
|
|
22968
|
+
on: {
|
|
22969
|
+
click: t.handleCopy
|
|
22970
|
+
}
|
|
22971
|
+
}, [t._v(" 复制 ")])];
|
|
22972
|
+
},
|
|
22973
|
+
proxy: !0
|
|
22974
|
+
}])
|
|
22953
22975
|
}, [s("ElForm", {
|
|
22954
22976
|
staticStyle: {
|
|
22955
22977
|
padding: "0 20px"
|
|
@@ -22978,40 +23000,50 @@ var render$15 = function() {
|
|
|
22978
23000
|
placement: "top-start",
|
|
22979
23001
|
trigger: "hover",
|
|
22980
23002
|
content: "复制json对象"
|
|
22981
|
-
}
|
|
22982
|
-
}, [s("ElRadio", {
|
|
22983
|
-
attrs: {
|
|
22984
|
-
slot: "reference",
|
|
22985
|
-
label: "json"
|
|
22986
23003
|
},
|
|
22987
|
-
|
|
22988
|
-
|
|
22989
|
-
|
|
22990
|
-
|
|
22991
|
-
|
|
23004
|
+
scopedSlots: t._u([{
|
|
23005
|
+
key: "reference",
|
|
23006
|
+
fn: function() {
|
|
23007
|
+
return [s("ElRadio", {
|
|
23008
|
+
attrs: {
|
|
23009
|
+
label: "json"
|
|
23010
|
+
},
|
|
23011
|
+
model: {
|
|
23012
|
+
value: t.configOption.generateType,
|
|
23013
|
+
callback: function(a) {
|
|
23014
|
+
t.$set(t.configOption, "generateType", a);
|
|
23015
|
+
},
|
|
23016
|
+
expression: "configOption.generateType"
|
|
23017
|
+
}
|
|
23018
|
+
}, [t._v(" json ")])];
|
|
22992
23019
|
},
|
|
22993
|
-
|
|
22994
|
-
}
|
|
22995
|
-
}
|
|
23020
|
+
proxy: !0
|
|
23021
|
+
}])
|
|
23022
|
+
}), s("ElPopover", {
|
|
22996
23023
|
attrs: {
|
|
22997
23024
|
placement: "top-start",
|
|
22998
23025
|
trigger: "hover",
|
|
22999
23026
|
content: "复制string字符串,可直接用于后端保存无需再次处理。"
|
|
23000
|
-
}
|
|
23001
|
-
}, [s("ElRadio", {
|
|
23002
|
-
attrs: {
|
|
23003
|
-
slot: "reference",
|
|
23004
|
-
label: "string"
|
|
23005
23027
|
},
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23028
|
+
scopedSlots: t._u([{
|
|
23029
|
+
key: "reference",
|
|
23030
|
+
fn: function() {
|
|
23031
|
+
return [s("ElRadio", {
|
|
23032
|
+
attrs: {
|
|
23033
|
+
label: "string"
|
|
23034
|
+
},
|
|
23035
|
+
model: {
|
|
23036
|
+
value: t.configOption.generateType,
|
|
23037
|
+
callback: function(a) {
|
|
23038
|
+
t.$set(t.configOption, "generateType", a);
|
|
23039
|
+
},
|
|
23040
|
+
expression: "configOption.generateType"
|
|
23041
|
+
}
|
|
23042
|
+
}, [t._v(" string ")])];
|
|
23011
23043
|
},
|
|
23012
|
-
|
|
23013
|
-
}
|
|
23014
|
-
}
|
|
23044
|
+
proxy: !0
|
|
23045
|
+
}])
|
|
23046
|
+
})], 1), s("ElFormItem", {
|
|
23015
23047
|
attrs: {
|
|
23016
23048
|
label: "缩进长度-空格数量"
|
|
23017
23049
|
}
|
|
@@ -23077,20 +23109,7 @@ var render$15 = function() {
|
|
|
23077
23109
|
},
|
|
23078
23110
|
expression: "configOption.dropQuotesOnNumbers"
|
|
23079
23111
|
}
|
|
23080
|
-
})], 1)], 1), s("
|
|
23081
|
-
staticStyle: {
|
|
23082
|
-
"margin-left": "10px"
|
|
23083
|
-
},
|
|
23084
|
-
attrs: {
|
|
23085
|
-
slot: "reference",
|
|
23086
|
-
size: "medium",
|
|
23087
|
-
type: "primary"
|
|
23088
|
-
},
|
|
23089
|
-
on: {
|
|
23090
|
-
click: t.handleCopy
|
|
23091
|
-
},
|
|
23092
|
-
slot: "reference"
|
|
23093
|
-
}, [t._v(" 复制 ")])], 1)], 1)], 1), s("ElDrawer", {
|
|
23112
|
+
})], 1)], 1)], 1)], 1)], 1), s("ElDrawer", {
|
|
23094
23113
|
attrs: {
|
|
23095
23114
|
title: "预览",
|
|
23096
23115
|
visible: t.previewVisible,
|
|
@@ -23280,7 +23299,7 @@ const FyFormDesign_vue_vue_type_style_index_0_lang = "", __vue2_script$1a = {
|
|
|
23280
23299
|
steps: [await this.transAvueOptionsToFormDesigner({ ...this.widgetForm, ...options })],
|
|
23281
23300
|
storage: this.storage
|
|
23282
23301
|
}), this.undoRedo && window.addEventListener("keydown", (t) => {
|
|
23283
|
-
(t.metaKey && !t.shiftKey && t.keyCode
|
|
23302
|
+
(t.metaKey && !t.shiftKey && t.keyCode === 90 || t.ctrlKey && !t.shiftKey && t.keyCode === 90) && (this.widgetForm = this.handleUndo()), (t.metaKey && t.shiftKey && t.keyCode === 90 || t.ctrlKey && t.shiftKey && t.keyCode === 90 || t.ctrlKey && t.keyCode === 89) && (this.widgetForm = this.handleRedo());
|
|
23284
23303
|
}, !1);
|
|
23285
23304
|
},
|
|
23286
23305
|
// 加载icon
|
|
@@ -35654,7 +35673,7 @@ function __vue2_injectStyles(t) {
|
|
|
35654
35673
|
}
|
|
35655
35674
|
const Watermark = /* @__PURE__ */ function() {
|
|
35656
35675
|
return __component__.exports;
|
|
35657
|
-
}(), version = "2.7.
|
|
35676
|
+
}(), version = "2.7.9";
|
|
35658
35677
|
function index(t) {
|
|
35659
35678
|
t.component(AddressInput.name, AddressInput), t.component(Affix.name, Affix), t.component(AsideMenu.name, AsideMenu), t.component(Avatar.name, Avatar), t.component(AwesomeButton.name, AwesomeButton), t.component(CapsuleTab.name, CapsuleTab), t.component(Card.name, Card), t.component(Carousel.name, Carousel), t.component(Chat.name, Chat), t.component(ChunkFileUploader.name, ChunkFileUploader), t.component(ChunkFileUploaderButton.name, ChunkFileUploaderButton), t.component(ChunkFileUploaderDrop.name, ChunkFileUploaderDrop), t.component(ChunkFileUploaderFile.name, ChunkFileUploaderFile), t.component(ChunkFileUploaderFiles.name, ChunkFileUploaderFiles), t.component(ChunkFileUploaderList.name, ChunkFileUploaderList), t.component(ChunkFileUploaderUnSupport.name, ChunkFileUploaderUnSupport), t.component(CodeMirrorEditor.name, CodeMirrorEditor), t.component(ColorPicker.name, ColorPicker), t.component(Column.name, Column), t.component(ColumnDefault.name, ColumnDefault), t.component(ColumnDynamic.name, ColumnDynamic), t.component(ColumnMenu.name, ColumnMenu), t.component(ColumnSlot.name, ColumnSlot), t.component(Comment.name, Comment), t.component(Confirmable.name, Confirmable), t.component(ConfirmButton.name, ConfirmButton), t.component(ContextMenu.name, ContextMenu), t.component(CountUp.name, CountUp), t.component(CustomScrollbar.name, CustomScrollbar), t.component(DataBox.name, DataBox), t.component(DataCard.name, DataCard), t.component(DataCardtext.name, DataCardtext), t.component(DataDisplay.name, DataDisplay), t.component(DataIcons.name, DataIcons), t.component(DataImgtext.name, DataImgtext), t.component(DataOperatext.name, DataOperatext), t.component(DataPanel.name, DataPanel), t.component(DataPay.name, DataPay), t.component(DataPrice.name, DataPrice), t.component(DataProgress.name, DataProgress), t.component(DataRotate.name, DataRotate), t.component(DataTablePicker.name, DataTablePicker), t.component(DataTabs.name, DataTabs), t.component(DialogColumn.name, DialogColumn), t.component(DialogExcel.name, DialogExcel), t.component(DialogFilter.name, DialogFilter), t.component(DialogForm.name, DialogForm), t.component(DynamicTable.name, DynamicTable), t.component(ECharts.name, ECharts), t.component(EditableProgress.name, EditableProgress), t.component(EditableTree.name, EditableTree), t.component(EgdCollapse.name, EgdCollapse), t.component(EgdCollapseItem.name, EgdCollapseItem), t.component(ElementDialog.name, ElementDialog), t.component(EmptyView.name, EmptyView), t.component(ErrorView.name, ErrorView), t.component(FlexColumn.name, FlexColumn), t.component(FlexItem.name, FlexItem), t.component(FlexRow.name, FlexRow), t.component(FlexScroller.name, FlexScroller), t.component(Flow.name, Flow), t.component(FlowNode.name, FlowNode), t.component(FormButton.name, FormButton), t.component(FormCascader.name, FormCascader), t.component(FormCheckboxGroup.name, FormCheckboxGroup), t.component(FormDatePicker.name, FormDatePicker), t.component(FormGroup.name, FormGroup), t.component(FormHolder.name, FormHolder), t.component(FormInput.name, FormInput), t.component(FormInputEmail.name, FormInputEmail), t.component(FormInputIdCard.name, FormInputIdCard), t.component(FormInputNumber.name, FormInputNumber), t.component(FormInputPhoneNumber.name, FormInputPhoneNumber), t.component(FormInputTime.name, FormInputTime), t.component(FormItem.name, FormItem), t.component(FormItemConfigProvider.name, FormItemConfigProvider), t.component(FormItemGroup.name, FormItemGroup), t.component(FormRadioGroup.name, FormRadioGroup), t.component(FormSelect.name, FormSelect), t.component(FormSwitch.name, FormSwitch), t.component(FormTemp.name, FormTemp), t.component(FormTextarea.name, FormTextarea), t.component(FormView.name, FormView), t.component(FyArray.name, FyArray), t.component(FyArticle.name, FyArticle), t.component(FyCascader.name, FyCascader), t.component(FyCheckbox.name, FyCheckbox), t.component(FyCode.name, FyCode), t.component(FyCurd.name, FyCurd), t.component(FyDate.name, FyDate), t.component(FyDialogForm.name, FyDialogForm), t.component(FyDraggable.name, FyDraggable), t.component(FyDynamic.name, FyDynamic), t.component(FyEmpty.name, FyEmpty), t.component(FyForm.name, FyForm), t.component(FyFormDesign.name, FyFormDesign), t.component(FyFormMenu.name, FyFormMenu), t.component(FyInput.name, FyInput), t.component(FyInputColor.name, FyInputColor), t.component(FyInputIcon.name, FyInputIcon), t.component(FyInputMap.name, FyInputMap), t.component(FyInputNumber.name, FyInputNumber), t.component(FyInputTable.name, FyInputTable), t.component(FyInputTree.name, FyInputTree), t.component(FyProgress.name, FyProgress), t.component(FyRadio.name, FyRadio), t.component(FyRate.name, FyRate), t.component(FySelect.name, FySelect), t.component(FySlider.name, FySlider), t.component(FySwitch.name, FySwitch), t.component(FyTabs.name, FyTabs), t.component(FyTime.name, FyTime), t.component(FyTitle.name, FyTitle), t.component(FyTree.name, FyTree), t.component(FyUEditor.name, FyUEditor), t.component(FyUpload.name, FyUpload), t.component(GuideSteps.name, GuideSteps), t.component(HeaderMenu.name, HeaderMenu), t.component(HeaderSearch.name, HeaderSearch), t.component(IconCard.name, IconCard), t.component(IconTemp.name, IconTemp), t.component(IframeWindow.name, IframeWindow), t.component(ImageViewer.name, ImageViewer), t.component(InputNumber.name, InputNumber), t.component(InputNumberRange.name, InputNumberRange), t.component(JSXComponent.name, JSXComponent), t.component(KeepViewAlive.name, KeepViewAlive), t.component(Keyboard.name, Keyboard), t.component(License.name, License), t.component(LoadingView.name, LoadingView), t.component(Login.name, Login), t.component(NameAvatar.name, NameAvatar), t.component(NavBar.name, NavBar), t.component(Notice.name, Notice), t.component(NotImplement.name, NotImplement), t.component(Page.name, Page), t.component(PageableTable.name, PageableTable), t.component(PageableView.name, PageableView), t.component(PageHeader.name, PageHeader), t.component(PageIndex.name, PageIndex), t.component(PageIndexTop.name, PageIndexTop), t.component(PageSkeleton.name, PageSkeleton), t.component(PageSkeletonNew.name, PageSkeletonNew), t.component(PhotoSwipe.name, PhotoSwipe), t.component(Queue.name, Queue), t.component(RecordVideo.name, RecordVideo), t.component(ResizeObserver.name, ResizeObserver), t.component(Search.name, Search), t.component(SearchPopover.name, SearchPopover), t.component(Sign.name, Sign), t.component(SignPanel.name, SignPanel), t.component(Skeleton.name, Skeleton), t.component(SplitPane.name, SplitPane), t.component(Stateful.name, Stateful), t.component(StaticPageableTable.name, StaticPageableTable), t.component(Swiper.name, Swiper), t.component(Tab.name, Tab), t.component(TabItem.name, TabItem), t.component(TableColumn.name, TableColumn), t.component(TablePage.name, TablePage), t.component(TableView.name, TableView), t.component(TagRender.name, TagRender), t.component(TextEllipsis.name, TextEllipsis), t.component(TinymceEditor.name, TinymceEditor), t.component(TinymceWrapper.name, TinymceWrapper), t.component(Toolbar.name, Toolbar), t.component(ToolbarButton.name, ToolbarButton), t.component(Trigger.name, Trigger), t.component(Verify.name, Verify), t.component(VueTagsInput.name, VueTagsInput), t.component(Watermark.name, Watermark);
|
|
35660
35679
|
}
|
package/package.json
CHANGED