@ganwei-web/gw-base-components-plus 1.0.19 → 1.0.21
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/customDirective/getUserPermissionList.js +53 -0
- package/customDirective/index.js +15 -0
- package/customDirective/interfaceDefinition.ts +10 -0
- package/customDirective/permission.js +61 -0
- package/element-plus-adapter/dist/ElementPlusAdapter.cjs +290 -63
- package/element-plus-adapter/dist/ElementPlusAdapter.cjs.map +1 -1
- package/element-plus-adapter/dist/ElementPlusAdapter.css +4 -1
- package/element-plus-adapter/dist/ElementPlusAdapter.iife.js +290 -63
- package/element-plus-adapter/dist/ElementPlusAdapter.iife.js.map +1 -1
- package/element-plus-adapter/dist/ElementPlusAdapter.js +292 -65
- package/element-plus-adapter/dist/ElementPlusAdapter.js.map +1 -1
- package/package.json +1 -1
|
@@ -716,7 +716,7 @@
|
|
|
716
716
|
}
|
|
717
717
|
.noDataTips {
|
|
718
718
|
width: 100%;
|
|
719
|
-
height: 300px;
|
|
719
|
+
min-height: 300px;
|
|
720
720
|
position: relative;
|
|
721
721
|
vertical-align: middle;
|
|
722
722
|
}
|
|
@@ -1239,6 +1239,9 @@
|
|
|
1239
1239
|
}.el-menu--horizontal.el-menu {
|
|
1240
1240
|
border-bottom: 1px solid var(--menu-border-color);
|
|
1241
1241
|
}
|
|
1242
|
+
.el-menu--horizontal.el-menu .el-menu-item:not(.is-disabled):focus {
|
|
1243
|
+
background-color: var(--menu-background__hover);
|
|
1244
|
+
}
|
|
1242
1245
|
.el-menu {
|
|
1243
1246
|
border: none;
|
|
1244
1247
|
background-color: transparent;
|
|
@@ -12,7 +12,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
12
12
|
});
|
|
13
13
|
return expose;
|
|
14
14
|
}
|
|
15
|
-
const _sfc_main$
|
|
15
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
16
16
|
...{
|
|
17
17
|
inheritAttrs: false
|
|
18
18
|
},
|
|
@@ -60,7 +60,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
const index_vue_vue_type_style_index_0_lang$t = "";
|
|
63
|
-
const _sfc_main$
|
|
63
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
64
64
|
__name: "index",
|
|
65
65
|
setup(__props, { expose: __expose }) {
|
|
66
66
|
const attrs = vue.useAttrs();
|
|
@@ -92,7 +92,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
92
92
|
console.warn(`${UI_AUTOMATION_TOKEN} is required to UI Automation`);
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
-
const _sfc_main$
|
|
95
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
96
96
|
__name: "ElInput",
|
|
97
97
|
props: {
|
|
98
98
|
"modelValue": {
|
|
@@ -145,7 +145,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
145
145
|
}
|
|
146
146
|
});
|
|
147
147
|
const ElInput_vue_vue_type_style_index_0_lang = "";
|
|
148
|
-
const _sfc_main$
|
|
148
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
149
149
|
__name: "index",
|
|
150
150
|
setup(__props, { expose: __expose }) {
|
|
151
151
|
const proxyElement = vue.ref();
|
|
@@ -170,7 +170,31 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
170
170
|
}
|
|
171
171
|
});
|
|
172
172
|
const index_vue_vue_type_style_index_0_lang$r = "";
|
|
173
|
-
const _sfc_main$
|
|
173
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
174
|
+
__name: "index",
|
|
175
|
+
setup(__props, { expose: __expose }) {
|
|
176
|
+
const attrs = vue.useAttrs();
|
|
177
|
+
const proxyElement = vue.ref();
|
|
178
|
+
const expose = useExpose(proxyElement);
|
|
179
|
+
__expose(expose);
|
|
180
|
+
return (_ctx, _cache) => {
|
|
181
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElFormItem), vue.mergeProps(vue.unref(attrs), {
|
|
182
|
+
ref_key: "proxyElement",
|
|
183
|
+
ref: proxyElement
|
|
184
|
+
}), vue.createSlots({ _: 2 }, [
|
|
185
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
186
|
+
return {
|
|
187
|
+
name: key,
|
|
188
|
+
fn: vue.withCtx((slotProps) => [
|
|
189
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
190
|
+
])
|
|
191
|
+
};
|
|
192
|
+
})
|
|
193
|
+
]), 1040);
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
174
198
|
__name: "index",
|
|
175
199
|
setup(__props, { expose: __expose }) {
|
|
176
200
|
const proxyElement = vue.ref();
|
|
@@ -196,7 +220,31 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
196
220
|
}
|
|
197
221
|
});
|
|
198
222
|
const index_vue_vue_type_style_index_0_lang$q = "";
|
|
199
|
-
const _sfc_main$
|
|
223
|
+
const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
224
|
+
__name: "index",
|
|
225
|
+
setup(__props, { expose: __expose }) {
|
|
226
|
+
const attrs = vue.useAttrs();
|
|
227
|
+
const proxyElement = vue.ref();
|
|
228
|
+
const expose = useExpose(proxyElement);
|
|
229
|
+
__expose(expose);
|
|
230
|
+
return (_ctx, _cache) => {
|
|
231
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElOption), vue.mergeProps(vue.unref(attrs), {
|
|
232
|
+
ref_key: "proxyElement",
|
|
233
|
+
ref: proxyElement
|
|
234
|
+
}), vue.createSlots({ _: 2 }, [
|
|
235
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
236
|
+
return {
|
|
237
|
+
name: key,
|
|
238
|
+
fn: vue.withCtx((slotProps) => [
|
|
239
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
240
|
+
])
|
|
241
|
+
};
|
|
242
|
+
})
|
|
243
|
+
]), 1040);
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
});
|
|
247
|
+
const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
200
248
|
__name: "index",
|
|
201
249
|
setup(__props, { expose: __expose }) {
|
|
202
250
|
const proxyElement = vue.ref();
|
|
@@ -221,7 +269,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
221
269
|
}
|
|
222
270
|
});
|
|
223
271
|
const index_vue_vue_type_style_index_0_lang$p = "";
|
|
224
|
-
const _sfc_main$
|
|
272
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
225
273
|
__name: "index",
|
|
226
274
|
setup(__props, { expose: __expose }) {
|
|
227
275
|
const proxyElement = vue.ref();
|
|
@@ -246,7 +294,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
246
294
|
}
|
|
247
295
|
});
|
|
248
296
|
const index_vue_vue_type_style_index_0_lang$o = "";
|
|
249
|
-
const _sfc_main$
|
|
297
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
250
298
|
__name: "index",
|
|
251
299
|
props: {
|
|
252
300
|
round: {
|
|
@@ -279,7 +327,31 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
279
327
|
}
|
|
280
328
|
});
|
|
281
329
|
const index_vue_vue_type_style_index_0_lang$n = "";
|
|
282
|
-
const _sfc_main$
|
|
330
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
331
|
+
__name: "index",
|
|
332
|
+
setup(__props, { expose: __expose }) {
|
|
333
|
+
const attrs = vue.useAttrs();
|
|
334
|
+
const proxyElement = vue.ref();
|
|
335
|
+
const expose = useExpose(proxyElement);
|
|
336
|
+
__expose(expose);
|
|
337
|
+
return (_ctx, _cache) => {
|
|
338
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElRadioButton), vue.mergeProps(vue.unref(attrs), {
|
|
339
|
+
ref_key: "proxyElement",
|
|
340
|
+
ref: proxyElement
|
|
341
|
+
}), vue.createSlots({ _: 2 }, [
|
|
342
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
343
|
+
return {
|
|
344
|
+
name: key,
|
|
345
|
+
fn: vue.withCtx((slotProps) => [
|
|
346
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
347
|
+
])
|
|
348
|
+
};
|
|
349
|
+
})
|
|
350
|
+
]), 1040);
|
|
351
|
+
};
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
283
355
|
__name: "index",
|
|
284
356
|
setup(__props, { expose: __expose }) {
|
|
285
357
|
const proxyElement = vue.ref();
|
|
@@ -305,7 +377,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
305
377
|
}
|
|
306
378
|
});
|
|
307
379
|
const index_vue_vue_type_style_index_0_lang$m = "";
|
|
308
|
-
const _sfc_main$
|
|
380
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
309
381
|
__name: "index",
|
|
310
382
|
setup(__props, { expose: __expose }) {
|
|
311
383
|
const proxyElement = vue.ref();
|
|
@@ -330,7 +402,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
330
402
|
}
|
|
331
403
|
});
|
|
332
404
|
const index_vue_vue_type_style_index_0_lang$l = "";
|
|
333
|
-
const _sfc_main$
|
|
405
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
334
406
|
__name: "index",
|
|
335
407
|
props: {
|
|
336
408
|
defaultTime: {},
|
|
@@ -380,7 +452,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
380
452
|
}
|
|
381
453
|
});
|
|
382
454
|
const index_vue_vue_type_style_index_0_lang$k = "";
|
|
383
|
-
const _sfc_main$
|
|
455
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
384
456
|
__name: "index",
|
|
385
457
|
setup(__props, { expose: __expose }) {
|
|
386
458
|
const proxyElement = vue.ref();
|
|
@@ -405,7 +477,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
405
477
|
}
|
|
406
478
|
});
|
|
407
479
|
const index_vue_vue_type_style_index_0_lang$j = "";
|
|
408
|
-
const _sfc_main$
|
|
480
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
409
481
|
__name: "index",
|
|
410
482
|
setup(__props, { expose: __expose }) {
|
|
411
483
|
const proxyElement = vue.ref();
|
|
@@ -430,7 +502,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
430
502
|
}
|
|
431
503
|
});
|
|
432
504
|
const index_vue_vue_type_style_index_0_lang$i = "";
|
|
433
|
-
const _sfc_main$
|
|
505
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
434
506
|
__name: "index",
|
|
435
507
|
setup(__props, { expose: __expose }) {
|
|
436
508
|
const attrs = vue.useAttrs();
|
|
@@ -455,7 +527,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
455
527
|
}
|
|
456
528
|
});
|
|
457
529
|
const index_vue_vue_type_style_index_0_lang$h = "";
|
|
458
|
-
const _sfc_main$
|
|
530
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
459
531
|
__name: "index",
|
|
460
532
|
setup(__props, { expose: __expose }) {
|
|
461
533
|
const proxyElement = vue.ref();
|
|
@@ -487,7 +559,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
487
559
|
}
|
|
488
560
|
});
|
|
489
561
|
const index_vue_vue_type_style_index_0_lang$g = "";
|
|
490
|
-
const _sfc_main$
|
|
562
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
491
563
|
__name: "index",
|
|
492
564
|
props: {
|
|
493
565
|
formatter: {
|
|
@@ -525,7 +597,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
525
597
|
};
|
|
526
598
|
}
|
|
527
599
|
});
|
|
528
|
-
const _sfc_main$
|
|
600
|
+
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
529
601
|
__name: "index",
|
|
530
602
|
setup(__props, { expose: __expose }) {
|
|
531
603
|
const attrs = vue.useAttrs();
|
|
@@ -550,7 +622,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
550
622
|
}
|
|
551
623
|
});
|
|
552
624
|
const index_vue_vue_type_style_index_0_lang$f = "";
|
|
553
|
-
const _sfc_main$
|
|
625
|
+
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
554
626
|
__name: "index",
|
|
555
627
|
setup(__props, { expose: __expose }) {
|
|
556
628
|
const attrs = vue.useAttrs();
|
|
@@ -558,12 +630,14 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
558
630
|
const proxyElement = vue.ref();
|
|
559
631
|
const expose = useExpose(proxyElement);
|
|
560
632
|
__expose(expose);
|
|
633
|
+
const injectedLocale = vue.inject(elementPlus.localeContextKey, {});
|
|
634
|
+
const locale = vue.computed(() => attrs.locale || injectedLocale.value);
|
|
561
635
|
const defaultAttrs = {
|
|
562
636
|
pageSizes: [20, 50, 100],
|
|
563
637
|
layout: "sizes,prev, pager, next,total"
|
|
564
638
|
};
|
|
565
639
|
return (_ctx, _cache) => {
|
|
566
|
-
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPagination), vue.mergeProps({ ...defaultAttrs, ...vue.unref(attrs) }, {
|
|
640
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPagination), vue.mergeProps({ ...defaultAttrs, ...vue.unref(attrs), locale: locale.value }, {
|
|
567
641
|
ref_key: "proxyElement",
|
|
568
642
|
ref: proxyElement
|
|
569
643
|
}), vue.createSlots({ _: 2 }, [
|
|
@@ -601,7 +675,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
601
675
|
}
|
|
602
676
|
}), picture_default = _sfc_main197;
|
|
603
677
|
const _hoisted_1 = { class: "error-slot" };
|
|
604
|
-
const _sfc_main$
|
|
678
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
605
679
|
...{ inheritAttrs: false },
|
|
606
680
|
__name: "index",
|
|
607
681
|
props: {
|
|
@@ -674,7 +748,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
674
748
|
}
|
|
675
749
|
});
|
|
676
750
|
const index_vue_vue_type_style_index_0_lang$d = "";
|
|
677
|
-
const _sfc_main$
|
|
751
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
678
752
|
__name: "index",
|
|
679
753
|
setup(__props, { expose: __expose }) {
|
|
680
754
|
const attrs = vue.useAttrs();
|
|
@@ -699,7 +773,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
699
773
|
}
|
|
700
774
|
});
|
|
701
775
|
const index_vue_vue_type_style_index_0_lang$c = "";
|
|
702
|
-
const _sfc_main$
|
|
776
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
703
777
|
__name: "index",
|
|
704
778
|
setup(__props, { expose: __expose }) {
|
|
705
779
|
const attrs = vue.useAttrs();
|
|
@@ -724,7 +798,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
724
798
|
}
|
|
725
799
|
});
|
|
726
800
|
const index_vue_vue_type_style_index_0_lang$b = "";
|
|
727
|
-
const _sfc_main$
|
|
801
|
+
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
728
802
|
__name: "index",
|
|
729
803
|
setup(__props, { expose: __expose }) {
|
|
730
804
|
const attrs = vue.useAttrs();
|
|
@@ -749,7 +823,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
749
823
|
}
|
|
750
824
|
});
|
|
751
825
|
const index_vue_vue_type_style_index_0_lang$a = "";
|
|
752
|
-
const _sfc_main$
|
|
826
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
753
827
|
__name: "index",
|
|
754
828
|
setup(__props, { expose: __expose }) {
|
|
755
829
|
const attrs = vue.useAttrs();
|
|
@@ -774,7 +848,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
774
848
|
}
|
|
775
849
|
});
|
|
776
850
|
const index_vue_vue_type_style_index_0_lang$9 = "";
|
|
777
|
-
const _sfc_main$
|
|
851
|
+
const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
778
852
|
__name: "index",
|
|
779
853
|
setup(__props, { expose: __expose }) {
|
|
780
854
|
const proxyElement = vue.ref();
|
|
@@ -798,7 +872,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
798
872
|
}
|
|
799
873
|
});
|
|
800
874
|
const index_vue_vue_type_style_index_0_lang$8 = "";
|
|
801
|
-
const _sfc_main$
|
|
875
|
+
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
802
876
|
__name: "index",
|
|
803
877
|
setup(__props, { expose: __expose }) {
|
|
804
878
|
const proxyElement = vue.ref();
|
|
@@ -824,7 +898,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
824
898
|
}
|
|
825
899
|
});
|
|
826
900
|
const index_vue_vue_type_style_index_0_lang$7 = "";
|
|
827
|
-
const _sfc_main$
|
|
901
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
828
902
|
__name: "index",
|
|
829
903
|
setup(__props, { expose: __expose }) {
|
|
830
904
|
const attrs = vue.useAttrs();
|
|
@@ -849,7 +923,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
849
923
|
}
|
|
850
924
|
});
|
|
851
925
|
const index_vue_vue_type_style_index_0_lang$6 = "";
|
|
852
|
-
const _sfc_main$
|
|
926
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
853
927
|
__name: "index",
|
|
854
928
|
setup(__props, { expose: __expose }) {
|
|
855
929
|
const attrs = vue.useAttrs();
|
|
@@ -927,7 +1001,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
927
1001
|
(_b = (_a = elementPlus.vLoading).unmounted) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
|
|
928
1002
|
}
|
|
929
1003
|
};
|
|
930
|
-
const _sfc_main$
|
|
1004
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
931
1005
|
__name: "index",
|
|
932
1006
|
setup(__props, { expose: __expose }) {
|
|
933
1007
|
const proxyElement = vue.ref();
|
|
@@ -953,7 +1027,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
953
1027
|
}
|
|
954
1028
|
});
|
|
955
1029
|
const index_vue_vue_type_style_index_0_lang$4 = "";
|
|
956
|
-
const _sfc_main$
|
|
1030
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
957
1031
|
__name: "index",
|
|
958
1032
|
setup(__props, { expose: __expose }) {
|
|
959
1033
|
const proxyElement = vue.ref();
|
|
@@ -979,7 +1053,7 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
979
1053
|
}
|
|
980
1054
|
});
|
|
981
1055
|
const index_vue_vue_type_style_index_0_lang$3 = "";
|
|
982
|
-
const _sfc_main$
|
|
1056
|
+
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
983
1057
|
__name: "index",
|
|
984
1058
|
setup(__props, { expose: __expose }) {
|
|
985
1059
|
const attrs = vue.useAttrs();
|
|
@@ -1004,7 +1078,127 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
1004
1078
|
}
|
|
1005
1079
|
});
|
|
1006
1080
|
const index_vue_vue_type_style_index_0_lang$2 = "";
|
|
1007
|
-
const _sfc_main$
|
|
1081
|
+
const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
1082
|
+
__name: "index",
|
|
1083
|
+
setup(__props, { expose: __expose }) {
|
|
1084
|
+
const attrs = vue.useAttrs();
|
|
1085
|
+
const proxyElement = vue.ref();
|
|
1086
|
+
const expose = useExpose(proxyElement);
|
|
1087
|
+
__expose(expose);
|
|
1088
|
+
return (_ctx, _cache) => {
|
|
1089
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTabPane), vue.mergeProps(vue.unref(attrs), {
|
|
1090
|
+
ref_key: "proxyElement",
|
|
1091
|
+
ref: proxyElement
|
|
1092
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1093
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1094
|
+
return {
|
|
1095
|
+
name: key,
|
|
1096
|
+
fn: vue.withCtx((slotProps) => [
|
|
1097
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1098
|
+
])
|
|
1099
|
+
};
|
|
1100
|
+
})
|
|
1101
|
+
]), 1040);
|
|
1102
|
+
};
|
|
1103
|
+
}
|
|
1104
|
+
});
|
|
1105
|
+
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
1106
|
+
__name: "index",
|
|
1107
|
+
setup(__props, { expose: __expose }) {
|
|
1108
|
+
const attrs = vue.useAttrs();
|
|
1109
|
+
const proxyElement = vue.ref();
|
|
1110
|
+
const expose = useExpose(proxyElement);
|
|
1111
|
+
__expose(expose);
|
|
1112
|
+
return (_ctx, _cache) => {
|
|
1113
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElMenuItem), vue.mergeProps(vue.unref(attrs), {
|
|
1114
|
+
ref_key: "proxyElement",
|
|
1115
|
+
ref: proxyElement
|
|
1116
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1117
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1118
|
+
return {
|
|
1119
|
+
name: key,
|
|
1120
|
+
fn: vue.withCtx((slotProps) => [
|
|
1121
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1122
|
+
])
|
|
1123
|
+
};
|
|
1124
|
+
})
|
|
1125
|
+
]), 1040);
|
|
1126
|
+
};
|
|
1127
|
+
}
|
|
1128
|
+
});
|
|
1129
|
+
const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
1130
|
+
__name: "index",
|
|
1131
|
+
setup(__props, { expose: __expose }) {
|
|
1132
|
+
const attrs = vue.useAttrs();
|
|
1133
|
+
const proxyElement = vue.ref();
|
|
1134
|
+
const expose = useExpose(proxyElement);
|
|
1135
|
+
__expose(expose);
|
|
1136
|
+
return (_ctx, _cache) => {
|
|
1137
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElSubMenu), vue.mergeProps(vue.unref(attrs), {
|
|
1138
|
+
ref_key: "proxyElement",
|
|
1139
|
+
ref: proxyElement
|
|
1140
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1141
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1142
|
+
return {
|
|
1143
|
+
name: key,
|
|
1144
|
+
fn: vue.withCtx((slotProps) => [
|
|
1145
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1146
|
+
])
|
|
1147
|
+
};
|
|
1148
|
+
})
|
|
1149
|
+
]), 1040);
|
|
1150
|
+
};
|
|
1151
|
+
}
|
|
1152
|
+
});
|
|
1153
|
+
const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
1154
|
+
__name: "index",
|
|
1155
|
+
setup(__props, { expose: __expose }) {
|
|
1156
|
+
const attrs = vue.useAttrs();
|
|
1157
|
+
const proxyElement = vue.ref();
|
|
1158
|
+
const expose = useExpose(proxyElement);
|
|
1159
|
+
__expose(expose);
|
|
1160
|
+
return (_ctx, _cache) => {
|
|
1161
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDropdownMenu), vue.mergeProps(vue.unref(attrs), {
|
|
1162
|
+
ref_key: "proxyElement",
|
|
1163
|
+
ref: proxyElement
|
|
1164
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1165
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1166
|
+
return {
|
|
1167
|
+
name: key,
|
|
1168
|
+
fn: vue.withCtx((slotProps) => [
|
|
1169
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1170
|
+
])
|
|
1171
|
+
};
|
|
1172
|
+
})
|
|
1173
|
+
]), 1040);
|
|
1174
|
+
};
|
|
1175
|
+
}
|
|
1176
|
+
});
|
|
1177
|
+
const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
1178
|
+
__name: "index",
|
|
1179
|
+
setup(__props, { expose: __expose }) {
|
|
1180
|
+
const attrs = vue.useAttrs();
|
|
1181
|
+
const proxyElement = vue.ref();
|
|
1182
|
+
const expose = useExpose(proxyElement);
|
|
1183
|
+
__expose(expose);
|
|
1184
|
+
return (_ctx, _cache) => {
|
|
1185
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDropdownItem), vue.mergeProps(vue.unref(attrs), {
|
|
1186
|
+
ref_key: "proxyElement",
|
|
1187
|
+
ref: proxyElement
|
|
1188
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1189
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1190
|
+
return {
|
|
1191
|
+
name: key,
|
|
1192
|
+
fn: vue.withCtx((slotProps) => [
|
|
1193
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1194
|
+
])
|
|
1195
|
+
};
|
|
1196
|
+
})
|
|
1197
|
+
]), 1040);
|
|
1198
|
+
};
|
|
1199
|
+
}
|
|
1200
|
+
});
|
|
1201
|
+
const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
1008
1202
|
__name: "index",
|
|
1009
1203
|
setup(__props, { expose: __expose }) {
|
|
1010
1204
|
const attrs = vue.useAttrs();
|
|
@@ -1029,6 +1223,30 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
1029
1223
|
}
|
|
1030
1224
|
});
|
|
1031
1225
|
const index_vue_vue_type_style_index_0_lang$1 = "";
|
|
1226
|
+
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
1227
|
+
__name: "index",
|
|
1228
|
+
setup(__props, { expose: __expose }) {
|
|
1229
|
+
const attrs = vue.useAttrs();
|
|
1230
|
+
const proxyElement = vue.ref();
|
|
1231
|
+
const expose = useExpose(proxyElement);
|
|
1232
|
+
__expose(expose);
|
|
1233
|
+
return (_ctx, _cache) => {
|
|
1234
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCollapseItem), vue.mergeProps(vue.unref(attrs), {
|
|
1235
|
+
ref_key: "proxyElement",
|
|
1236
|
+
ref: proxyElement
|
|
1237
|
+
}), vue.createSlots({ _: 2 }, [
|
|
1238
|
+
vue.renderList(_ctx.$slots, (value, key) => {
|
|
1239
|
+
return {
|
|
1240
|
+
name: key,
|
|
1241
|
+
fn: vue.withCtx((slotProps) => [
|
|
1242
|
+
vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
|
|
1243
|
+
])
|
|
1244
|
+
};
|
|
1245
|
+
})
|
|
1246
|
+
]), 1040);
|
|
1247
|
+
};
|
|
1248
|
+
}
|
|
1249
|
+
});
|
|
1032
1250
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
1033
1251
|
__name: "index",
|
|
1034
1252
|
setup(__props, { expose: __expose }) {
|
|
@@ -1074,42 +1292,51 @@ var ElementPlusAdapter = function(exports, elementPlus, vue) {
|
|
|
1074
1292
|
const index_vue_vue_type_style_index_0_lang = "";
|
|
1075
1293
|
const Adapter = {
|
|
1076
1294
|
// 基础组件
|
|
1077
|
-
ElButton: _sfc_main$
|
|
1078
|
-
ElTag: _sfc_main$
|
|
1295
|
+
ElButton: _sfc_main$E,
|
|
1296
|
+
ElTag: _sfc_main$D,
|
|
1079
1297
|
// 表单组件
|
|
1080
|
-
ElInput: _sfc_main$
|
|
1081
|
-
ElForm: _sfc_main$
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1298
|
+
ElInput: _sfc_main$C,
|
|
1299
|
+
ElForm: _sfc_main$B,
|
|
1300
|
+
ElFormItem: _sfc_main$A,
|
|
1301
|
+
ElSelect: _sfc_main$z,
|
|
1302
|
+
ElOption: _sfc_main$y,
|
|
1303
|
+
ElCheckbox: _sfc_main$x,
|
|
1304
|
+
ElRadio: _sfc_main$w,
|
|
1305
|
+
ElRadioGroup: _sfc_main$v,
|
|
1306
|
+
ElRadioButton: _sfc_main$u,
|
|
1307
|
+
ElSwitch: _sfc_main$t,
|
|
1308
|
+
ElCascader: _sfc_main$s,
|
|
1309
|
+
ElDatePicker: _sfc_main$r,
|
|
1310
|
+
ElTimePicker: _sfc_main$q,
|
|
1311
|
+
ElUpload: _sfc_main$p,
|
|
1312
|
+
ElTransfer: _sfc_main$o,
|
|
1092
1313
|
// 数据展示
|
|
1093
|
-
ElTable: _sfc_main$
|
|
1094
|
-
ElTableColumn: _sfc_main$
|
|
1095
|
-
ElTree: _sfc_main$
|
|
1096
|
-
ElPagination: _sfc_main$
|
|
1097
|
-
ElImage: _sfc_main$
|
|
1098
|
-
ElProgress: _sfc_main$
|
|
1099
|
-
ElBadge: _sfc_main$
|
|
1100
|
-
ElCard: _sfc_main$
|
|
1314
|
+
ElTable: _sfc_main$n,
|
|
1315
|
+
ElTableColumn: _sfc_main$m,
|
|
1316
|
+
ElTree: _sfc_main$l,
|
|
1317
|
+
ElPagination: _sfc_main$k,
|
|
1318
|
+
ElImage: _sfc_main$j,
|
|
1319
|
+
ElProgress: _sfc_main$i,
|
|
1320
|
+
ElBadge: _sfc_main$h,
|
|
1321
|
+
ElCard: _sfc_main$g,
|
|
1101
1322
|
// 反馈组件
|
|
1102
|
-
ElAlert: _sfc_main$
|
|
1103
|
-
ElDialog: _sfc_main$
|
|
1104
|
-
ElDrawer: _sfc_main$
|
|
1105
|
-
ElPopover: _sfc_main$
|
|
1106
|
-
ElTooltip: _sfc_main$
|
|
1323
|
+
ElAlert: _sfc_main$f,
|
|
1324
|
+
ElDialog: _sfc_main$e,
|
|
1325
|
+
ElDrawer: _sfc_main$d,
|
|
1326
|
+
ElPopover: _sfc_main$c,
|
|
1327
|
+
ElTooltip: _sfc_main$b,
|
|
1107
1328
|
// 导航组件
|
|
1108
|
-
ElMenu: _sfc_main$
|
|
1109
|
-
|
|
1110
|
-
|
|
1329
|
+
ElMenu: _sfc_main$a,
|
|
1330
|
+
ElMenuItem: _sfc_main$6,
|
|
1331
|
+
ElSubMenu: _sfc_main$5,
|
|
1332
|
+
ElDropdown: _sfc_main$9,
|
|
1333
|
+
ElDropdownMenu: _sfc_main$4,
|
|
1334
|
+
ElDropdownItem: _sfc_main$3,
|
|
1335
|
+
ElTabs: _sfc_main$8,
|
|
1336
|
+
ElTabPane: _sfc_main$7,
|
|
1111
1337
|
// 其他
|
|
1112
|
-
ElCollapse: _sfc_main$
|
|
1338
|
+
ElCollapse: _sfc_main$2,
|
|
1339
|
+
ElCollapseItem: _sfc_main$1,
|
|
1113
1340
|
ElPoper: _sfc_main
|
|
1114
1341
|
};
|
|
1115
1342
|
function adapterInstall(app) {
|