@fmdevui/fm-dev 1.0.57 → 1.0.59

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/es/component.mjs CHANGED
@@ -1,12 +1,13 @@
1
1
  import { FmLogin } from './packages/core/ui/login/index.mjs';
2
- import { FmTransfer, FmNoticeBar, Fmselect, FmAutocomplete } from './packages/core/ui/components/index.mjs';
2
+ import { FmTransfer, FmNoticeBar, Fmselect, FmAutocomplete, Fminputdropdown } from './packages/core/ui/components/index.mjs';
3
3
 
4
4
  const plugins = [
5
5
  FmLogin,
6
6
  FmTransfer,
7
7
  FmNoticeBar,
8
8
  Fmselect,
9
- FmAutocomplete
9
+ FmAutocomplete,
10
+ Fminputdropdown
10
11
  ];
11
12
 
12
13
  export { plugins as default };
@@ -12,6 +12,7 @@ import { VNode } from 'vue';
12
12
  interface iVxeOption {
13
13
  id?: string;
14
14
  name?: string;
15
+ spanMethod: VxeTablePropTypes.SpanMethod<any>;
15
16
  columns: VxeGridPropTypes.Columns<any>;
16
17
  data?: VxeTablePropTypes.Data<any>;
17
18
  sortConfig?: VxeTablePropTypes.SortConfig<any>;
@@ -584,4 +584,108 @@ declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
584
584
  fName: string;
585
585
  qId: number;
586
586
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
587
- export { FmTransfer, FmNoticeBar, FmDragImg, Fmselect, FmAutocomplete, elSvg };
587
+ declare const Fminputdropdown: DefineComponent<ExtractPropTypes<{
588
+ optionData: {
589
+ type: {
590
+ (arrayLength: number): any[];
591
+ (...items: any[]): any[];
592
+ new (arrayLength: number): any[];
593
+ new (...items: any[]): any[];
594
+ isArray(arg: any): arg is any[];
595
+ readonly prototype: any[];
596
+ from<T>(arrayLike: ArrayLike<T>): T[];
597
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
598
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
599
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
600
+ of<T>(...items: T[]): T[];
601
+ readonly [Symbol.species]: ArrayConstructor;
602
+ };
603
+ default: never[];
604
+ };
605
+ bvalue: {
606
+ type: StringConstructor;
607
+ default: string;
608
+ };
609
+ blabel: {
610
+ type: StringConstructor;
611
+ default: string;
612
+ };
613
+ placeholder: {
614
+ type: StringConstructor;
615
+ default: string;
616
+ };
617
+ inputWidth: {
618
+ type: StringConstructor;
619
+ default: string;
620
+ };
621
+ dropWidth: {
622
+ type: StringConstructor;
623
+ default: string;
624
+ };
625
+ id: {
626
+ type: PropType<any>;
627
+ };
628
+ name: {
629
+ type: PropType<any>;
630
+ };
631
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
632
+ change: (...args: any[]) => void;
633
+ "update:id": (value: any) => void;
634
+ "update:name": (value: any) => void;
635
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
636
+ optionData: {
637
+ type: {
638
+ (arrayLength: number): any[];
639
+ (...items: any[]): any[];
640
+ new (arrayLength: number): any[];
641
+ new (...items: any[]): any[];
642
+ isArray(arg: any): arg is any[];
643
+ readonly prototype: any[];
644
+ from<T>(arrayLike: ArrayLike<T>): T[];
645
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
646
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
647
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
648
+ of<T>(...items: T[]): T[];
649
+ readonly [Symbol.species]: ArrayConstructor;
650
+ };
651
+ default: never[];
652
+ };
653
+ bvalue: {
654
+ type: StringConstructor;
655
+ default: string;
656
+ };
657
+ blabel: {
658
+ type: StringConstructor;
659
+ default: string;
660
+ };
661
+ placeholder: {
662
+ type: StringConstructor;
663
+ default: string;
664
+ };
665
+ inputWidth: {
666
+ type: StringConstructor;
667
+ default: string;
668
+ };
669
+ dropWidth: {
670
+ type: StringConstructor;
671
+ default: string;
672
+ };
673
+ id: {
674
+ type: PropType<any>;
675
+ };
676
+ name: {
677
+ type: PropType<any>;
678
+ };
679
+ }>> & Readonly<{
680
+ onChange?: ((...args: any[]) => any) | undefined;
681
+ "onUpdate:id"?: ((value: any) => any) | undefined;
682
+ "onUpdate:name"?: ((value: any) => any) | undefined;
683
+ }>, {
684
+ placeholder: string;
685
+ optionData: any[];
686
+ bvalue: string;
687
+ blabel: string;
688
+ inputWidth: string;
689
+ dropWidth: string;
690
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
691
+ export { FmTransfer, FmNoticeBar, FmDragImg, Fmselect, FmAutocomplete, Fminputdropdown, elSvg };
@@ -0,0 +1,118 @@
1
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ optionData: {
4
+ type: {
5
+ (arrayLength: number): any[];
6
+ (...items: any[]): any[];
7
+ new (arrayLength: number): any[];
8
+ new (...items: any[]): any[];
9
+ isArray(arg: any): arg is any[];
10
+ readonly prototype: any[];
11
+ from<T>(arrayLike: ArrayLike<T>): T[];
12
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
13
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
14
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
15
+ of<T>(...items: T[]): T[];
16
+ readonly [Symbol.species]: ArrayConstructor;
17
+ };
18
+ default: never[];
19
+ };
20
+ /**
21
+ * 值的属性值
22
+ */
23
+ bvalue: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ /**
28
+ * 值的属性标签
29
+ */
30
+ blabel: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ placeholder: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ inputWidth: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ dropWidth: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ id: {
47
+ type: PropType<any>;
48
+ };
49
+ name: {
50
+ type: PropType<any>;
51
+ };
52
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
53
+ change: (...args: any[]) => void;
54
+ "update:id": (value: any) => void;
55
+ "update:name": (value: any) => void;
56
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
57
+ optionData: {
58
+ type: {
59
+ (arrayLength: number): any[];
60
+ (...items: any[]): any[];
61
+ new (arrayLength: number): any[];
62
+ new (...items: any[]): any[];
63
+ isArray(arg: any): arg is any[];
64
+ readonly prototype: any[];
65
+ from<T>(arrayLike: ArrayLike<T>): T[];
66
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
67
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
68
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
69
+ of<T>(...items: T[]): T[];
70
+ readonly [Symbol.species]: ArrayConstructor;
71
+ };
72
+ default: never[];
73
+ };
74
+ /**
75
+ * 值的属性值
76
+ */
77
+ bvalue: {
78
+ type: StringConstructor;
79
+ default: string;
80
+ };
81
+ /**
82
+ * 值的属性标签
83
+ */
84
+ blabel: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ placeholder: {
89
+ type: StringConstructor;
90
+ default: string;
91
+ };
92
+ inputWidth: {
93
+ type: StringConstructor;
94
+ default: string;
95
+ };
96
+ dropWidth: {
97
+ type: StringConstructor;
98
+ default: string;
99
+ };
100
+ id: {
101
+ type: PropType<any>;
102
+ };
103
+ name: {
104
+ type: PropType<any>;
105
+ };
106
+ }>> & Readonly<{
107
+ onChange?: ((...args: any[]) => any) | undefined;
108
+ "onUpdate:id"?: ((value: any) => any) | undefined;
109
+ "onUpdate:name"?: ((value: any) => any) | undefined;
110
+ }>, {
111
+ placeholder: string;
112
+ optionData: any[];
113
+ bvalue: string;
114
+ blabel: string;
115
+ inputWidth: string;
116
+ dropWidth: string;
117
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
118
+ export default _default;
package/es/index.mjs CHANGED
@@ -3,7 +3,7 @@ export { default as emitter } from './packages/core/utils/emit/index.mjs';
3
3
  export { default as setIntroduction } from './packages/core/utils/comm/setIconfont.mjs';
4
4
  import './packages/core/index.mjs';
5
5
  export { version } from './version.mjs';
6
- export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fmselect } from './packages/core/ui/components/index.mjs';
6
+ export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fminputdropdown, Fmselect } from './packages/core/ui/components/index.mjs';
7
7
  export { elSvg } from './packages/core/ui/components/svgIcon/index.mjs';
