iv-npm 1.1.73 → 1.2.1
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/package.json +1 -1
- package/packages/shared/package.json +30 -31
- package/packages/ui/dist/business-ui/component/IVProdBaseDropdown.d.ts +11 -0
- package/packages/ui/dist/index.cjs.js +63 -58
- package/packages/ui/dist/index.esm.js +64 -59
- package/packages/ui/dist/index.umd.js +63 -58
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +60 -60
- package/pnpm-lock.yaml +19 -9
package/package.json
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@IVNPM/shared",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "IVNPM/shared",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "npm run build",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/utils/index.mjs",
|
|
12
|
-
"module": "dist/utils/index.mjs",
|
|
13
|
-
"types": "dist/utils/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"index.js",
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mr.Cong",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
22
|
-
"tsup": "^6.2.1"
|
|
23
|
-
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"ant-design-vue": "^3.2.5"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@IVNPM/shared",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "IVNPM/shared",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "npm run build",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/utils/index.mjs",
|
|
12
|
+
"module": "dist/utils/index.mjs",
|
|
13
|
+
"types": "dist/utils/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mr.Cong",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
22
|
+
"tsup": "^6.2.1"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"ant-design-vue": "^3.2.5"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"nanoid": "^4.0.0"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -33,6 +33,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
type: ObjectConstructor;
|
|
34
34
|
required: false;
|
|
35
35
|
};
|
|
36
|
+
name: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
required: false;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
36
41
|
labelCol: {
|
|
37
42
|
type: ObjectConstructor;
|
|
38
43
|
required: false;
|
|
@@ -103,6 +108,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
103
108
|
type: ObjectConstructor;
|
|
104
109
|
required: false;
|
|
105
110
|
};
|
|
111
|
+
name: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
required: false;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
106
116
|
labelCol: {
|
|
107
117
|
type: ObjectConstructor;
|
|
108
118
|
required: false;
|
|
@@ -145,6 +155,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
145
155
|
}, {
|
|
146
156
|
fieldNames: any;
|
|
147
157
|
inputStyle: Record<string, any>;
|
|
158
|
+
name: string;
|
|
148
159
|
wrapperCol: Record<string, any>;
|
|
149
160
|
multiple: boolean;
|
|
150
161
|
isTitle: boolean;
|
|
@@ -1655,7 +1655,7 @@ var script$l = /*#__PURE__*/vue.defineComponent({
|
|
|
1655
1655
|
)) : vue.createCommentVNode("v-if", true)];
|
|
1656
1656
|
}),
|
|
1657
1657
|
"default": vue.withCtx(function () {
|
|
1658
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
1658
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
1659
1659
|
value: vue.unref(inputV),
|
|
1660
1660
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
1661
1661
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -1671,13 +1671,13 @@ var script$l = /*#__PURE__*/vue.defineComponent({
|
|
|
1671
1671
|
multiple: __props.multiple,
|
|
1672
1672
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
1673
1673
|
treeDefaultExpandAll: "",
|
|
1674
|
-
style:
|
|
1674
|
+
style: __props.inputStyle,
|
|
1675
1675
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
1676
1676
|
return _ctx.$emit('change', $event);
|
|
1677
1677
|
}),
|
|
1678
1678
|
replaceFields: __props.replaceFields
|
|
1679
|
-
}, null,
|
|
1680
|
-
/*
|
|
1679
|
+
}), null, 16
|
|
1680
|
+
/* FULL_PROPS */
|
|
1681
1681
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "multiple", "filter-option", "style", "replaceFields"])];
|
|
1682
1682
|
}),
|
|
1683
1683
|
_: 1
|
|
@@ -1738,6 +1738,11 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1738
1738
|
type: Object,
|
|
1739
1739
|
required: false
|
|
1740
1740
|
},
|
|
1741
|
+
name: {
|
|
1742
|
+
type: String,
|
|
1743
|
+
required: false,
|
|
1744
|
+
"default": "productionBaseId"
|
|
1745
|
+
},
|
|
1741
1746
|
labelCol: {
|
|
1742
1747
|
type: Object,
|
|
1743
1748
|
required: false
|
|
@@ -1859,7 +1864,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1859
1864
|
var _component_a_form_item = vue.resolveComponent("a-form-item");
|
|
1860
1865
|
|
|
1861
1866
|
return vue.openBlock(), vue.createBlock(_component_a_form_item, {
|
|
1862
|
-
name:
|
|
1867
|
+
name: __props.name,
|
|
1863
1868
|
"label-col": __props.labelCol,
|
|
1864
1869
|
"wrapper-col": __props.wrapperCol,
|
|
1865
1870
|
rules: [{
|
|
@@ -1875,7 +1880,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1875
1880
|
)) : vue.createCommentVNode("v-if", true)];
|
|
1876
1881
|
}),
|
|
1877
1882
|
"default": vue.withCtx(function () {
|
|
1878
|
-
return [vue.createVNode(_component_a_select, {
|
|
1883
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
1879
1884
|
value: vue.unref(inputV),
|
|
1880
1885
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
1881
1886
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -1883,7 +1888,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1883
1888
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
1884
1889
|
return triggerNode.parentNode;
|
|
1885
1890
|
},
|
|
1886
|
-
style:
|
|
1891
|
+
style: __props.inputStyle,
|
|
1887
1892
|
placeholder: __props.placeholder,
|
|
1888
1893
|
options: dataV.value,
|
|
1889
1894
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -1894,8 +1899,8 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1894
1899
|
return _ctx.$emit('change', $event);
|
|
1895
1900
|
}),
|
|
1896
1901
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
1897
|
-
}, null,
|
|
1898
|
-
/*
|
|
1902
|
+
}), null, 16
|
|
1903
|
+
/* FULL_PROPS */
|
|
1899
1904
|
, ["value", "getPopupContainer", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
1900
1905
|
}),
|
|
1901
1906
|
_: 1
|
|
@@ -1903,7 +1908,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1903
1908
|
|
|
1904
1909
|
}, 8
|
|
1905
1910
|
/* PROPS */
|
|
1906
|
-
, ["label-col", "wrapper-col", "rules", "style", "colon"]);
|
|
1911
|
+
, ["name", "label-col", "wrapper-col", "rules", "style", "colon"]);
|
|
1907
1912
|
};
|
|
1908
1913
|
}
|
|
1909
1914
|
});
|
|
@@ -2095,7 +2100,7 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2095
2100
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2096
2101
|
}),
|
|
2097
2102
|
"default": vue.withCtx(function () {
|
|
2098
|
-
return [vue.createVNode(_component_a_select, {
|
|
2103
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2099
2104
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2100
2105
|
return triggerNode.parentNode;
|
|
2101
2106
|
},
|
|
@@ -2103,7 +2108,7 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2103
2108
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2104
2109
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
2105
2110
|
}),
|
|
2106
|
-
style:
|
|
2111
|
+
style: __props.inputStyle,
|
|
2107
2112
|
placeholder: __props.placeholder,
|
|
2108
2113
|
options: dataV.value,
|
|
2109
2114
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2114,8 +2119,8 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2114
2119
|
return _ctx.$emit('change', $event);
|
|
2115
2120
|
}),
|
|
2116
2121
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
2117
|
-
}, null,
|
|
2118
|
-
/*
|
|
2122
|
+
}), null, 16
|
|
2123
|
+
/* FULL_PROPS */
|
|
2119
2124
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
2120
2125
|
}),
|
|
2121
2126
|
_: 1
|
|
@@ -2319,7 +2324,7 @@ var script$i = /*#__PURE__*/vue.defineComponent({
|
|
|
2319
2324
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2320
2325
|
}),
|
|
2321
2326
|
"default": vue.withCtx(function () {
|
|
2322
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
2327
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
2323
2328
|
value: vue.unref(inputV),
|
|
2324
2329
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2325
2330
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2335,13 +2340,13 @@ var script$i = /*#__PURE__*/vue.defineComponent({
|
|
|
2335
2340
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
2336
2341
|
multiple: __props.multiple,
|
|
2337
2342
|
treeDefaultExpandAll: "",
|
|
2338
|
-
style:
|
|
2343
|
+
style: __props.inputStyle,
|
|
2339
2344
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
2340
2345
|
return _ctx.$emit('change', $event);
|
|
2341
2346
|
}),
|
|
2342
2347
|
replaceFields: __props.replaceFields
|
|
2343
|
-
}, null,
|
|
2344
|
-
/*
|
|
2348
|
+
}), null, 16
|
|
2349
|
+
/* FULL_PROPS */
|
|
2345
2350
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "filter-option", "multiple", "style", "replaceFields"])];
|
|
2346
2351
|
}),
|
|
2347
2352
|
_: 1
|
|
@@ -2536,7 +2541,7 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2536
2541
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2537
2542
|
}),
|
|
2538
2543
|
"default": vue.withCtx(function () {
|
|
2539
|
-
return [vue.createVNode(_component_a_select, {
|
|
2544
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2540
2545
|
value: vue.unref(inputV),
|
|
2541
2546
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2542
2547
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2545,7 +2550,7 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2545
2550
|
return triggerNode.parentNode;
|
|
2546
2551
|
},
|
|
2547
2552
|
allowClear: !__props.isRequired,
|
|
2548
|
-
style:
|
|
2553
|
+
style: __props.inputStyle,
|
|
2549
2554
|
placeholder: __props.placeholder,
|
|
2550
2555
|
showSearch: "",
|
|
2551
2556
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2556,8 +2561,8 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2556
2561
|
return _ctx.$emit('change', $event);
|
|
2557
2562
|
}),
|
|
2558
2563
|
fieldNames: __props.fieldNames
|
|
2559
|
-
}, null,
|
|
2560
|
-
/*
|
|
2564
|
+
}), null, 16
|
|
2565
|
+
/* FULL_PROPS */
|
|
2561
2566
|
, ["value", "getPopupContainer", "allowClear", "style", "placeholder", "mode", "options", "filter-option", "fieldNames"])];
|
|
2562
2567
|
}),
|
|
2563
2568
|
_: 1
|
|
@@ -2727,7 +2732,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2727
2732
|
var _component_a_form_item = vue.resolveComponent("a-form-item");
|
|
2728
2733
|
|
|
2729
2734
|
return vue.openBlock(), vue.createBlock(_component_a_form_item, {
|
|
2730
|
-
name:
|
|
2735
|
+
name: _ctx.managementSubjectId,
|
|
2731
2736
|
"label-col": __props.labelCol,
|
|
2732
2737
|
"wrapper-col": __props.wrapperCol,
|
|
2733
2738
|
rules: [{
|
|
@@ -2743,7 +2748,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2743
2748
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2744
2749
|
}),
|
|
2745
2750
|
"default": vue.withCtx(function () {
|
|
2746
|
-
return [vue.createVNode(_component_a_select, {
|
|
2751
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2747
2752
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2748
2753
|
return triggerNode.parentNode;
|
|
2749
2754
|
},
|
|
@@ -2751,7 +2756,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2751
2756
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2752
2757
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
2753
2758
|
}),
|
|
2754
|
-
style:
|
|
2759
|
+
style: __props.inputStyle,
|
|
2755
2760
|
placeholder: __props.placeholder,
|
|
2756
2761
|
options: dataV.value,
|
|
2757
2762
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2762,8 +2767,8 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2762
2767
|
return _ctx.$emit('change', $event);
|
|
2763
2768
|
}),
|
|
2764
2769
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
2765
|
-
}, null,
|
|
2766
|
-
/*
|
|
2770
|
+
}), null, 16
|
|
2771
|
+
/* FULL_PROPS */
|
|
2767
2772
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
2768
2773
|
}),
|
|
2769
2774
|
_: 1
|
|
@@ -2771,7 +2776,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2771
2776
|
|
|
2772
2777
|
}, 8
|
|
2773
2778
|
/* PROPS */
|
|
2774
|
-
, ["label-col", "wrapper-col", "rules", "style", "colon"]);
|
|
2779
|
+
, ["name", "label-col", "wrapper-col", "rules", "style", "colon"]);
|
|
2775
2780
|
};
|
|
2776
2781
|
}
|
|
2777
2782
|
});
|
|
@@ -2839,7 +2844,7 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2839
2844
|
return function (_ctx, _cache) {
|
|
2840
2845
|
var _component_a_select = vue.resolveComponent("a-select");
|
|
2841
2846
|
|
|
2842
|
-
return vue.openBlock(), vue.createBlock(_component_a_select, {
|
|
2847
|
+
return vue.openBlock(), vue.createBlock(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2843
2848
|
value: vue.unref(inputV),
|
|
2844
2849
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2845
2850
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2847,7 +2852,7 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2847
2852
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2848
2853
|
return triggerNode.parentNode;
|
|
2849
2854
|
},
|
|
2850
|
-
style:
|
|
2855
|
+
style: __props.inputStyle,
|
|
2851
2856
|
bordered: false,
|
|
2852
2857
|
options: dataV.value,
|
|
2853
2858
|
fieldNames: __props.fieldNames,
|
|
@@ -2855,8 +2860,8 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2855
2860
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
2856
2861
|
return _ctx.$emit('change', $event);
|
|
2857
2862
|
})
|
|
2858
|
-
}, null,
|
|
2859
|
-
/*
|
|
2863
|
+
}), null, 16
|
|
2864
|
+
/* FULL_PROPS */
|
|
2860
2865
|
, ["value", "getPopupContainer", "style", "options", "fieldNames", "filter-option"]);
|
|
2861
2866
|
};
|
|
2862
2867
|
}
|
|
@@ -2980,7 +2985,7 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
2980
2985
|
return function (_ctx, _cache) {
|
|
2981
2986
|
var _component_a_select = vue.resolveComponent("a-select");
|
|
2982
2987
|
|
|
2983
|
-
return vue.openBlock(), vue.createBlock(_component_a_select, {
|
|
2988
|
+
return vue.openBlock(), vue.createBlock(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2984
2989
|
value: vue.unref(inputV),
|
|
2985
2990
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2986
2991
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2988,7 +2993,7 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
2988
2993
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2989
2994
|
return triggerNode.parentNode;
|
|
2990
2995
|
},
|
|
2991
|
-
style:
|
|
2996
|
+
style: __props.inputStyle,
|
|
2992
2997
|
bordered: false,
|
|
2993
2998
|
options: dataV.value,
|
|
2994
2999
|
fieldNames: __props.fieldNames,
|
|
@@ -2996,8 +3001,8 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
2996
3001
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
2997
3002
|
return _ctx.$emit('change', $event);
|
|
2998
3003
|
})
|
|
2999
|
-
}, null,
|
|
3000
|
-
/*
|
|
3004
|
+
}), null, 16
|
|
3005
|
+
/* FULL_PROPS */
|
|
3001
3006
|
, ["value", "getPopupContainer", "style", "options", "fieldNames", "filter-option"]);
|
|
3002
3007
|
};
|
|
3003
3008
|
}
|
|
@@ -3188,7 +3193,7 @@ var script$d = /*#__PURE__*/vue.defineComponent({
|
|
|
3188
3193
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3189
3194
|
}),
|
|
3190
3195
|
"default": vue.withCtx(function () {
|
|
3191
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
3196
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
3192
3197
|
value: vue.unref(inputV),
|
|
3193
3198
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3194
3199
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -3208,13 +3213,13 @@ var script$d = /*#__PURE__*/vue.defineComponent({
|
|
|
3208
3213
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
3209
3214
|
multiple: __props.multiple,
|
|
3210
3215
|
treeDefaultExpandAll: "",
|
|
3211
|
-
style:
|
|
3216
|
+
style: __props.inputStyle,
|
|
3212
3217
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
3213
3218
|
return _ctx.$emit('change', $event);
|
|
3214
3219
|
}),
|
|
3215
3220
|
replaceFields: __props.replaceFields
|
|
3216
|
-
}, null,
|
|
3217
|
-
/*
|
|
3221
|
+
}), null, 16
|
|
3222
|
+
/* FULL_PROPS */
|
|
3218
3223
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "filter-option", "multiple", "style", "replaceFields"])];
|
|
3219
3224
|
}),
|
|
3220
3225
|
_: 1
|
|
@@ -3413,7 +3418,7 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3413
3418
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3414
3419
|
}),
|
|
3415
3420
|
"default": vue.withCtx(function () {
|
|
3416
|
-
return [vue.createVNode(_component_a_select, {
|
|
3421
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3417
3422
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3418
3423
|
return triggerNode.parentNode;
|
|
3419
3424
|
},
|
|
@@ -3421,7 +3426,7 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3421
3426
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3422
3427
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3423
3428
|
}),
|
|
3424
|
-
style:
|
|
3429
|
+
style: __props.inputStyle,
|
|
3425
3430
|
placeholder: __props.placeholder,
|
|
3426
3431
|
options: dataV.value,
|
|
3427
3432
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3432,8 +3437,8 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3432
3437
|
return _ctx.$emit('change', $event);
|
|
3433
3438
|
}),
|
|
3434
3439
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3435
|
-
}, null,
|
|
3436
|
-
/*
|
|
3440
|
+
}), null, 16
|
|
3441
|
+
/* FULL_PROPS */
|
|
3437
3442
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
3438
3443
|
}),
|
|
3439
3444
|
_: 1
|
|
@@ -3636,7 +3641,7 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3636
3641
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3637
3642
|
}),
|
|
3638
3643
|
"default": vue.withCtx(function () {
|
|
3639
|
-
return [vue.createVNode(_component_a_select, {
|
|
3644
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3640
3645
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3641
3646
|
return triggerNode.parentNode;
|
|
3642
3647
|
},
|
|
@@ -3644,7 +3649,7 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3644
3649
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3645
3650
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3646
3651
|
}),
|
|
3647
|
-
style:
|
|
3652
|
+
style: __props.inputStyle,
|
|
3648
3653
|
placeholder: __props.placeholder,
|
|
3649
3654
|
options: dataV.value,
|
|
3650
3655
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3655,8 +3660,8 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3655
3660
|
return _ctx.$emit('change', $event);
|
|
3656
3661
|
}),
|
|
3657
3662
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3658
|
-
}, null,
|
|
3659
|
-
/*
|
|
3663
|
+
}), null, 16
|
|
3664
|
+
/* FULL_PROPS */
|
|
3660
3665
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"]), _hoisted_2$7];
|
|
3661
3666
|
}),
|
|
3662
3667
|
_: 1
|
|
@@ -3855,7 +3860,7 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3855
3860
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3856
3861
|
}),
|
|
3857
3862
|
"default": vue.withCtx(function () {
|
|
3858
|
-
return [vue.createVNode(_component_a_select, {
|
|
3863
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3859
3864
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3860
3865
|
return triggerNode.parentNode;
|
|
3861
3866
|
},
|
|
@@ -3863,7 +3868,7 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3863
3868
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3864
3869
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3865
3870
|
}),
|
|
3866
|
-
style:
|
|
3871
|
+
style: __props.inputStyle,
|
|
3867
3872
|
placeholder: __props.placeholder,
|
|
3868
3873
|
options: dataV.value,
|
|
3869
3874
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3874,8 +3879,8 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3874
3879
|
return _ctx.$emit('change', $event);
|
|
3875
3880
|
}),
|
|
3876
3881
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3877
|
-
}, null,
|
|
3878
|
-
/*
|
|
3882
|
+
}), null, 16
|
|
3883
|
+
/* FULL_PROPS */
|
|
3879
3884
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
3880
3885
|
}),
|
|
3881
3886
|
_: 1
|
|
@@ -4074,7 +4079,7 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4074
4079
|
)) : vue.createCommentVNode("v-if", true)];
|
|
4075
4080
|
}),
|
|
4076
4081
|
"default": vue.withCtx(function () {
|
|
4077
|
-
return [vue.createVNode(_component_a_select, {
|
|
4082
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
4078
4083
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
4079
4084
|
return triggerNode.parentNode;
|
|
4080
4085
|
},
|
|
@@ -4082,7 +4087,7 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4082
4087
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
4083
4088
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
4084
4089
|
}),
|
|
4085
|
-
style:
|
|
4090
|
+
style: __props.inputStyle,
|
|
4086
4091
|
placeholder: __props.placeholder,
|
|
4087
4092
|
options: dataV.value,
|
|
4088
4093
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -4093,8 +4098,8 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4093
4098
|
return _ctx.$emit('change', $event);
|
|
4094
4099
|
}),
|
|
4095
4100
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
4096
|
-
}, null,
|
|
4097
|
-
/*
|
|
4101
|
+
}), null, 16
|
|
4102
|
+
/* FULL_PROPS */
|
|
4098
4103
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
4099
4104
|
}),
|
|
4100
4105
|
_: 1
|
|
@@ -6027,7 +6032,7 @@ var script$2 = /*#__PURE__*/vue.defineComponent({
|
|
|
6027
6032
|
"margin-right": "15px"
|
|
6028
6033
|
},
|
|
6029
6034
|
"class": "mr-4",
|
|
6030
|
-
placeholder: "
|
|
6035
|
+
placeholder: "请输入员工姓名",
|
|
6031
6036
|
onKeyup: vue.withKeys(onSearch, ["enter"])
|
|
6032
6037
|
}, null, 8
|
|
6033
6038
|
/* PROPS */
|
|
@@ -6621,7 +6626,7 @@ var script$1 = /*#__PURE__*/vue.defineComponent({
|
|
|
6621
6626
|
"margin-right": "15px"
|
|
6622
6627
|
},
|
|
6623
6628
|
"class": "mr-4",
|
|
6624
|
-
placeholder: "
|
|
6629
|
+
placeholder: "请输入供应商名称",
|
|
6625
6630
|
onKeyup: vue.withKeys(onSearch, ["enter"])
|
|
6626
6631
|
}, null, 8
|
|
6627
6632
|
/* PROPS */
|