iv-npm 1.1.20 → 1.1.23
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/ui/dist/business-ui/component/IVMrpLineDropdown.d.ts +36 -0
- package/packages/ui/dist/business-ui/component/IVMrpOrgDropdown.d.ts +36 -0
- package/packages/ui/dist/business-ui/component/IVMrpPostDropdown.d.ts +36 -0
- package/packages/ui/dist/business-ui/component/IVMrpProdBaseDropdown.d.ts +11 -0
- package/packages/ui/dist/function-ui/component/IVMrpTable.d.ts +11 -0
- package/packages/ui/dist/index.cjs.css +82 -21
- package/packages/ui/dist/index.cjs.js +129 -48
- package/packages/ui/dist/index.esm.css +82 -21
- package/packages/ui/dist/index.esm.js +130 -49
- package/packages/ui/dist/index.umd.css +82 -21
- package/packages/ui/dist/index.umd.js +129 -48
- package/packages/ui/dist/index.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -22,6 +22,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
value: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
inputStyle: {
|
|
26
|
+
type: ObjectConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
default: () => {
|
|
29
|
+
width: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
isRequired: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
required: true;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
multiple: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
required: false;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
25
42
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
43
|
[key: string]: any;
|
|
27
44
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -45,10 +62,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
62
|
value: string;
|
|
46
63
|
};
|
|
47
64
|
};
|
|
65
|
+
inputStyle: {
|
|
66
|
+
type: ObjectConstructor;
|
|
67
|
+
required: true;
|
|
68
|
+
default: () => {
|
|
69
|
+
width: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
isRequired: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
required: true;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
multiple: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
required: false;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
48
82
|
}>> & {
|
|
49
83
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
84
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
85
|
}, {
|
|
52
86
|
fieldNames: any;
|
|
87
|
+
inputStyle: Record<string, any>;
|
|
88
|
+
multiple: boolean;
|
|
53
89
|
}>;
|
|
54
90
|
export default _default;
|
|
@@ -24,6 +24,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
value: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
+
inputStyle: {
|
|
28
|
+
type: ObjectConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
default: () => {
|
|
31
|
+
width: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
isRequired: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
required: true;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
multiple: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
27
44
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
28
45
|
[key: string]: any;
|
|
29
46
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -49,10 +66,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
66
|
value: string;
|
|
50
67
|
};
|
|
51
68
|
};
|
|
69
|
+
inputStyle: {
|
|
70
|
+
type: ObjectConstructor;
|
|
71
|
+
required: true;
|
|
72
|
+
default: () => {
|
|
73
|
+
width: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
isRequired: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
required: true;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
multiple: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
required: false;
|
|
84
|
+
default: boolean;
|
|
85
|
+
};
|
|
52
86
|
}>> & {
|
|
53
87
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
54
88
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
55
89
|
}, {
|
|
56
90
|
replaceFields: any;
|
|
91
|
+
inputStyle: Record<string, any>;
|
|
92
|
+
multiple: boolean;
|
|
57
93
|
}>;
|
|
58
94
|
export default _default;
|
|
@@ -22,6 +22,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
value: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
inputStyle: {
|
|
26
|
+
type: ObjectConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
default: () => {
|
|
29
|
+
width: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
isRequired: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
required: true;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
multiple: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
required: false;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
25
42
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
43
|
[key: string]: any;
|
|
27
44
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -45,10 +62,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
62
|
value: string;
|
|
46
63
|
};
|
|
47
64
|
};
|
|
65
|
+
inputStyle: {
|
|
66
|
+
type: ObjectConstructor;
|
|
67
|
+
required: true;
|
|
68
|
+
default: () => {
|
|
69
|
+
width: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
isRequired: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
required: true;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
multiple: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
required: false;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
48
82
|
}>> & {
|
|
49
83
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
84
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
85
|
}, {
|
|
52
86
|
fieldNames: any;
|
|
87
|
+
inputStyle: Record<string, any>;
|
|
88
|
+
multiple: boolean;
|
|
53
89
|
}>;
|
|
54
90
|
export default _default;
|
|
@@ -22,6 +22,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
value: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
multiple: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
25
30
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
31
|
[key: string]: any;
|
|
27
32
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -45,10 +50,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
50
|
value: string;
|
|
46
51
|
};
|
|
47
52
|
};
|
|
53
|
+
multiple: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
48
58
|
}>> & {
|
|
49
59
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
60
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
61
|
}, {
|
|
52
62
|
fieldNames: any;
|
|
63
|
+
multiple: boolean;
|
|
53
64
|
}>;
|
|
54
65
|
export default _default;
|
|
@@ -27,6 +27,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
type: NumberConstructor;
|
|
28
28
|
required: false;
|
|
29
29
|
};
|
|
30
|
+
isTableControl: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
30
35
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
31
36
|
[key: string]: any;
|
|
32
37
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onPageChange" | "onShowSizeChange" | "upth")[], "onPageChange" | "onShowSizeChange" | "upth", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -58,11 +63,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
63
|
type: NumberConstructor;
|
|
59
64
|
required: false;
|
|
60
65
|
};
|
|
66
|
+
isTableControl: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
required: false;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
61
71
|
}>> & {
|
|
62
72
|
onOnPageChange?: ((...args: any[]) => any) | undefined;
|
|
63
73
|
onOnShowSizeChange?: ((...args: any[]) => any) | undefined;
|
|
64
74
|
onUpth?: ((...args: any[]) => any) | undefined;
|
|
65
75
|
}, {
|
|
66
76
|
col: boolean;
|
|
77
|
+
isTableControl: boolean;
|
|
67
78
|
}>;
|
|
68
79
|
export default _default;
|
|
@@ -1,25 +1,21 @@
|
|
|
1
|
-
.active[data-v-2dfcb17e] {
|
|
1
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .active[data-v-2dfcb17e] {
|
|
2
2
|
background-color: #bd9e55;
|
|
3
3
|
font-size: 13px;
|
|
4
4
|
color: white;
|
|
5
5
|
}
|
|
6
|
-
|
|
7
|
-
[data-v-2dfcb17e] .ant-btn-primary {
|
|
6
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] [data-v-2dfcb17e] .ant-btn-primary {
|
|
8
7
|
background: #006ab2;
|
|
9
8
|
}
|
|
10
|
-
|
|
11
|
-
[data-v-2dfcb17e] .ant-image {
|
|
9
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] [data-v-2dfcb17e] .ant-image {
|
|
12
10
|
margin: 0 2px;
|
|
13
11
|
}
|
|
14
|
-
|
|
15
|
-
.center-center[data-v-2dfcb17e] {
|
|
12
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .center-center[data-v-2dfcb17e] {
|
|
16
13
|
position: absolute;
|
|
17
14
|
top: 50%;
|
|
18
15
|
left: 50%;
|
|
19
16
|
transform: translate(-50%, -50%);
|
|
20
17
|
}
|
|
21
|
-
|
|
22
|
-
.table-cell[data-v-2dfcb17e] {
|
|
18
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .table-cell[data-v-2dfcb17e] {
|
|
23
19
|
height: 60px;
|
|
24
20
|
border: 1px solid #d9d9d9;
|
|
25
21
|
padding: 5px;
|
|
@@ -29,15 +25,14 @@
|
|
|
29
25
|
font-weight: 400;
|
|
30
26
|
text-align: center;
|
|
31
27
|
}
|
|
32
|
-
|
|
33
|
-
.table-footer[data-v-2dfcb17e] {
|
|
28
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .table-footer[data-v-2dfcb17e] {
|
|
34
29
|
position: relative;
|
|
35
30
|
display: table-footer-group;
|
|
36
31
|
width: 100%;
|
|
37
32
|
height: 200px;
|
|
38
33
|
border: 1px solid #d9d9d9;
|
|
39
34
|
}
|
|
40
|
-
.table-footer[data-v-2dfcb17e] .centent[data-v-2dfcb17e] {
|
|
35
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .table-footer[data-v-2dfcb17e] .centent[data-v-2dfcb17e] {
|
|
41
36
|
position: absolute;
|
|
42
37
|
top: 50%;
|
|
43
38
|
left: 50%;
|
|
@@ -46,26 +41,22 @@
|
|
|
46
41
|
text-align: center;
|
|
47
42
|
color: rgba(0, 0, 0, 0.25);
|
|
48
43
|
}
|
|
49
|
-
|
|
50
|
-
table[data-v-2dfcb17e] {
|
|
44
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] table[data-v-2dfcb17e] {
|
|
51
45
|
border-collapse: collapse;
|
|
52
46
|
}
|
|
53
|
-
|
|
54
|
-
#top[data-v-2dfcb17e] {
|
|
47
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] #top[data-v-2dfcb17e] {
|
|
55
48
|
position: fixed;
|
|
56
49
|
top: 65px;
|
|
57
50
|
z-index: 999;
|
|
58
51
|
}
|
|
59
|
-
|
|
60
|
-
.pagination[data-v-2dfcb17e] {
|
|
52
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .pagination[data-v-2dfcb17e] {
|
|
61
53
|
position: fixed;
|
|
62
54
|
bottom: -80px;
|
|
63
55
|
z-index: 999;
|
|
64
56
|
height: 45px;
|
|
65
57
|
background-color: #fff;
|
|
66
58
|
}
|
|
67
|
-
|
|
68
|
-
.mrpTable[data-v-2dfcb17e] {
|
|
59
|
+
body[data-v-2dfcb17e] .iv-mrp-table[data-v-2dfcb17e] .mrpTable[data-v-2dfcb17e] {
|
|
69
60
|
position: relative;
|
|
70
61
|
margin-bottom: 80px;
|
|
71
62
|
}
|
|
@@ -200,4 +191,74 @@ body .detail-class {
|
|
|
200
191
|
.ant-modal-content
|
|
201
192
|
.ant-modal-body::-webkit-scrollbar-thumb:hover {
|
|
202
193
|
background: #c0a0b9;
|
|
203
|
-
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* 表格 */
|
|
197
|
+
|
|
198
|
+
.active {
|
|
199
|
+
background-color: #bd9e55;
|
|
200
|
+
font-size: 13px;
|
|
201
|
+
color: white;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
:deep(.ant-btn-primary) {
|
|
205
|
+
background: #006ab2;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
:deep(.ant-image) {
|
|
209
|
+
margin: 0 2px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.center-center {
|
|
213
|
+
position: absolute;
|
|
214
|
+
top: 50%;
|
|
215
|
+
left: 50%;
|
|
216
|
+
transform: translate(-50%, -50%);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.table-cell {
|
|
220
|
+
height: 60px;
|
|
221
|
+
border: 1px solid #d9d9d9;
|
|
222
|
+
padding: 5px;
|
|
223
|
+
word-break: break-all;
|
|
224
|
+
color: #333;
|
|
225
|
+
font-size: 13px;
|
|
226
|
+
font-weight: 400;
|
|
227
|
+
text-align: center;
|
|
228
|
+
}
|
|
229
|
+
.table-footer {
|
|
230
|
+
position: relative;
|
|
231
|
+
display: table-footer-group;
|
|
232
|
+
width: 100%;
|
|
233
|
+
height: 200px;
|
|
234
|
+
border: 1px solid #d9d9d9;
|
|
235
|
+
|
|
236
|
+
}
|
|
237
|
+
.table-footer .centent {
|
|
238
|
+
position: absolute;
|
|
239
|
+
top: 50%;
|
|
240
|
+
left: 50%;
|
|
241
|
+
transform: translate(-50%, -50%);
|
|
242
|
+
font-size: 14px;
|
|
243
|
+
text-align: center;
|
|
244
|
+
color: rgba(0, 0, 0, 0.25);
|
|
245
|
+
}
|
|
246
|
+
table {
|
|
247
|
+
border-collapse: collapse;
|
|
248
|
+
}
|
|
249
|
+
#top {
|
|
250
|
+
position: fixed;
|
|
251
|
+
top: 65px;
|
|
252
|
+
z-index: 999;
|
|
253
|
+
}
|
|
254
|
+
.pagination {
|
|
255
|
+
position: fixed;
|
|
256
|
+
bottom: -80px;
|
|
257
|
+
z-index: 999;
|
|
258
|
+
height: 45px;
|
|
259
|
+
background-color: #fff;
|
|
260
|
+
}
|
|
261
|
+
.mrpTable {
|
|
262
|
+
position: relative;
|
|
263
|
+
margin-bottom: 80px;
|
|
264
|
+
}
|