8
8
  export { FmLogin } from './packages/core/ui/login/index.mjs';
9
9
  export { NextLoading } from './packages/core/ui/loading/index.mjs';
@@ -17,6 +17,7 @@ const useVxeTable = (opt, extras) => {
17
17
  align: "center",
18
18
  // 自动监听父元素的变化去重新计算表格(对于父元素可能存在动态变化、显示隐藏的容器中、列宽异常等场景中的可能会用到)
19
19
  // data: [] as Array<T>,
20
+ spanMethod: opt.spanMethod,
20
21
  columns: opt.columns,
21
22
  showFooter: opt.showFooter,
22
23
  footerData: opt.footerData,
@@ -1,4 +1,4 @@
1
- export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fmselect } from './ui/components/index.mjs';
1
+ export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fminputdropdown, Fmselect } from './ui/components/index.mjs';
2
2
  export { FmLogin } from './ui/login/index.mjs';
3
3
  export { NextLoading } from './ui/loading/index.mjs';
4
4
  export { AccountTypeEnum, HttpMethodEnum, JobCreateTypeEnum } from './api/index.mjs';
@@ -3,16 +3,19 @@ import './noticeBar/index.vue.mjs';
3
3
  import dragimg from './dragVerify/dragVerifyImgRotate.vue.mjs';
