iv-npm 1.1.7 → 1.1.10
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/dist/utils/index.d.ts +3 -1
- package/packages/shared/dist/utils/index.mjs +6 -0
- package/packages/ui/README.md +41 -1
- package/packages/ui/dist/api/api.config.d.ts +9 -1
- package/packages/ui/dist/business-ui/component/IVMrpLineDropdown.d.ts +4 -3
- package/packages/ui/dist/business-ui/component/IVMrpOrgDropdown.d.ts +4 -3
- package/packages/ui/dist/business-ui/component/IVMrpPostDropdown.d.ts +54 -0
- package/packages/ui/dist/business-ui/component/IVMrpProdBaseDropdown.d.ts +4 -3
- package/packages/ui/dist/business-ui/component/IVMrpSetofbookDropdown.d.ts +4 -3
- package/packages/ui/dist/business-ui/index.d.ts +2 -1
- package/packages/ui/dist/function-ui/component/IVMrpTable.d.ts +68 -0
- package/packages/ui/dist/function-ui/component/IVMrpTableControl.d.ts +17 -0
- package/packages/ui/dist/function-ui/index.d.ts +3 -1
- package/packages/ui/dist/index.cjs.css +95 -0
- package/packages/ui/dist/index.cjs.js +930 -55
- package/packages/ui/dist/index.d.ts +3 -3
- package/packages/ui/dist/index.esm.css +95 -0
- package/packages/ui/dist/index.esm.js +924 -52
- package/packages/ui/dist/index.umd.css +95 -0
- package/packages/ui/dist/index.umd.js +930 -55
- package/packages/ui/dist/index.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -34,4 +34,6 @@ declare const assign: {
|
|
|
34
34
|
(target: object, ...sources: any[]): any;
|
|
35
35
|
};
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
declare function filterOptionHeadle(input: string, option: any): any;
|
|
38
|
+
|
|
39
|
+
export { arrToTree, assign, filterOptionHeadle, findTree, isObject, isPlainObject, tranListToTreeData };
|
|
@@ -62,9 +62,15 @@ var isObject = (val) => val !== null && typeof val === "object";
|
|
|
62
62
|
|
|
63
63
|
// utils/obj/cache.ts
|
|
64
64
|
var assign = Object.assign;
|
|
65
|
+
|
|
66
|
+
// utils/input/index.ts
|
|
67
|
+
function filterOptionHeadle(input, option) {
|
|
68
|
+
return option.label && option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
69
|
+
}
|
|
65
70
|
export {
|
|
66
71
|
arrToTree,
|
|
67
72
|
assign,
|
|
73
|
+
filterOptionHeadle,
|
|
68
74
|
findTree,
|
|
69
75
|
isObject,
|
|
70
76
|
isPlainObject,
|
package/packages/ui/README.md
CHANGED
|
@@ -148,4 +148,44 @@ app.use(ivUi)
|
|
|
148
148
|
|
|
149
149
|
| props |
|
|
150
150
|
| -------- |
|
|
151
|
-
| 参考生产基地下拉 |
|
|
151
|
+
| 参考生产基地下拉 |
|
|
152
|
+
|
|
153
|
+
## 账套下拉
|
|
154
|
+
|
|
155
|
+
> <IVMrpSetofbookDropdown/>
|
|
156
|
+
|
|
157
|
+
- 组件API
|
|
158
|
+
|
|
159
|
+
```js
|
|
160
|
+
{
|
|
161
|
+
method: "GET",
|
|
162
|
+
url:'/api/basis-management/setOfBook/all',
|
|
163
|
+
}
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
- 示例
|
|
170
|
+
|
|
171
|
+
```vue
|
|
172
|
+
<template>
|
|
173
|
+
<IVMrpSetofbookDropdown
|
|
174
|
+
v-model:value="Detail.lineIds"
|
|
175
|
+
:params="{type:1}"
|
|
176
|
+
:data="{name:123}"
|
|
177
|
+
:fieldNames="{
|
|
178
|
+
label: "displayName",
|
|
179
|
+
value: "id",
|
|
180
|
+
}"
|
|
181
|
+
/>
|
|
182
|
+
</template>
|
|
183
|
+
<script setup lang="ts">
|
|
184
|
+
import { IVMrpSetofbookDropdown } from "iv-npm/packages/ui";
|
|
185
|
+
</script>
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
| props | describe | type |
|
|
189
|
+
| ------------ | -------- | ------------------- |
|
|
190
|
+
| multiple | 是否多选 | Boolean,defind:true |
|
|
191
|
+
| 其余参考参考生产基地下拉 | | |
|
|
@@ -16,7 +16,15 @@ declare const API_OPTION: {
|
|
|
16
16
|
url: string;
|
|
17
17
|
option: any;
|
|
18
18
|
};
|
|
19
|
+
getIVMrpPostDropdown: {
|
|
20
|
+
url: string;
|
|
21
|
+
option: any;
|
|
22
|
+
};
|
|
23
|
+
getIVMrpUserSelector: {
|
|
24
|
+
url: string;
|
|
25
|
+
option: any;
|
|
26
|
+
};
|
|
19
27
|
};
|
|
20
28
|
export declare const formatHTTP: (fetch: any) => Promise<any>;
|
|
21
|
-
export declare const formatUrl: (base: string, api: string, params
|
|
29
|
+
export declare const formatUrl: (base: string, api: string, params?: object) => string;
|
|
22
30
|
export { BASE_URL, API_OPTION };
|
|
@@ -17,14 +17,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
fieldNames: {
|
|
18
18
|
type: null;
|
|
19
19
|
required: false;
|
|
20
|
-
default: {
|
|
20
|
+
default: () => {
|
|
21
21
|
label: string;
|
|
22
22
|
value: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
26
|
[key: string]: any;
|
|
27
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
}>, 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<{
|
|
28
28
|
value: {
|
|
29
29
|
type: null;
|
|
30
30
|
required: true;
|
|
@@ -40,13 +40,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
fieldNames: {
|
|
41
41
|
type: null;
|
|
42
42
|
required: false;
|
|
43
|
-
default: {
|
|
43
|
+
default: () => {
|
|
44
44
|
label: string;
|
|
45
45
|
value: string;
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
}>> & {
|
|
49
49
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
50
51
|
}, {
|
|
51
52
|
fieldNames: any;
|
|
52
53
|
}>;
|
|
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
replaceFields: {
|
|
18
18
|
type: null;
|
|
19
19
|
required: false;
|
|
20
|
-
default: {
|
|
20
|
+
default: () => {
|
|
21
21
|
children: string;
|
|
22
22
|
label: string;
|
|
23
23
|
key: string;
|
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
};
|
|
27
27
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
28
28
|
[key: string]: any;
|
|
29
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
}>, 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<{
|
|
30
30
|
value: {
|
|
31
31
|
type: null;
|
|
32
32
|
required: true;
|
|
@@ -42,7 +42,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
42
|
replaceFields: {
|
|
43
43
|
type: null;
|
|
44
44
|
required: false;
|
|
45
|
-
default: {
|
|
45
|
+
default: () => {
|
|
46
46
|
children: string;
|
|
47
47
|
label: string;
|
|
48
48
|
key: string;
|
|
@@ -51,6 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
};
|
|
52
52
|
}>> & {
|
|
53
53
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
54
55
|
}, {
|
|
55
56
|
replaceFields: any;
|
|
56
57
|
}>;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 组件定义-------------------------------------
|
|
3
|
+
* */
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
value: {
|
|
6
|
+
type: null;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
params: {
|
|
10
|
+
type: ObjectConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
};
|
|
13
|
+
data: {
|
|
14
|
+
type: ObjectConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
17
|
+
fieldNames: {
|
|
18
|
+
type: null;
|
|
19
|
+
required: false;
|
|
20
|
+
default: () => {
|
|
21
|
+
label: string;
|
|
22
|
+
value: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}>, 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<{
|
|
28
|
+
value: {
|
|
29
|
+
type: null;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
params: {
|
|
33
|
+
type: ObjectConstructor;
|
|
34
|
+
required: false;
|
|
35
|
+
};
|
|
36
|
+
data: {
|
|
37
|
+
type: ObjectConstructor;
|
|
38
|
+
required: false;
|
|
39
|
+
};
|
|
40
|
+
fieldNames: {
|
|
41
|
+
type: null;
|
|
42
|
+
required: false;
|
|
43
|
+
default: () => {
|
|
44
|
+
label: string;
|
|
45
|
+
value: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}>> & {
|
|
49
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
|
+
}, {
|
|
52
|
+
fieldNames: any;
|
|
53
|
+
}>;
|
|
54
|
+
export default _default;
|
|
@@ -17,14 +17,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
fieldNames: {
|
|
18
18
|
type: null;
|
|
19
19
|
required: false;
|
|
20
|
-
default: {
|
|
20
|
+
default: () => {
|
|
21
21
|
label: string;
|
|
22
22
|
value: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
26
|
[key: string]: any;
|
|
27
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
}>, 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<{
|
|
28
28
|
value: {
|
|
29
29
|
type: null;
|
|
30
30
|
required: true;
|
|
@@ -40,13 +40,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
fieldNames: {
|
|
41
41
|
type: null;
|
|
42
42
|
required: false;
|
|
43
|
-
default: {
|
|
43
|
+
default: () => {
|
|
44
44
|
label: string;
|
|
45
45
|
value: string;
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
}>> & {
|
|
49
49
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
50
51
|
}, {
|
|
51
52
|
fieldNames: any;
|
|
52
53
|
}>;
|
|
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
replaceFields: {
|
|
18
18
|
type: null;
|
|
19
19
|
required: false;
|
|
20
|
-
default: {
|
|
20
|
+
default: () => {
|
|
21
21
|
children: string;
|
|
22
22
|
label: string;
|
|
23
23
|
key: string;
|
|
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
};
|
|
32
32
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
33
33
|
[key: string]: any;
|
|
34
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
}>, 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<{
|
|
35
35
|
value: {
|
|
36
36
|
type: null;
|
|
37
37
|
required: true;
|
|
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
replaceFields: {
|
|
48
48
|
type: null;
|
|
49
49
|
required: false;
|
|
50
|
-
default: {
|
|
50
|
+
default: () => {
|
|
51
51
|
children: string;
|
|
52
52
|
label: string;
|
|
53
53
|
key: string;
|
|
@@ -61,6 +61,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
};
|
|
62
62
|
}>> & {
|
|
63
63
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
64
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
64
65
|
}, {
|
|
65
66
|
replaceFields: any;
|
|
66
67
|
multiple: boolean;
|
|
@@ -2,4 +2,5 @@ import IVMrpOrgDropdown from "./component/IVMrpOrgDropdown.vue";
|
|
|
2
2
|
import IVMrpProdBaseDropdown from "./component/IVMrpProdBaseDropdown.vue";
|
|
3
3
|
import IVMrpLineDropdown from "./component/IVMrpLineDropdown.vue";
|
|
4
4
|
import IVMrpSetofbookDropdown from "./component/IVMrpSetofbookDropdown.vue";
|
|
5
|
-
|
|
5
|
+
import IVMrpPostDropdown from "./component/IVMrpPostDropdown.vue";
|
|
6
|
+
export { IVMrpOrgDropdown, IVMrpProdBaseDropdown, IVMrpLineDropdown, IVMrpSetofbookDropdown, IVMrpPostDropdown, };
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type: null;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
contractExecDocList: {
|
|
7
|
+
type: ArrayConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
currentPages: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
totalPages: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
formData: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
col: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
};
|
|
26
|
+
setHeight: {
|
|
27
|
+
type: NumberConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
};
|
|
30
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}>, 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<{
|
|
33
|
+
data: {
|
|
34
|
+
type: null;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
contractExecDocList: {
|
|
38
|
+
type: ArrayConstructor;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
currentPages: {
|
|
42
|
+
type: NumberConstructor;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
totalPages: {
|
|
46
|
+
type: NumberConstructor;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
formData: {
|
|
50
|
+
type: ObjectConstructor;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
53
|
+
col: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
};
|
|
57
|
+
setHeight: {
|
|
58
|
+
type: NumberConstructor;
|
|
59
|
+
required: false;
|
|
60
|
+
};
|
|
61
|
+
}>> & {
|
|
62
|
+
onOnPageChange?: ((...args: any[]) => any) | undefined;
|
|
63
|
+
onOnShowSizeChange?: ((...args: any[]) => any) | undefined;
|
|
64
|
+
onUpth?: ((...args: any[]) => any) | undefined;
|
|
65
|
+
}, {
|
|
66
|
+
col: boolean;
|
|
67
|
+
}>;
|
|
68
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
setHeight: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("density" | "ChangeS")[], "density" | "ChangeS", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
setHeight: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
};
|
|
13
|
+
}>> & {
|
|
14
|
+
onChangeS?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
onDensity?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
@@ -1,3 +1,98 @@
|
|
|
1
|
+
.active[data-v-2dfcb17e] {
|
|
2
|
+
background-color: #bd9e55;
|
|
3
|
+
font-size: 13px;
|
|
4
|
+
color: white;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
[data-v-2dfcb17e] .ant-btn-primary {
|
|
8
|
+
background: #006ab2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
[data-v-2dfcb17e] .ant-image {
|
|
12
|
+
margin: 0 2px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.center-center[data-v-2dfcb17e] {
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 50%;
|
|
18
|
+
left: 50%;
|
|
19
|
+
transform: translate(-50%, -50%);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.table-cell[data-v-2dfcb17e] {
|
|
23
|
+
height: 60px;
|
|
24
|
+
border: 1px solid #d9d9d9;
|
|
25
|
+
padding: 5px;
|
|
26
|
+
word-break: break-all;
|
|
27
|
+
color: #333;
|
|
28
|
+
font-size: 13px;
|
|
29
|
+
font-weight: 400;
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.table-footer[data-v-2dfcb17e] {
|
|
34
|
+
position: relative;
|
|
35
|
+
display: table-footer-group;
|
|
36
|
+
width: 100%;
|
|
37
|
+
height: 200px;
|
|
38
|
+
border: 1px solid #d9d9d9;
|
|
39
|
+
}
|
|
40
|
+
.table-footer[data-v-2dfcb17e] .centent[data-v-2dfcb17e] {
|
|
41
|
+
position: absolute;
|
|
42
|
+
top: 50%;
|
|
43
|
+
left: 50%;
|
|
44
|
+
transform: translate(-50%, -50%);
|
|
45
|
+
font-size: 14px;
|
|
46
|
+
text-align: center;
|
|
47
|
+
color: rgba(0, 0, 0, 0.25);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
table[data-v-2dfcb17e] {
|
|
51
|
+
border-collapse: collapse;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#top[data-v-2dfcb17e] {
|
|
55
|
+
position: fixed;
|
|
56
|
+
top: 65px;
|
|
57
|
+
z-index: 999;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.pagination[data-v-2dfcb17e] {
|
|
61
|
+
position: fixed;
|
|
62
|
+
bottom: -80px;
|
|
63
|
+
z-index: 999;
|
|
64
|
+
height: 45px;
|
|
65
|
+
background-color: #fff;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.mrpTable[data-v-2dfcb17e] {
|
|
69
|
+
position: relative;
|
|
70
|
+
margin-bottom: 80px;
|
|
71
|
+
}
|
|
72
|
+
.tableControl[data-v-4b5cf48c] {
|
|
73
|
+
position: absolute;
|
|
74
|
+
right: 0;
|
|
75
|
+
top: -42px;
|
|
76
|
+
color: #006ab2;
|
|
77
|
+
}
|
|
78
|
+
.tableControl[data-v-4b5cf48c] .setting[data-v-4b5cf48c] {
|
|
79
|
+
margin-top: 10px;
|
|
80
|
+
}
|
|
81
|
+
.tableControl[data-v-4b5cf48c] [data-v-4b5cf48c] .ant-popover-inner-content {
|
|
82
|
+
padding: 10px;
|
|
83
|
+
}
|
|
84
|
+
.tableControl[data-v-4b5cf48c] [data-v-4b5cf48c] .ant-menu-vertical {
|
|
85
|
+
border: none;
|
|
86
|
+
}
|
|
87
|
+
.tableControl[data-v-4b5cf48c] [data-v-4b5cf48c] .ant-divider-horizontal {
|
|
88
|
+
margin: 2px;
|
|
89
|
+
}
|
|
90
|
+
.tableControl[data-v-4b5cf48c] [data-v-4b5cf48c] .ant-checkbox-group-item {
|
|
91
|
+
display: flex;
|
|
92
|
+
}
|
|
93
|
+
.tableControl[data-v-4b5cf48c] .anticon[data-v-4b5cf48c] {
|
|
94
|
+
margin-right: 6px;
|
|
95
|
+
}
|
|
1
96
|
/* 模态框 */
|
|
2
97
|
body .detail-class {
|
|
3
98
|
top: -50px;
|