asiaint-lowcode 3.1.66 → 3.1.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -31
- package/dist/asiaint-lowcode.js +1 -1
- package/dist/asiaint-lowcode.umd.cjs +23 -23
- package/dist/lazy/{Card-DIqiWLav.js → Card-1LRb9cxy.js} +2 -2
- package/dist/lazy/{Cascader-Djt4qKa-.js → Cascader-Hc82QRlm.js} +1 -1
- package/dist/lazy/{Checkbox-CgyrYL0o.js → Checkbox-M-jhT3N1.js} +2 -2
- package/dist/lazy/{Collapse-BodMMbdX.js → Collapse-C7tEg1j-.js} +1 -1
- package/dist/lazy/{Component-B-vgwLrf.js → Component-B4W8-ytw.js} +19 -19
- package/dist/lazy/{Component-CXf3Zsaj.js → Component-CMNqst14.js} +2 -2
- package/dist/lazy/{Component-Tn-QCgTA.js → Component-COzAVkzz.js} +1 -1
- package/dist/lazy/{Component-Dx8J9S6O.js → Component-CTOFM8CV.js} +1 -1
- package/dist/lazy/{Component-F_Rqy26D.js → Component-CsPZQWoo.js} +2 -2
- package/dist/lazy/{Component-CmLcfPxj.js → Component-DBg99hlT.js} +2 -2
- package/dist/lazy/{CurdCard-Bwebjf-L.js → CurdCard-BrWJUvcs.js} +9 -9
- package/dist/lazy/Custom-DSO2q6bS.js +26 -0
- package/dist/lazy/{DatePicker-DNyq1I8L.js → DatePicker-VsFok0BM.js} +1 -1
- package/dist/lazy/{DragList-Cr8aKyLj.js → DragList-DG33jgkE.js} +13 -13
- package/dist/lazy/{FilterSearch-CzlYRqFn.js → FilterSearch-PSvvnq5L.js} +8 -8
- package/dist/lazy/{FloatCurd-CDuKtXDs.js → FloatCurd-BmLMaa6y.js} +9 -9
- package/dist/lazy/{FormList-SXmMTMHy.js → FormList-Ba7DPhTO.js} +1 -1
- package/dist/lazy/{Grid-BmWTvO9w.js → Grid-BAtB3KUm.js} +1 -1
- package/dist/lazy/{InfiniteScroll-B4WLYcvu.js → InfiniteScroll-BQPKbiOw.js} +4 -4
- package/dist/lazy/{Inline-DCAf7P_Z.js → Inline-BxMi0vVv.js} +3 -3
- package/dist/lazy/{JsonEdit-sL8Fcnnu.js → JsonEdit-RvpkznKI.js} +3 -3
- package/dist/lazy/{LogList-BMNPG5uS.js → LogList-CpT-0HH4.js} +7 -7
- package/dist/lazy/{ObjGroup-DhNuL3CJ.js → ObjGroup-ChEPmWju.js} +1 -1
- package/dist/lazy/{OfferDetails-DKOKo4ra.js → OfferDetails-CTyVBQ9q.js} +2 -2
- package/dist/lazy/{Pagination-D-HVKOv0.js → Pagination-CLVNlN_G.js} +4 -4
- package/dist/lazy/{Progress-CKbPmhjm.js → Progress-CeK1Wxfz.js} +15 -15
- package/dist/lazy/{Radio-CGqaYj4m.js → Radio-D3Frpudo.js} +3 -3
- package/dist/lazy/{SearchSelect-pvL6L8gR.js → SearchSelect-Ck5rXCHi.js} +6 -6
- package/dist/lazy/{Select-xExV0wPP.js → Select-BcLHxyke.js} +2 -2
- package/dist/lazy/{Table-53tr_vIc.js → Table-DXB2Aihi.js} +43 -43
- package/dist/lazy/{Tabs-DVQZiNCL.js → Tabs-KcE9xDjh.js} +11 -11
- package/dist/lazy/{TextArea-tvurhtMs.js → TextArea-BbflBxSb.js} +2 -2
- package/dist/lazy/{Wrapper-jsXJEh2B.js → Wrapper-BxwoBeta.js} +2 -2
- package/dist/lazy/{index-BUDQb8BO.js → index-CShYNljc.js} +74 -65
- package/dist/lazy/{useSelect-CPWFl9Un.js → useSelect-5CLgyy83.js} +1 -1
- package/dist/style.css +2 -2
- package/global.d.ts +10 -10
- package/package.json +36 -36
- package/dist/lazy/Custom-Cg7AQT80.js +0 -26
|
@@ -17376,10 +17376,14 @@ const ZF = {
|
|
|
17376
17376
|
props: {
|
|
17377
17377
|
name: {},
|
|
17378
17378
|
color: {},
|
|
17379
|
-
size: { default: "small" }
|
|
17379
|
+
size: { default: "small" },
|
|
17380
|
+
customStyle: { type: [Boolean, null, String, Object, Array], default: () => ({}) }
|
|
17380
17381
|
},
|
|
17381
17382
|
setup(t) {
|
|
17382
|
-
const A = t, e = TA(() =>
|
|
17383
|
+
const A = t, e = TA(() => {
|
|
17384
|
+
if (!(!A.color && !A.customStyle))
|
|
17385
|
+
return { color: A.color, ...A.customStyle };
|
|
17386
|
+
});
|
|
17383
17387
|
return (n, i) => (R(), Z("svg", {
|
|
17384
17388
|
class: PA(["icon", {
|
|
17385
17389
|
large: n.size === "large",
|
|
@@ -17396,7 +17400,7 @@ const ZF = {
|
|
|
17396
17400
|
}, null, 8, jF)
|
|
17397
17401
|
], 6));
|
|
17398
17402
|
}
|
|
17399
|
-
}), Ge = /* @__PURE__ */ vA($F, [["__scopeId", "data-v-
|
|
17403
|
+
}), Ge = /* @__PURE__ */ vA($F, [["__scopeId", "data-v-9ee5151a"]]), WF = /* @__PURE__ */ jA({
|
|
17400
17404
|
__name: "Popover",
|
|
17401
17405
|
props: {
|
|
17402
17406
|
title: {},
|
|
@@ -17494,7 +17498,7 @@ onClick: ${i.beforeEnter}`);
|
|
|
17494
17498
|
}, 8, ["trigger", "width", "offset", "popper-class", "title", "placement"]);
|
|
17495
17499
|
};
|
|
17496
17500
|
}
|
|
17497
|
-
}), hp = /* @__PURE__ */ vA(WF, [["__scopeId", "data-v-
|
|
17501
|
+
}), hp = /* @__PURE__ */ vA(WF, [["__scopeId", "data-v-75368fdb"]]), dc = /* @__PURE__ */ jA({
|
|
17498
17502
|
__name: "FormItem",
|
|
17499
17503
|
props: {
|
|
17500
17504
|
label: {},
|
|
@@ -21751,7 +21755,8 @@ onClick: ${c.onClick}`);
|
|
|
21751
21755
|
loading: n.value[d.key],
|
|
21752
21756
|
size: d.size,
|
|
21753
21757
|
style: Ne(d.style),
|
|
21754
|
-
class: PA({ orangeBtn: d.orange, "is-icon": d.icon && !d.text && !d.label })
|
|
21758
|
+
class: PA({ orangeBtn: d.orange, "is-icon": d.icon && !d.text && !d.label }),
|
|
21759
|
+
id: d.key
|
|
21755
21760
|
}, {
|
|
21756
21761
|
default: CA(() => {
|
|
21757
21762
|
var m, b;
|
|
@@ -21783,12 +21788,12 @@ onClick: ${c.onClick}`);
|
|
|
21783
21788
|
];
|
|
21784
21789
|
}),
|
|
21785
21790
|
_: 2
|
|
21786
|
-
}, 1032, ["onClick", "disabled", "type", "text", "link", "plain", "color", "loading", "size", "style", "class"]))
|
|
21791
|
+
}, 1032, ["onClick", "disabled", "type", "text", "link", "plain", "color", "loading", "size", "style", "class", "id"]))
|
|
21787
21792
|
], 64))), 128))
|
|
21788
21793
|
])) : yA("", !0);
|
|
21789
21794
|
};
|
|
21790
21795
|
}
|
|
21791
|
-
}), ya = /* @__PURE__ */ vA(gG, [["__scopeId", "data-v-
|
|
21796
|
+
}), ya = /* @__PURE__ */ vA(gG, [["__scopeId", "data-v-ece60043"]]), BG = {
|
|
21792
21797
|
key: 0,
|
|
21793
21798
|
class: "dropdown-render-wrapper"
|
|
21794
21799
|
}, QG = /* @__PURE__ */ jA({
|
|
@@ -21863,7 +21868,7 @@ onClick: ${s.onClick}`);
|
|
|
21863
21868
|
])) : yA("", !0);
|
|
21864
21869
|
};
|
|
21865
21870
|
}
|
|
21866
|
-
}), cG = /* @__PURE__ */ vA(QG, [["__scopeId", "data-v-
|
|
21871
|
+
}), cG = /* @__PURE__ */ vA(QG, [["__scopeId", "data-v-b9eeb69a"]]), lG = ["title"], EG = { class: "suffix-slots" }, CG = /* @__PURE__ */ jA({
|
|
21867
21872
|
__name: "Input",
|
|
21868
21873
|
props: /* @__PURE__ */ vt({
|
|
21869
21874
|
onChange: {},
|
|
@@ -21954,7 +21959,7 @@ onClick: ${B.onClick}`);
|
|
|
21954
21959
|
]), 1040, ["class", "style", "modelValue"]));
|
|
21955
21960
|
};
|
|
21956
21961
|
}
|
|
21957
|
-
}), uG = /* @__PURE__ */ vA(CG, [["__scopeId", "data-v-
|
|
21962
|
+
}), uG = /* @__PURE__ */ vA(CG, [["__scopeId", "data-v-90f886ad"]]), IG = {
|
|
21958
21963
|
title: "单行文本",
|
|
21959
21964
|
component: "Input",
|
|
21960
21965
|
icon: OA(RA, { name: "input" }),
|
|
@@ -22025,7 +22030,7 @@ onClick: ${B.onClick}`);
|
|
|
22025
22030
|
type: "basic",
|
|
22026
22031
|
order: 2,
|
|
22027
22032
|
attrSchema: pG,
|
|
22028
|
-
render: pe(() => import("./TextArea-
|
|
22033
|
+
render: pe(() => import("./TextArea-BbflBxSb.js"))
|
|
22029
22034
|
}, wG = {
|
|
22030
22035
|
size: "small",
|
|
22031
22036
|
labelPosition: "top",
|
|
@@ -22143,7 +22148,7 @@ onClick: ${B.onClick}`);
|
|
|
22143
22148
|
}, 16, ["type", "closable"])) : yA("", !0);
|
|
22144
22149
|
};
|
|
22145
22150
|
}
|
|
22146
|
-
}), fG = /* @__PURE__ */ vA(DG, [["__scopeId", "data-v-
|
|
22151
|
+
}), fG = /* @__PURE__ */ vA(DG, [["__scopeId", "data-v-5ca945a3"]]), bG = {
|
|
22147
22152
|
title: "提示框",
|
|
22148
22153
|
component: "Alert",
|
|
22149
22154
|
icon: OA(RA, { name: "alert" }),
|
|
@@ -22154,7 +22159,7 @@ onClick: ${B.onClick}`);
|
|
|
22154
22159
|
}, yG = {
|
|
22155
22160
|
title: "卡片",
|
|
22156
22161
|
component: "Card",
|
|
22157
|
-
render: pe(() => import("./Card-
|
|
22162
|
+
render: pe(() => import("./Card-1LRb9cxy.js")),
|
|
22158
22163
|
icon: OA(RA, { name: "card" }),
|
|
22159
22164
|
type: "layout",
|
|
22160
22165
|
order: 1,
|
|
@@ -22387,7 +22392,7 @@ onClick: ${B.onClick}`);
|
|
|
22387
22392
|
component: "Cascader",
|
|
22388
22393
|
attrSchema: vG,
|
|
22389
22394
|
order: 7,
|
|
22390
|
-
render: pe(() => import("./Cascader-
|
|
22395
|
+
render: pe(() => import("./Cascader-Hc82QRlm.js"))
|
|
22391
22396
|
}, MG = {
|
|
22392
22397
|
size: "small",
|
|
22393
22398
|
labelPosition: "top",
|
|
@@ -22431,7 +22436,7 @@ onClick: ${B.onClick}`);
|
|
|
22431
22436
|
type: "basic",
|
|
22432
22437
|
order: 14,
|
|
22433
22438
|
attrSchema: MG,
|
|
22434
|
-
render: pe(() => import("./JsonEdit-
|
|
22439
|
+
render: pe(() => import("./JsonEdit-RvpkznKI.js"))
|
|
22435
22440
|
}, FG = {
|
|
22436
22441
|
size: "small",
|
|
22437
22442
|
labelPosition: "top",
|
|
@@ -22531,7 +22536,7 @@ onClick: ${B.onClick}`);
|
|
|
22531
22536
|
icon: OA(RA, { name: "checkbox" }),
|
|
22532
22537
|
type: "basic",
|
|
22533
22538
|
component: "Checkbox",
|
|
22534
|
-
render: pe(() => import("./Checkbox-
|
|
22539
|
+
render: pe(() => import("./Checkbox-M-jhT3N1.js")),
|
|
22535
22540
|
order: 4,
|
|
22536
22541
|
attrSchema: FG
|
|
22537
22542
|
}, GG = {
|
|
@@ -22678,7 +22683,7 @@ onClick: ${B.onClick}`);
|
|
|
22678
22683
|
}, PG = {
|
|
22679
22684
|
title: "自定义组件",
|
|
22680
22685
|
component: "Custom",
|
|
22681
|
-
render: pe(() => import("./Custom-
|
|
22686
|
+
render: pe(() => import("./Custom-DSO2q6bS.js")),
|
|
22682
22687
|
icon: OA(RA, { name: "custom" }),
|
|
22683
22688
|
type: "high",
|
|
22684
22689
|
order: 99,
|
|
@@ -22744,7 +22749,7 @@ onClick: ${B.onClick}`);
|
|
|
22744
22749
|
}, KG = {
|
|
22745
22750
|
title: "日期选择器",
|
|
22746
22751
|
component: "DatePicker",
|
|
22747
|
-
render: pe(() => import("./DatePicker-
|
|
22752
|
+
render: pe(() => import("./DatePicker-VsFok0BM.js")),
|
|
22748
22753
|
icon: OA(RA, { name: "datePicker" }),
|
|
22749
22754
|
type: "basic",
|
|
22750
22755
|
order: 9,
|
|
@@ -22869,7 +22874,7 @@ onClick: ${B.onClick}`);
|
|
|
22869
22874
|
}, OG = {
|
|
22870
22875
|
title: "电子签名",
|
|
22871
22876
|
component: "Esign",
|
|
22872
|
-
render: pe(() => import("./Component-
|
|
22877
|
+
render: pe(() => import("./Component-CMNqst14.js")),
|
|
22873
22878
|
icon: OA(RA, { name: "esign" }),
|
|
22874
22879
|
type: "basic",
|
|
22875
22880
|
order: 11,
|
|
@@ -22971,7 +22976,7 @@ onClick: ${B.onClick}`);
|
|
|
22971
22976
|
icon: OA(RA, { name: "radio" }),
|
|
22972
22977
|
type: "basic",
|
|
22973
22978
|
component: "Radio",
|
|
22974
|
-
render: pe(() => import("./Radio-
|
|
22979
|
+
render: pe(() => import("./Radio-D3Frpudo.js")),
|
|
22975
22980
|
order: 3.5,
|
|
22976
22981
|
attrSchema: zG
|
|
22977
22982
|
}, ZG = {
|
|
@@ -23060,7 +23065,7 @@ onClick: ${B.onClick}`);
|
|
|
23060
23065
|
}, qG = {
|
|
23061
23066
|
title: "自增容器",
|
|
23062
23067
|
component: "FormList",
|
|
23063
|
-
render: pe(() => import("./FormList-
|
|
23068
|
+
render: pe(() => import("./FormList-Ba7DPhTO.js")),
|
|
23064
23069
|
icon: OA(RA, { name: "formList" }),
|
|
23065
23070
|
type: "high",
|
|
23066
23071
|
order: 20,
|
|
@@ -23070,7 +23075,7 @@ onClick: ${B.onClick}`);
|
|
|
23070
23075
|
type: "layout",
|
|
23071
23076
|
icon: OA(RA, { name: "grid" }),
|
|
23072
23077
|
component: "Grid",
|
|
23073
|
-
render: pe(() => import("./Grid-
|
|
23078
|
+
render: pe(() => import("./Grid-BAtB3KUm.js")),
|
|
23074
23079
|
order: 3,
|
|
23075
23080
|
lbTitle: !0,
|
|
23076
23081
|
attrSchema: {
|
|
@@ -23112,7 +23117,7 @@ onClick: ${B.onClick}`);
|
|
|
23112
23117
|
icon: OA(RA, { name: "inline" }),
|
|
23113
23118
|
type: "layout",
|
|
23114
23119
|
component: "Inline",
|
|
23115
|
-
render: pe(() => import("./Inline-
|
|
23120
|
+
render: pe(() => import("./Inline-BxMi0vVv.js")),
|
|
23116
23121
|
order: 2,
|
|
23117
23122
|
lbTitle: !0,
|
|
23118
23123
|
attrSchema: {
|
|
@@ -23231,7 +23236,7 @@ onClick: ${B.onClick}`);
|
|
|
23231
23236
|
type: "basic",
|
|
23232
23237
|
order: 5,
|
|
23233
23238
|
component: "InputNumber",
|
|
23234
|
-
render: pe(() => import("./Component-
|
|
23239
|
+
render: pe(() => import("./Component-COzAVkzz.js")),
|
|
23235
23240
|
attrSchema: WG
|
|
23236
23241
|
}, XG = {
|
|
23237
23242
|
size: "small",
|
|
@@ -23459,7 +23464,7 @@ onClick: ${B.onClick}`);
|
|
|
23459
23464
|
type: "basic",
|
|
23460
23465
|
icon: OA(RA, { name: "select" }),
|
|
23461
23466
|
component: "Select",
|
|
23462
|
-
render: pe(() => import("./Select-
|
|
23467
|
+
render: pe(() => import("./Select-BcLHxyke.js")),
|
|
23463
23468
|
order: 3,
|
|
23464
23469
|
attrSchema: n3
|
|
23465
23470
|
}, i3 = {
|
|
@@ -23802,7 +23807,7 @@ onClick: ${B.onClick}`);
|
|
|
23802
23807
|
]
|
|
23803
23808
|
}, Q3 = {
|
|
23804
23809
|
title: "开关",
|
|
23805
|
-
render: pe(() => import("./Component-
|
|
23810
|
+
render: pe(() => import("./Component-CTOFM8CV.js")),
|
|
23806
23811
|
component: "Switch",
|
|
23807
23812
|
icon: OA(RA, { name: "switch" }),
|
|
23808
23813
|
type: "basic",
|
|
@@ -23979,7 +23984,7 @@ onClick: ${B.onClick}`);
|
|
|
23979
23984
|
}, I3 = {
|
|
23980
23985
|
title: "上传",
|
|
23981
23986
|
component: "Upload",
|
|
23982
|
-
render: pe(() => import("./Component-
|
|
23987
|
+
render: pe(() => import("./Component-CsPZQWoo.js")),
|
|
23983
23988
|
icon: OA(RA, { name: "upload" }),
|
|
23984
23989
|
type: "basic",
|
|
23985
23990
|
order: 10,
|
|
@@ -24015,7 +24020,7 @@ onClick: ${B.onClick}`);
|
|
|
24015
24020
|
}, d3 = {
|
|
24016
24021
|
title: "图形验证码",
|
|
24017
24022
|
component: "VerifyCode",
|
|
24018
|
-
render: pe(() => import("./Component-
|
|
24023
|
+
render: pe(() => import("./Component-DBg99hlT.js")),
|
|
24019
24024
|
icon: OA(RA, { name: "verifyCode" }),
|
|
24020
24025
|
type: "high",
|
|
24021
24026
|
order: 18,
|
|
@@ -24023,7 +24028,7 @@ onClick: ${B.onClick}`);
|
|
|
24023
24028
|
}, w3 = {
|
|
24024
24029
|
title: "折叠面板",
|
|
24025
24030
|
component: "Collapse",
|
|
24026
|
-
render: pe(() => import("./Collapse-
|
|
24031
|
+
render: pe(() => import("./Collapse-C7tEg1j-.js")),
|
|
24027
24032
|
icon: OA(RA, { name: "collapse" }),
|
|
24028
24033
|
type: "layout",
|
|
24029
24034
|
order: 4,
|
|
@@ -24078,7 +24083,7 @@ onClick: ${B.onClick}`);
|
|
|
24078
24083
|
}, h3 = {
|
|
24079
24084
|
title: "选项卡",
|
|
24080
24085
|
component: "Tabs",
|
|
24081
|
-
render: pe(() => import("./Tabs-
|
|
24086
|
+
render: pe(() => import("./Tabs-KcE9xDjh.js")),
|
|
24082
24087
|
icon: OA(RA, { name: "tabs" }),
|
|
24083
24088
|
type: "layout",
|
|
24084
24089
|
order: 4,
|
|
@@ -24194,7 +24199,7 @@ onClick: ${B.onClick}`);
|
|
|
24194
24199
|
icon: OA(RA, { name: "itemGroup" }),
|
|
24195
24200
|
type: "high",
|
|
24196
24201
|
component: "ObjGroup",
|
|
24197
|
-
render: pe(() => import("./ObjGroup-
|
|
24202
|
+
render: pe(() => import("./ObjGroup-ChEPmWju.js")),
|
|
24198
24203
|
order: 2,
|
|
24199
24204
|
lbTitle: !0,
|
|
24200
24205
|
attrSchema: {
|
|
@@ -24590,7 +24595,7 @@ onClear: ${e.onClear}`);
|
|
|
24590
24595
|
]), 1040, ["modelValue", "disabled", "readonly", "class", "style"]));
|
|
24591
24596
|
};
|
|
24592
24597
|
}
|
|
24593
|
-
}), G3 = /* @__PURE__ */ vA(N3, [["__scopeId", "data-v-
|
|
24598
|
+
}), G3 = /* @__PURE__ */ vA(N3, [["__scopeId", "data-v-06c50436"]]), L3 = {
|
|
24594
24599
|
title: "搜索输入",
|
|
24595
24600
|
component: "SearchInput",
|
|
24596
24601
|
icon: OA(RA, { name: "search" }),
|
|
@@ -24676,7 +24681,7 @@ onClear: ${e.onClear}`);
|
|
|
24676
24681
|
type: "high",
|
|
24677
24682
|
icon: OA(RA, { name: "searchSelect" }),
|
|
24678
24683
|
component: "SearchSelect",
|
|
24679
|
-
render: pe(() => import("./SearchSelect-
|
|
24684
|
+
render: pe(() => import("./SearchSelect-Ck5rXCHi.js")),
|
|
24680
24685
|
order: 3,
|
|
24681
24686
|
attrSchema: R3
|
|
24682
24687
|
}, H3 = {
|
|
@@ -24726,7 +24731,8 @@ onClear: ${e.onClear}`);
|
|
|
24726
24731
|
icon: {},
|
|
24727
24732
|
suffixIcon: {},
|
|
24728
24733
|
style: {},
|
|
24729
|
-
isPlainBtn: { type: Boolean }
|
|
24734
|
+
isPlainBtn: { type: Boolean },
|
|
24735
|
+
name: {}
|
|
24730
24736
|
},
|
|
24731
24737
|
setup(t) {
|
|
24732
24738
|
const A = t, e = ae("ruleModule", void 0), n = ae("pageMethodMap", {}), i = XA(!1), s = async () => {
|
|
@@ -24759,7 +24765,8 @@ onClick: ${A.onClick}`);
|
|
|
24759
24765
|
plain: c.isPlainBtn || !c.orange && c.$attrs.type !== "primary",
|
|
24760
24766
|
loading: i.value,
|
|
24761
24767
|
style: c.style,
|
|
24762
|
-
disabled: c.disabled
|
|
24768
|
+
disabled: c.disabled,
|
|
24769
|
+
id: c.name
|
|
24763
24770
|
}), {
|
|
24764
24771
|
default: CA(() => [
|
|
24765
24772
|
c.icon ? (R(), hA(Ge, {
|
|
@@ -24777,13 +24784,13 @@ onClick: ${A.onClick}`);
|
|
|
24777
24784
|
}, null, 8, ["name", "color", "class"])) : yA("", !0)
|
|
24778
24785
|
]),
|
|
24779
24786
|
_: 1
|
|
24780
|
-
}, 16, ["color", "class", "plain", "loading", "style", "disabled"]))
|
|
24787
|
+
}, 16, ["color", "class", "plain", "loading", "style", "disabled", "id"]))
|
|
24781
24788
|
]),
|
|
24782
24789
|
_: 1
|
|
24783
24790
|
}, 8, ["disabled", "content"]);
|
|
24784
24791
|
};
|
|
24785
24792
|
}
|
|
24786
|
-
}), S3 = /* @__PURE__ */ vA(P3, [["__scopeId", "data-v-
|
|
24793
|
+
}), S3 = /* @__PURE__ */ vA(P3, [["__scopeId", "data-v-b090099a"]]), K3 = {
|
|
24787
24794
|
title: "按钮",
|
|
24788
24795
|
component: "Button",
|
|
24789
24796
|
icon: OA(RA, { name: "button" }),
|
|
@@ -24878,7 +24885,7 @@ onClick: ${A.onClick}`);
|
|
|
24878
24885
|
}, Y3 = {
|
|
24879
24886
|
title: "树",
|
|
24880
24887
|
component: "Tree",
|
|
24881
|
-
render: pe(() => import("./Component-
|
|
24888
|
+
render: pe(() => import("./Component-B4W8-ytw.js")),
|
|
24882
24889
|
icon: OA(RA, { name: "tree" }),
|
|
24883
24890
|
type: "assist",
|
|
24884
24891
|
order: 7,
|
|
@@ -24939,11 +24946,11 @@ onClick: ${A.onClick}`);
|
|
|
24939
24946
|
type: "assist",
|
|
24940
24947
|
order: 8,
|
|
24941
24948
|
attrSchema: J3,
|
|
24942
|
-
render: pe(() => import("./Table-
|
|
24949
|
+
render: pe(() => import("./Table-DXB2Aihi.js"))
|
|
24943
24950
|
}, z3 = {
|
|
24944
24951
|
title: "curd模版卡片",
|
|
24945
24952
|
component: "CurdCard",
|
|
24946
|
-
render: pe(() => import("./CurdCard-
|
|
24953
|
+
render: pe(() => import("./CurdCard-BrWJUvcs.js")),
|
|
24947
24954
|
icon: OA(RA, { name: "card" }),
|
|
24948
24955
|
type: "layout",
|
|
24949
24956
|
order: 6,
|
|
@@ -24973,7 +24980,7 @@ onClick: ${A.onClick}`);
|
|
|
24973
24980
|
}, T3 = {
|
|
24974
24981
|
title: "普通div容器",
|
|
24975
24982
|
component: "Wrapper",
|
|
24976
|
-
render: pe(() => import("./Wrapper-
|
|
24983
|
+
render: pe(() => import("./Wrapper-BxwoBeta.js")),
|
|
24977
24984
|
icon: OA(RA, { name: "card" }),
|
|
24978
24985
|
type: "layout",
|
|
24979
24986
|
order: 7,
|
|
@@ -25131,7 +25138,7 @@ onClick: ${A.onClick}`);
|
|
|
25131
25138
|
]);
|
|
25132
25139
|
};
|
|
25133
25140
|
}
|
|
25134
|
-
}), cL = /* @__PURE__ */ vA(QL, [["__scopeId", "data-v-
|
|
25141
|
+
}), cL = /* @__PURE__ */ vA(QL, [["__scopeId", "data-v-1660dba4"]]), lL = {
|
|
25135
25142
|
key: 0,
|
|
25136
25143
|
class: "empty-content"
|
|
25137
25144
|
}, EL = /* @__PURE__ */ jA({
|
|
@@ -25272,7 +25279,7 @@ onClick: ${A.onClick}`);
|
|
|
25272
25279
|
])) : yA("", !0)
|
|
25273
25280
|
]));
|
|
25274
25281
|
}
|
|
25275
|
-
}), Hp = /* @__PURE__ */ vA(EL, [["__scopeId", "data-v-
|
|
25282
|
+
}), Hp = /* @__PURE__ */ vA(EL, [["__scopeId", "data-v-6d1252c0"]]), CL = {
|
|
25276
25283
|
title: "卡片列表",
|
|
25277
25284
|
component: "CardList",
|
|
25278
25285
|
render: Hp,
|
|
@@ -25287,7 +25294,7 @@ onClick: ${A.onClick}`);
|
|
|
25287
25294
|
}, uL = {
|
|
25288
25295
|
title: "定制化组件(OfferDetails)",
|
|
25289
25296
|
component: "OfferDetails",
|
|
25290
|
-
render: pe(() => import("./OfferDetails-
|
|
25297
|
+
render: pe(() => import("./OfferDetails-CTyVBQ9q.js")),
|
|
25291
25298
|
icon: OA(RA, { name: "card" }),
|
|
25292
25299
|
type: "assist",
|
|
25293
25300
|
order: 1,
|
|
@@ -25299,7 +25306,7 @@ onClick: ${A.onClick}`);
|
|
|
25299
25306
|
}, IL = {
|
|
25300
25307
|
title: "定制化组件(Progress)",
|
|
25301
25308
|
component: "Progress",
|
|
25302
|
-
render: pe(() => import("./Progress-
|
|
25309
|
+
render: pe(() => import("./Progress-CeK1Wxfz.js")),
|
|
25303
25310
|
icon: OA(RA, { name: "card" }),
|
|
25304
25311
|
type: "assist",
|
|
25305
25312
|
order: 1,
|
|
@@ -25311,7 +25318,7 @@ onClick: ${A.onClick}`);
|
|
|
25311
25318
|
}, pL = {
|
|
25312
25319
|
title: "日志列表",
|
|
25313
25320
|
component: "LogList",
|
|
25314
|
-
render: pe(() => import("./LogList-
|
|
25321
|
+
render: pe(() => import("./LogList-CpT-0HH4.js")),
|
|
25315
25322
|
icon: OA(RA, { name: "card" }),
|
|
25316
25323
|
type: "assist",
|
|
25317
25324
|
order: 12,
|
|
@@ -25325,7 +25332,7 @@ onClick: ${A.onClick}`);
|
|
|
25325
25332
|
icon: OA(RA, { name: "inline" }),
|
|
25326
25333
|
type: "layout",
|
|
25327
25334
|
component: "DragList",
|
|
25328
|
-
render: pe(() => import("./DragList-
|
|
25335
|
+
render: pe(() => import("./DragList-DG33jgkE.js")),
|
|
25329
25336
|
order: 9,
|
|
25330
25337
|
lbTitle: !0,
|
|
25331
25338
|
attrSchema: {
|
|
@@ -25422,7 +25429,7 @@ onClick: ${A.onClick}`);
|
|
|
25422
25429
|
icon: OA(RA, { name: "library" }),
|
|
25423
25430
|
type: "assist",
|
|
25424
25431
|
order: 10,
|
|
25425
|
-
render: pe(() => import("./Pagination-
|
|
25432
|
+
render: pe(() => import("./Pagination-CLVNlN_G.js"))
|
|
25426
25433
|
}, bL = /* @__PURE__ */ jA({
|
|
25427
25434
|
__name: "Menu",
|
|
25428
25435
|
props: {
|
|
@@ -25482,7 +25489,7 @@ onClick: ${A.onClick}`);
|
|
|
25482
25489
|
}, 8, ["mode", "default-active"])) : yA("", !0);
|
|
25483
25490
|
};
|
|
25484
25491
|
}
|
|
25485
|
-
}), yL = /* @__PURE__ */ vA(bL, [["__scopeId", "data-v-
|
|
25492
|
+
}), yL = /* @__PURE__ */ vA(bL, [["__scopeId", "data-v-388fb909"]]), vL = {
|
|
25486
25493
|
title: "Menu",
|
|
25487
25494
|
component: "Menu",
|
|
25488
25495
|
icon: OA(RA, { name: "button" }),
|
|
@@ -25492,14 +25499,14 @@ onClick: ${A.onClick}`);
|
|
|
25492
25499
|
}, _L = {
|
|
25493
25500
|
title: "筛选搜索",
|
|
25494
25501
|
component: "FilterSearch",
|
|
25495
|
-
render: pe(() => import("./FilterSearch-
|
|
25502
|
+
render: pe(() => import("./FilterSearch-PSvvnq5L.js")),
|
|
25496
25503
|
icon: OA(RA, { name: "card" }),
|
|
25497
25504
|
type: "layout",
|
|
25498
25505
|
order: 10
|
|
25499
25506
|
}, ML = {
|
|
25500
25507
|
title: "无限滚动",
|
|
25501
25508
|
component: "InfiniteScroll",
|
|
25502
|
-
render: pe(() => import("./InfiniteScroll-
|
|
25509
|
+
render: pe(() => import("./InfiniteScroll-BQPKbiOw.js")),
|
|
25503
25510
|
icon: OA(RA, { name: "card" }),
|
|
25504
25511
|
type: "layout",
|
|
25505
25512
|
order: 10,
|
|
@@ -25556,7 +25563,7 @@ onClick: ${A.onClick}`);
|
|
|
25556
25563
|
], 4);
|
|
25557
25564
|
};
|
|
25558
25565
|
}
|
|
25559
|
-
}), GL = /* @__PURE__ */ vA(NL, [["__scopeId", "data-v-
|
|
25566
|
+
}), GL = /* @__PURE__ */ vA(NL, [["__scopeId", "data-v-2257060b"]]), LL = {
|
|
25560
25567
|
title: "进度条",
|
|
25561
25568
|
component: "NormalProgress",
|
|
25562
25569
|
render: GL,
|
|
@@ -25572,7 +25579,8 @@ onClick: ${A.onClick}`);
|
|
|
25572
25579
|
size: {},
|
|
25573
25580
|
onClick: {},
|
|
25574
25581
|
params: {},
|
|
25575
|
-
title: {}
|
|
25582
|
+
title: {},
|
|
25583
|
+
style: { type: [Boolean, null, String, Object, Array] }
|
|
25576
25584
|
},
|
|
25577
25585
|
setup(t) {
|
|
25578
25586
|
const A = t, e = ae("ruleModule", void 0), n = ae("pageMethodMap", {}), i = XA({}), s = async () => {
|
|
@@ -25601,14 +25609,15 @@ onClick: ${A.onClick}`);
|
|
|
25601
25609
|
color: c.color,
|
|
25602
25610
|
size: c.size,
|
|
25603
25611
|
class: PA({ "icon-in-form": !0, "cursor-pointer": A.onClick }),
|
|
25604
|
-
onClick: s
|
|
25605
|
-
|
|
25612
|
+
onClick: s,
|
|
25613
|
+
customStyle: c.style
|
|
25614
|
+
}, null, 8, ["name", "color", "size", "class", "customStyle"])
|
|
25606
25615
|
]),
|
|
25607
25616
|
_: 1
|
|
25608
25617
|
}, 8, ["content", "disabled"]);
|
|
25609
25618
|
};
|
|
25610
25619
|
}
|
|
25611
|
-
}), xL = /* @__PURE__ */ vA(RL, [["__scopeId", "data-v-
|
|
25620
|
+
}), xL = /* @__PURE__ */ vA(RL, [["__scopeId", "data-v-981331fe"]]), HL = {
|
|
25612
25621
|
title: "字体图标",
|
|
25613
25622
|
component: "IconInForm",
|
|
25614
25623
|
icon: OA(RA, { name: "icon" }),
|
|
@@ -25618,7 +25627,7 @@ onClick: ${A.onClick}`);
|
|
|
25618
25627
|
}, PL = {
|
|
25619
25628
|
title: "浮动查询模版",
|
|
25620
25629
|
component: "FloatCurd",
|
|
25621
|
-
render: pe(() => import("./FloatCurd-
|
|
25630
|
+
render: pe(() => import("./FloatCurd-BmLMaa6y.js")),
|
|
25622
25631
|
icon: OA(RA, { name: "card" }),
|
|
25623
25632
|
type: "layout",
|
|
25624
25633
|
order: 12
|
|
@@ -26500,7 +26509,7 @@ export default ${JSON.stringify(t, null, 2)} satisfies FormSchema`, WL = (t) =>
|
|
|
26500
26509
|
}, 8, ["modelValue", "title"]);
|
|
26501
26510
|
};
|
|
26502
26511
|
}
|
|
26503
|
-
}), eR = /* @__PURE__ */ vA(AR, [["__scopeId", "data-v-
|
|
26512
|
+
}), eR = /* @__PURE__ */ vA(AR, [["__scopeId", "data-v-a9d66bb1"]]), tR = /* @__PURE__ */ jA({
|
|
26504
26513
|
__name: "ChangeLang",
|
|
26505
26514
|
setup(t) {
|
|
26506
26515
|
const A = ae("asiaint-lang");
|
|
@@ -26787,7 +26796,7 @@ export default ${JSON.stringify(t, null, 2)} satisfies FormSchema`, WL = (t) =>
|
|
|
26787
26796
|
}, 8, ["modelValue", "title"]);
|
|
26788
26797
|
};
|
|
26789
26798
|
}
|
|
26790
|
-
}), BR = /* @__PURE__ */ vA(gR, [["__scopeId", "data-v-
|
|
26799
|
+
}), BR = /* @__PURE__ */ vA(gR, [["__scopeId", "data-v-e4ab3ef4"]]), QR = /* @__PURE__ */ jA({
|
|
26791
26800
|
__name: "index",
|
|
26792
26801
|
setup(t) {
|
|
26793
26802
|
const A = oa(), e = XA(!1), n = XA(!1), i = TA(() => [
|
|
@@ -27806,7 +27815,7 @@ export default ${JSON.stringify(t, null, 2)} satisfies FormSchema`, WL = (t) =>
|
|
|
27806
27815
|
}, 16, ["class"]);
|
|
27807
27816
|
};
|
|
27808
27817
|
}
|
|
27809
|
-
}), bR = /* @__PURE__ */ vA(fR, [["__scopeId", "data-v-
|
|
27818
|
+
}), bR = /* @__PURE__ */ vA(fR, [["__scopeId", "data-v-d8e65e0c"]]), yR = { class: "empty-content" }, vR = ["title"], _R = ["title", "onClick"], MR = {
|
|
27810
27819
|
key: 1,
|
|
27811
27820
|
class: "icon-text-wrapper"
|
|
27812
27821
|
}, kR = ["title"], FR = ["title"], NR = { class: "row-btn-wrapper" }, GR = /* @__PURE__ */ jA({
|
|
@@ -28111,7 +28120,7 @@ export default ${JSON.stringify(t, null, 2)} satisfies FormSchema`, WL = (t) =>
|
|
|
28111
28120
|
], 2);
|
|
28112
28121
|
};
|
|
28113
28122
|
}
|
|
28114
|
-
}), fu = /* @__PURE__ */ vA(GR, [["__scopeId", "data-v-
|
|
28123
|
+
}), fu = /* @__PURE__ */ vA(GR, [["__scopeId", "data-v-5b020f6d"]]), LR = ["id"], Yp = /* @__PURE__ */ jA({
|
|
28115
28124
|
__name: "index",
|
|
28116
28125
|
props: /* @__PURE__ */ vt({
|
|
28117
28126
|
design: { type: Boolean },
|
|
@@ -28558,7 +28567,7 @@ export default ${JSON.stringify(t, null, 2)} satisfies FormSchema`, WL = (t) =>
|
|
|
28558
28567
|
], 8, RR);
|
|
28559
28568
|
};
|
|
28560
28569
|
}
|
|
28561
|
-
}), YR = /* @__PURE__ */ vA(UR, [["__scopeId", "data-v-
|
|
28570
|
+
}), YR = /* @__PURE__ */ vA(UR, [["__scopeId", "data-v-b46e1f44"]]), JR = ["id"], OR = { class: "info-card-header" }, zR = { class: "left-part" }, TR = { class: "title-part" }, ZR = { class: "sub-title-container" }, qR = { class: "right-part" }, jR = { class: "info info-card-infos" }, $R = {
|
|
28562
28571
|
key: 0,
|
|
28563
28572
|
class: "info-label"
|
|
28564
28573
|
}, WR = { class: "ml-2" }, VR = {
|
|
@@ -28851,7 +28860,7 @@ mountedFuncName: ${d}
|
|
|
28851
28860
|
], 8, JR));
|
|
28852
28861
|
};
|
|
28853
28862
|
}
|
|
28854
|
-
}), sx = /* @__PURE__ */ vA(ox, [["__scopeId", "data-v-
|
|
28863
|
+
}), sx = /* @__PURE__ */ vA(ox, [["__scopeId", "data-v-40d149be"]]), rx = ["id"], gx = {
|
|
28855
28864
|
key: 0,
|
|
28856
28865
|
class: "left-part"
|
|
28857
28866
|
}, Bx = { class: "nav-title" }, Qx = { key: 1 }, cx = {
|
|
@@ -28991,7 +29000,7 @@ funcName: ${m}`);
|
|
|
28991
29000
|
])
|
|
28992
29001
|
], 14, rx));
|
|
28993
29002
|
}
|
|
28994
|
-
}), mx = /* @__PURE__ */ vA(hx, [["__scopeId", "data-v-
|
|
29003
|
+
}), mx = /* @__PURE__ */ vA(hx, [["__scopeId", "data-v-fe936c1b"]]), Dx = ["onClick"], fx = { key: 1 }, bx = /* @__PURE__ */ jA({
|
|
28995
29004
|
__name: "AlertRender",
|
|
28996
29005
|
props: /* @__PURE__ */ vt({
|
|
28997
29006
|
pageRulePath: {},
|
|
@@ -29104,7 +29113,7 @@ funcName: ${m}`);
|
|
|
29104
29113
|
}, 8, ["type", "class", "style"])) : yA("", !0);
|
|
29105
29114
|
};
|
|
29106
29115
|
}
|
|
29107
|
-
}), yx = /* @__PURE__ */ vA(bx, [["__scopeId", "data-v-
|
|
29116
|
+
}), yx = /* @__PURE__ */ vA(bx, [["__scopeId", "data-v-f5d9e9d0"]]), vx = ["id"], _x = /* @__PURE__ */ jA({
|
|
29108
29117
|
__name: "index",
|
|
29109
29118
|
props: {
|
|
29110
29119
|
ruleMap: {},
|
|
@@ -29612,7 +29621,7 @@ mountedFuncName: ${aA}
|
|
|
29612
29621
|
]);
|
|
29613
29622
|
};
|
|
29614
29623
|
}
|
|
29615
|
-
}), Jp = /* @__PURE__ */ vA(_x, [["__scopeId", "data-v-
|
|
29624
|
+
}), Jp = /* @__PURE__ */ vA(_x, [["__scopeId", "data-v-770b5c83"]]), Mx = (t, A = {}) => {
|
|
29616
29625
|
t.provide(Wi, A), t.component("FormRender", _n), t.component("FormDesign", wR), t.component("TableRender", Yp), t.component("PageRender", Jp);
|
|
29617
29626
|
}, zx = { install: Mx };
|
|
29618
29627
|
export {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { inject as A, ref as h, toRaw as y, onMounted as O, watch as o } from "vue";
|
|
2
|
-
import { $ as S, u as V, l as F, i as I } from "./index-
|
|
2
|
+
import { $ as S, u as V, l as F, i as I } from "./index-CShYNljc.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const D = () => {
|
|
5
5
|
const { fetchOptionsFn: e } = A(S);
|