4
4
  import './fmselect/index.vue.mjs';
5
5
  import './fmautocomplete/index.vue.mjs';
6
+ import './inputdropdown/index.vue.mjs';
6
7
  export { elSvg } from './svgIcon/index.mjs';
7
8
  import _sfc_main from './transfer/index.vue2.mjs';
8
9
  import _sfc_main$1 from './noticeBar/index.vue2.mjs';
9
10
  import _sfc_main$2 from './fmselect/index.vue2.mjs';
10
11
  import _sfc_main$3 from './fmautocomplete/index.vue2.mjs';
12
+ import _sfc_main$4 from './inputdropdown/index.vue2.mjs';
11
13
 
12
14
  const FmTransfer = _sfc_main;
13
15
  const FmNoticeBar = _sfc_main$1;
14
16
  const FmDragImg = dragimg;
15
17
  const Fmselect = _sfc_main$2;
16
18
  const FmAutocomplete = _sfc_main$3;
19
+ const Fminputdropdown = _sfc_main$4;
17
20
 
18
- export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fmselect };
21
+ export { FmAutocomplete, FmDragImg, FmNoticeBar, FmTransfer, Fminputdropdown, Fmselect };
@@ -0,0 +1,5 @@
1
+ import _sfc_main from './index.vue2.mjs';
2
+
3
+
4
+
5
+ export { _sfc_main as default };
@@ -0,0 +1,123 @@
1
+ import { defineComponent, useModel, resolveComponent, createBlock, openBlock, withCtx, createVNode, normalizeStyle, createElementBlock, Fragment, renderList, createTextVNode, toDisplayString, mergeModels } from 'vue';
2
+
3
+ var _sfc_main = /* @__PURE__ */ defineComponent({
4
+ ...{
5
+ name: "Fminputdropdown"
6
+ },
7
+ __name: "index",
8
+ props: /* @__PURE__ */ mergeModels({
9
+ //数据
10
+ optionData: {
11
+ type: Array,
12
+ default: []
13
+ },
14
+ /**
15
+ * 值的属性值
16
+ */
17
+ bvalue: {
18
+ type: String,
19
+ default: "id"
20
+ },
21
+ /**
22
+ * 值的属性标签
23
+ */
24
+ blabel: {
25
+ type: String,
26
+ default: "name"
27
+ },
28
+ placeholder: {
29
+ type: String,
30
+ default: "\u8BF7\u9009\u62E9"
31
+ },
32
+ inputWidth: {
33
+ type: String,
34
+ default: "40%"
35
+ },
36
+ dropWidth: {
37
+ type: String,
38
+ default: "90px"
39
+ }
40
+ }, {
41
+ "id": {
42
+ type: Number,
43
+ default: 0
44
+ },
45
+ "idModifiers": {},
46
+ "name": {
47
+ type: String,
48
+ default: ""
49
+ },
50
+ "nameModifiers": {}
51
+ }),
52
+ emits: /* @__PURE__ */ mergeModels(["change"], ["update:id", "update:name"]),
53
+ setup(__props, { emit: __emit }) {
54
+ const modeValueId = useModel(__props, "id");
55
+ const modeValueName = useModel(__props, "name");
56
+ const props = __props;
57
+ const emit = __emit;
58
+ const handCommand = (command) => {
59
+ const fitem = props.optionData.find((item) => item[props.bvalue] === command);
60
+ modeValueId.value = fitem != null ? [props.bvalue] : 0;
61
+ modeValueName.value = fitem != null ? fitem[props.blabel] : "";
62
+ emit("change", fitem);
63
+ };
64
+ return (_ctx, _cache) => {
65
+ const _component_el_input = resolveComponent("el-input");
66
+ const _component_el_dropdown_item = resolveComponent("el-dropdown-item");
67
+ const _component_el_dropdown_menu = resolveComponent("el-dropdown-menu");
68
+ const _component_el_dropdown = resolveComponent("el-dropdown");
69
+ return openBlock(), createBlock(_component_el_dropdown, {
70
+ placement: "bottom",
71
+ trigger: "click",
72
+ style: { "width": "100%" },
73
+ onCommand: handCommand
74
+ }, {
75
+ dropdown: withCtx(() => [
76
+ createVNode(_component_el_dropdown_menu, {
77
+ style: normalizeStyle({ width: __props.dropWidth })
78
+ }, {
79
+ default: withCtx(() => [
80
+ (openBlock(true), createElementBlock(
81
+ Fragment,
82
+ null,
83
+ renderList(__props.optionData, (item, index) => {
84
+ return openBlock(), createBlock(_component_el_dropdown_item, {
85
+ key: index,
86
+ command: item[__props.bvalue],
87
+ divided: ""
88
+ }, {
89
+ default: withCtx(() => [
90
+ createTextVNode(
91
+ toDisplayString(item[__props.blabel]),
92
+ 1
93
+ /* TEXT */
94
+ )
95
+ ]),
96
+ _: 2
97
+ /* DYNAMIC */
98
+ }, 1032, ["command"]);
99
+ }),
100
+ 128
101
+ /* KEYED_FRAGMENT */
102
+ ))
103
+ ]),
104
+ _: 1
105
+ /* STABLE */
106
+ }, 8, ["style"])
107
+ ]),
108
+ default: withCtx(() => [
109
+ createVNode(_component_el_input, {
110
+ modelValue: modeValueName.value,
111
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modeValueName.value = $event),
112
+ placeholder: props.placeholder,
113
+ style: normalizeStyle({ width: __props.inputWidth })
114
+ }, null, 8, ["modelValue", "placeholder", "style"])
115
+ ]),
116
+ _: 1
117
+ /* STABLE */
118
+ });
119
+ };
120
+ }
121
+ });
122
+
123
+ export { _sfc_main as default };
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! fm-dev v1.0.57 */
1
+ /*! fm-dev v1.0.59 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('crypto'), require('url'), require('http'), require('https'), require('util'), require('stream'), require('assert'), require('zlib'), require('element-plus')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', 'vue', 'crypto', 'url', 'http', 'https', 'util', 'stream', 'assert', 'zlib', 'element-plus'], factory) :
@@ -15,7 +15,7 @@
15
15
  const _hoisted_8 = { class: "fm-transfer-panel" };
16
16
  const _hoisted_9 = { class: "fm-transfer-panel__header" };
17
17
  const _hoisted_10 = { class: "fm-transfer-panel__body" };
18
- var _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
18
+ var _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
19
19
  ...{
20
20
  name: "FmTransfer"
21
21
  },
@@ -374,7 +374,7 @@
374
374
 
375
375
  const _hoisted_1$3 = { class: "notice-bar-warp-text-box" };
376
376
  const _hoisted_2$1 = ["innerHTML"];
377
- var _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
377
+ var _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
378
378
  ...{
379
379
  name: "FmNoticeBar"
380
380
  },
@@ -497,7 +497,7 @@
497
497
  }
498
498
  });
499
499
 
500
- var _sfc_main$4 = {
500
+ var _sfc_main$5 = {
501
501
  name: "dragVerify",
502
502
  props: {
503
503
  isPassing: {
@@ -879,9 +879,9 @@
879
879
  )
880
880
  ]);
881
881
  }
882
- var dragimg = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render], ["__scopeId", "data-v-9e8c9ed2"]]);
882
+ var dragimg = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render], ["__scopeId", "data-v-9e8c9ed2"]]);
883
883
 
884
- var _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
884
+ var _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
885
885
  ...{
886
886
  name: "Fmselect"
887
887
  },
@@ -23741,7 +23741,7 @@
23741
23741
  };
23742
23742
 
23743
23743
  const _hoisted_1$1 = { style: { "font-size": "14px", "line-height": "30px" } };
23744
- var _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
23744
+ var _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
23745
23745
  ...{
23746
23746
  name: "FmAutocomplete"
23747
23747
  },
@@ -23860,6 +23860,126 @@
23860
23860
  }
23861
23861
  });
23862
23862
 
23863
+ var _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
23864
+ ...{
23865
+ name: "Fminputdropdown"
23866
+ },
23867
+ __name: "index",
23868
+ props: /* @__PURE__ */ vue.mergeModels({
23869
+ //数据
23870
+ optionData: {
23871
+ type: Array,
23872
+ default: []
23873
+ },
23874
+ /**
23875
+ * 值的属性值
23876
+ */
23877
+ bvalue: {
23878
+ type: String,
23879
+ default: "id"
23880
+ },
23881
+ /**
23882
+ * 值的属性标签
23883
+ */
23884
+ blabel: {
23885
+ type: String,
23886
+ default: "name"
23887
+ },
23888
+ placeholder: {
23889
+ type: String,
23890
+ default: "\u8BF7\u9009\u62E9"
23891
+ },
23892
+ inputWidth: {
23893
+ type: String,
23894
+ default: "40%"
23895
+ },
23896
+ dropWidth: {
23897
+ type: String,
23898
+ default: "90px"
23899
+ }
23900
+ }, {
23901
+ "id": {
23902
+ type: Number,
23903
+ default: 0
23904
+ },
23905
+ "idModifiers": {},
23906
+ "name": {
23907
+ type: String,
23908
+ default: ""
23909
+ },
23910
+ "nameModifiers": {}
23911
+ }),
23912
+ emits: /* @__PURE__ */ vue.mergeModels(["change"], ["update:id", "update:name"]),
23913
+ setup(__props, { emit: __emit }) {
23914
+ const modeValueId = vue.useModel(__props, "id");
23915
+ const modeValueName = vue.useModel(__props, "name");
23916
+ const props = __props;
23917
+ const emit = __emit;
23918
+ const handCommand = (command) => {
23919
+ const fitem = props.optionData.find((item) => item[props.bvalue] === command);
23920
+ modeValueId.value = fitem != null ? [props.bvalue] : 0;
23921
+ modeValueName.value = fitem != null ? fitem[props.blabel] : "";
23922
+ emit("change", fitem);
23923
+ };
23924
+ return (_ctx, _cache) => {
23925
+ const _component_el_input = vue.resolveComponent("el-input");
23926
+ const _component_el_dropdown_item = vue.resolveComponent("el-dropdown-item");
23927
+ const _component_el_dropdown_menu = vue.resolveComponent("el-dropdown-menu");
23928
+ const _component_el_dropdown = vue.resolveComponent("el-dropdown");
23929
+ return vue.openBlock(), vue.createBlock(_component_el_dropdown, {
23930
+ placement: "bottom",
23931
+ trigger: "click",
23932
+ style: { "width": "100%" },
23933
+ onCommand: handCommand
23934
+ }, {
23935
+ dropdown: vue.withCtx(() => [
23936
+ vue.createVNode(_component_el_dropdown_menu, {
23937
+ style: vue.normalizeStyle({ width: __props.dropWidth })
23938
+ }, {
23939
+ default: vue.withCtx(() => [
23940
+ (vue.openBlock(true), vue.createElementBlock(
23941
+ vue.Fragment,
23942
+ null,
23943
+ vue.renderList(__props.optionData, (item, index) => {
23944
+ return vue.openBlock(), vue.createBlock(_component_el_dropdown_item, {
23945
+ key: index,
23946
+ command: item[__props.bvalue],
23947
+ divided: ""
23948
+ }, {
23949
+ default: vue.withCtx(() => [
23950
+ vue.createTextVNode(
23951
+ vue.toDisplayString(item[__props.blabel]),
23952
+ 1
23953
+ /* TEXT */
23954
+ )
23955
+ ]),
23956
+ _: 2
23957
+ /* DYNAMIC */
23958
+ }, 1032, ["command"]);
23959
+ }),
23960
+ 128
23961
+ /* KEYED_FRAGMENT */
23962
+ ))
23963
+ ]),
23964
+ _: 1
23965
+ /* STABLE */
23966
+ }, 8, ["style"])
23967
+ ]),
23968
+ default: vue.withCtx(() => [
23969
+ vue.createVNode(_component_el_input, {
23970
+ modelValue: modeValueName.value,
23971
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modeValueName.value = $event),
23972
+ placeholder: props.placeholder,
23973
+ style: vue.normalizeStyle({ width: __props.inputWidth })
23974
+ }, null, 8, ["modelValue", "placeholder", "style"])
23975
+ ]),
23976
+ _: 1
23977
+ /* STABLE */
23978
+ });
23979
+ };
23980
+ }
23981
+ });
23982
+
23863
23983
  /*! Element Plus Icons Vue v2.3.1 */
