@das-fed/ui 6.4.0-dev.41 → 6.4.0-dev.43
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/i18n-collection/en.js +536 -0
- package/i18n-collection/zh-CN.js +537 -0
- package/package.json +6 -5
- package/packages/business-components/echarts/index.js +1648 -1639
- package/packages/business-components/echarts/index.js.gz +0 -0
- package/packages/business-components/echarts/style.css +1 -1
- package/packages/business-components/process-form/index.js +1065 -1057
- package/packages/business-components/process-form/index.js.gz +0 -0
- package/packages/business-components/process-form/src/hooks/useSelector.d.ts +2 -1
- package/packages/business-components/process-form/style.css +1 -1
- package/packages/business-components/process-table/index.d.ts +11 -2
- package/packages/business-components/process-table/index.js +147 -146
- package/packages/business-components/process-table/index.js.gz +0 -0
- package/packages/business-components/process-table/src/App.vue.d.ts +9 -24
- package/packages/business-components/process-table/src/type.d.ts +2 -0
- package/packages/business-components/process-table/style.css +1 -1
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const useSelector: (props: any, flowKey?: any) => {
|
|
1
|
+
export declare const useSelector: (props: any, flowKey?: any, inputValue?: any) => {
|
|
2
2
|
dialogVisible: import("vue").Ref<boolean, boolean>;
|
|
3
3
|
title: any;
|
|
4
4
|
searchName: import("vue").Ref<string, string>;
|
|
@@ -23,4 +23,5 @@ export declare const useSelector: (props: any, flowKey?: any) => {
|
|
|
23
23
|
getDetail: (ids: string) => Promise<void>;
|
|
24
24
|
searchData: () => Promise<void>;
|
|
25
25
|
searchOptions: import("vue").Ref<any[], any[]>;
|
|
26
|
+
linkmanPhone: import("vue").Ref<string, string>;
|
|
26
27
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-image[data-v-412cdcbe]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-
|
|
1
|
+
.form-image[data-v-412cdcbe]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-3944a47f]{display:flex;justify-content:space-between;align-items:center;margin:0 14px 6px}.table-search-process-top .left-box[data-v-3944a47f]{display:flex;align-items:center}.form-image[data-v-da7984c5]{background:#fff;margin:10px 0 30px}.accordion-layout{width:100%}.accordion-layout .grid-layout{padding:0}.custom-page[data-v-1e68b6db]{display:flex;flex-direction:column;background-color:#e2e7ef}.custom-page .btn-box[data-v-1e68b6db]{background-color:#fff;height:48px;line-height:48px;padding-left:18px}.custom-page .content-box[data-v-1e68b6db]{flex:1;min-height:0}
|
|
@@ -14,6 +14,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
14
14
|
getSearchQuery: (val: any) => any;
|
|
15
15
|
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
16
16
|
}, import("vue").PublicProps, {
|
|
17
|
+
showOperationColumn: boolean;
|
|
17
18
|
flowKey: string;
|
|
18
19
|
needDisplayFileds: boolean;
|
|
19
20
|
clientType: "pc" | "mobile";
|
|
@@ -40,6 +41,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
40
41
|
reqTableList: () => Promise<void>;
|
|
41
42
|
handleCurrentPageChange: (val: any) => void;
|
|
42
43
|
}, {}, {}, {}, {
|
|
44
|
+
showOperationColumn: boolean;
|
|
43
45
|
flowKey: string;
|
|
44
46
|
needDisplayFileds: boolean;
|
|
45
47
|
clientType: "pc" | "mobile";
|
|
@@ -68,6 +70,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
68
70
|
getSearchQuery: (val: any) => any;
|
|
69
71
|
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
70
72
|
}, string, {
|
|
73
|
+
showOperationColumn: boolean;
|
|
71
74
|
flowKey: string;
|
|
72
75
|
needDisplayFileds: boolean;
|
|
73
76
|
clientType: "pc" | "mobile";
|
|
@@ -110,6 +113,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
110
113
|
allSelectable?: boolean;
|
|
111
114
|
selectable?: (row?: any, index?: any) => boolean;
|
|
112
115
|
}) | undefined;
|
|
116
|
+
readonly showOperationColumn?: boolean | undefined;
|
|
113
117
|
readonly "onUpdate:loading"?: ((loading: boolean) => any) | undefined;
|
|
114
118
|
readonly onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
115
119
|
readonly onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
@@ -143,6 +147,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
143
147
|
getSearchQuery: (val: any) => any;
|
|
144
148
|
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
145
149
|
}, string, {
|
|
150
|
+
showOperationColumn: boolean;
|
|
146
151
|
flowKey: string;
|
|
147
152
|
needDisplayFileds: boolean;
|
|
148
153
|
clientType: "pc" | "mobile";
|
|
@@ -173,6 +178,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
173
178
|
$nextTick: typeof import("vue").nextTick;
|
|
174
179
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
175
180
|
} & Readonly<{
|
|
181
|
+
showOperationColumn: boolean;
|
|
176
182
|
flowKey: string;
|
|
177
183
|
needDisplayFileds: boolean;
|
|
178
184
|
clientType: "pc" | "mobile";
|
|
@@ -188,7 +194,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
188
194
|
"onUpdate:loading"?: ((loading: boolean) => any) | undefined;
|
|
189
195
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
190
196
|
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
191
|
-
}>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
197
|
+
}>, "reqTableList" | "handleCurrentPageChange" | ("showOperationColumn" | "flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
192
198
|
reqTableList: () => Promise<void>;
|
|
193
199
|
handleCurrentPageChange: (val: any) => void;
|
|
194
200
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -222,6 +228,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
222
228
|
allSelectable?: boolean;
|
|
223
229
|
selectable?: (row?: any, index?: any) => boolean;
|
|
224
230
|
}) | undefined;
|
|
231
|
+
readonly showOperationColumn?: boolean | undefined;
|
|
225
232
|
readonly "onUpdate:loading"?: ((loading: boolean) => any) | undefined;
|
|
226
233
|
readonly onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
227
234
|
readonly onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
@@ -255,6 +262,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
255
262
|
getSearchQuery: (val: any) => any;
|
|
256
263
|
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
257
264
|
}, string, {
|
|
265
|
+
showOperationColumn: boolean;
|
|
258
266
|
flowKey: string;
|
|
259
267
|
needDisplayFileds: boolean;
|
|
260
268
|
clientType: "pc" | "mobile";
|
|
@@ -285,6 +293,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
285
293
|
$nextTick: typeof import("vue").nextTick;
|
|
286
294
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
287
295
|
} & Readonly<{
|
|
296
|
+
showOperationColumn: boolean;
|
|
288
297
|
flowKey: string;
|
|
289
298
|
needDisplayFileds: boolean;
|
|
290
299
|
clientType: "pc" | "mobile";
|
|
@@ -300,7 +309,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
300
309
|
"onUpdate:loading"?: ((loading: boolean) => any) | undefined;
|
|
301
310
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
302
311
|
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
303
|
-
}>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
312
|
+
}>, "reqTableList" | "handleCurrentPageChange" | ("showOperationColumn" | "flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
304
313
|
reqTableList: () => Promise<void>;
|
|
305
314
|
handleCurrentPageChange: (val: any) => void;
|
|
306
315
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|