iv-npm 1.7.35 → 1.7.36
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.mjs +9 -0
- package/packages/ui/dist/business-ui/component/IVContractAndProjectSelector.d.ts +43 -0
- package/packages/ui/dist/business-ui/component/IVContractSelector.d.ts +6 -6
- package/packages/ui/dist/business-ui/component/IVProdBaseDropdown.d.ts +11 -0
- package/packages/ui/dist/index.cjs.js +4 -4
- package/packages/ui/dist/index.cjs.js.map +1 -1
- package/packages/ui/dist/index.esm.js +6 -6
- package/packages/ui/dist/index.esm.js.map +1 -1
- package/packages/ui/dist/index.umd.js +5 -5
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +77 -77
- package/pnpm-lock.yaml +6099 -6099
- package/packages/ui/dist/ui/src/business-ui/component/IVAdjustAmount.d.ts +0 -177
- package/packages/ui/dist/ui/src/business-ui/component/IVApproval.d.ts +0 -25
- package/packages/ui/dist/ui/src/business-ui/component/IVLineDropdown.d.ts +0 -155
- package/packages/ui/dist/ui/src/business-ui/component/IVManagDropdown.d.ts +0 -152
- package/packages/ui/dist/ui/src/business-ui/component/IVPostDropdown.d.ts +0 -148
- package/packages/ui/dist/ui/src/business-ui/component/IVProdBaseDropdown.d.ts +0 -176
- package/packages/ui/dist/ui/src/business-ui/component/IVSetofbookDropdown.d.ts +0 -186
- package/packages/ui/dist/ui/src/function-ui/component/IVTableControl.d.ts +0 -17
- /package/packages/ui/dist/{ui/src/business-ui → business-ui}/component/IVProjectTree.d.ts +0 -0
package/package.json
CHANGED
|
@@ -202,6 +202,15 @@ function apiConfiger(config) {
|
|
|
202
202
|
if (config.requestBase == "CCFLOW_URL") {
|
|
203
203
|
config.baseURL = process.env.NODE_ENV == "development" ? "/ccflow" : `${protocol}//ccflow.${hostname[1]}.${hostname[2]}`;
|
|
204
204
|
}
|
|
205
|
+
if (config.requestBase == "APS_URL") {
|
|
206
|
+
config.baseURL = process.env.NODE_ENV == "development" ? "/aps" : `${protocol}//aps.${hostname[1]}.${hostname[2]}`;
|
|
207
|
+
}
|
|
208
|
+
if (config.requestBase == "PES_URL") {
|
|
209
|
+
config.baseURL = process.env.NODE_ENV == "development" ? "/pes" : `${protocol}//pes.${hostname[1]}.${hostname[2]}`;
|
|
210
|
+
}
|
|
211
|
+
if (config.requestBase == "FMM_URL") {
|
|
212
|
+
config.baseURL = process.env.NODE_ENV == "development" ? "/fmm" : `${protocol}//fmm.${hostname[1]}.${hostname[2]}`;
|
|
213
|
+
}
|
|
205
214
|
return config;
|
|
206
215
|
}
|
|
207
216
|
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
show: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
multiple: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
defaultCheck: {
|
|
12
|
+
type: ArrayConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
};
|
|
15
|
+
query: {
|
|
16
|
+
type: null;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "getItem")[], "update:show" | "getItem", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
show: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
multiple: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
required: true;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
defaultCheck: {
|
|
32
|
+
type: ArrayConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
query: {
|
|
36
|
+
type: null;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
}>> & {
|
|
40
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onGetItem?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}, {}>;
|
|
43
|
+
export default _default;
|
|
@@ -32,12 +32,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
type: NumberConstructor;
|
|
33
33
|
required: false;
|
|
34
34
|
};
|
|
35
|
-
|
|
36
|
-
type:
|
|
35
|
+
businessTypeItems: {
|
|
36
|
+
type: ArrayConstructor;
|
|
37
37
|
required: false;
|
|
38
38
|
};
|
|
39
39
|
notInBusinessTypeItems: {
|
|
40
|
-
type:
|
|
40
|
+
type: ArrayConstructor;
|
|
41
41
|
required: false;
|
|
42
42
|
};
|
|
43
43
|
mainContractId: {
|
|
@@ -99,12 +99,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
99
|
type: NumberConstructor;
|
|
100
100
|
required: false;
|
|
101
101
|
};
|
|
102
|
-
|
|
103
|
-
type:
|
|
102
|
+
businessTypeItems: {
|
|
103
|
+
type: ArrayConstructor;
|
|
104
104
|
required: false;
|
|
105
105
|
};
|
|
106
106
|
notInBusinessTypeItems: {
|
|
107
|
-
type:
|
|
107
|
+
type: ArrayConstructor;
|
|
108
108
|
required: false;
|
|
109
109
|
};
|
|
110
110
|
mainContractId: {
|
|
@@ -74,6 +74,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
required: false;
|
|
75
75
|
default: string;
|
|
76
76
|
};
|
|
77
|
+
isSetOfBookId: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
required: false;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
77
82
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
78
83
|
[key: string]: any;
|
|
79
84
|
}>, 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<{
|
|
@@ -149,6 +154,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
154
|
required: false;
|
|
150
155
|
default: string;
|
|
151
156
|
};
|
|
157
|
+
isSetOfBookId: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
required: false;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
152
162
|
}>> & {
|
|
153
163
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
154
164
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -161,5 +171,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
161
171
|
isTitle: boolean;
|
|
162
172
|
placeholder: string;
|
|
163
173
|
title: string;
|
|
174
|
+
isSetOfBookId: boolean;
|
|
164
175
|
}>;
|
|
165
176
|
export default _default;
|