23864
23984
 
23865
23985
  var add_location_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
@@ -30017,11 +30137,12 @@
30017
30137
  }
30018
30138
  }
30019
30139
 
30020
- const FmTransfer = _sfc_main$6;
30021
- const FmNoticeBar = _sfc_main$5;
30140
+ const FmTransfer = _sfc_main$7;
30141
+ const FmNoticeBar = _sfc_main$6;
30022
30142
  const FmDragImg = dragimg;
30023
- const Fmselect = _sfc_main$3;
30024
- const FmAutocomplete = _sfc_main$2;
30143
+ const Fmselect = _sfc_main$4;
30144
+ const FmAutocomplete = _sfc_main$3;
30145
+ const Fminputdropdown = _sfc_main$2;
30025
30146
 
30026
30147
  const makeInstaller = (components = []) => {
30027
30148
  const install = (app) => {
@@ -30071,7 +30192,8 @@
30071
30192
  FmTransfer,
30072
30193
  FmNoticeBar,
30073
30194
  Fmselect,
30074
- FmAutocomplete
30195
+ FmAutocomplete,
30196
+ Fminputdropdown
30075
30197
  ];
30076
30198
 
30077
30199
  var installer = makeInstaller([...plugins]);
@@ -52685,6 +52807,7 @@
52685
52807
  align: "center",
52686
52808
  // 自动监听父元素的变化去重新计算表格(对于父元素可能存在动态变化、显示隐藏的容器中、列宽异常等场景中的可能会用到)
52687
52809
  // data: [] as Array<T>,
52810
+ spanMethod: opt.spanMethod,
52688
52811
  columns: opt.columns,
52689
52812
  showFooter: opt.showFooter,
52690
52813
  footerData: opt.footerData,
@@ -52766,6 +52889,7 @@
52766
52889
  exports.FmLogin = FmLogin;
52767
52890
  exports.FmNoticeBar = FmNoticeBar;
52768
52891
  exports.FmTransfer = FmTransfer;
52892
+ exports.Fminputdropdown = Fminputdropdown;
52769
52893
  exports.Fmselect = Fmselect;
52770
52894
  exports.HttpMethodEnum = HttpMethodEnum;
52771
52895
  exports.JobCreateTypeEnum = JobCreateTypeEnum;