hfn-components 0.2.7 → 0.2.8
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/dist/index.css +1 -0
- package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/es/component.d.ts +3 -0
- package/es/component.mjs +12 -0
- package/es/components/chart/index.d.ts +171 -0
- package/es/components/chart/index.mjs +7 -0
- package/es/components/chart/src/HtChart.d.ts +65 -0
- package/es/components/chart/src/HtChart.mjs +77 -0
- package/es/components/chart/src/HtChart.vue.d.ts +177 -0
- package/es/components/chart/src/HtChart.vue.mjs +90 -0
- package/es/components/chart/src/HtChart.vue2.mjs +109 -0
- package/es/components/chart/src/chartConfig.d.ts +7 -0
- package/es/components/chart/src/chartConfig.mjs +88 -0
- package/es/components/chart/style/index.d.ts +1 -0
- package/es/components/chart/style/index.mjs +1 -0
- package/es/components/elTable/index.d.ts +771 -0
- package/es/components/elTable/index.mjs +7 -0
- package/es/components/elTable/src/columnDeal.vue.d.ts +39 -0
- package/es/components/elTable/src/columnDeal.vue.mjs +35 -0
- package/es/components/elTable/src/columnDeal.vue2.mjs +20 -0
- package/es/components/elTable/src/elTable.d.ts +38 -0
- package/es/components/elTable/src/elTable.mjs +30 -0
- package/es/components/elTable/src/elTable.vue.d.ts +770 -0
- package/es/components/elTable/src/elTable.vue.mjs +56 -0
- package/es/components/elTable/src/elTable.vue2.mjs +30 -0
- package/es/components/htTarget/index.d.ts +1979 -0
- package/es/components/htTarget/index.mjs +6 -0
- package/es/components/htTarget/src/htTarget.d.ts +1 -0
- package/es/components/htTarget/src/htTarget.mjs +3 -0
- package/es/components/htTarget/src/htTarget.vue.d.ts +1978 -0
- package/es/components/htTarget/src/htTarget.vue.mjs +204 -0
- package/es/components/htTarget/src/htTarget.vue2.mjs +108 -0
- package/es/components/index.d.ts +4 -0
- package/es/components/index.mjs +7 -0
- package/es/components/pieChart/index.d.ts +107 -0
- package/es/components/pieChart/index.mjs +7 -0
- package/es/components/pieChart/src/HtPieChart.d.ts +40 -0
- package/es/components/pieChart/src/HtPieChart.mjs +47 -0
- package/es/components/pieChart/src/HtPieChart.vue.d.ts +106 -0
- package/es/components/pieChart/src/HtPieChart.vue.mjs +23 -0
- package/es/components/pieChart/src/HtPieChart.vue2.mjs +84 -0
- package/es/components/pieChart/style/index.d.ts +1 -0
- package/es/components/pieChart/style/index.mjs +1 -0
- package/es/components/table/HtTable.d.ts +142 -0
- package/es/components/table/HtTable.mjs +136 -0
- package/es/components/table/HtTable.vue.d.ts +1847 -0
- package/es/components/table/HtTable.vue.mjs +449 -0
- package/es/components/table/HtTable.vue2.mjs +124 -0
- package/es/components/table/index.d.ts +1845 -0
- package/es/components/table/index.mjs +7 -0
- package/es/constants/chartConfig.d.ts +8 -0
- package/es/constants/chartConfig.mjs +110 -0
- package/es/constants/index.d.ts +4 -0
- package/es/constants/index.mjs +4 -0
- package/es/constants/key.d.ts +1 -0
- package/es/constants/key.mjs +3 -0
- package/es/constants/table.d.ts +118 -0
- package/es/constants/table.mjs +144 -0
- package/es/constants/target.d.ts +20 -0
- package/es/constants/target.mjs +54 -0
- package/es/defaults.d.ts +4 -0
- package/es/defaults.mjs +7 -0
- package/es/index.d.ts +5 -0
- package/es/index.mjs +13 -0
- package/es/make-installer.d.ts +4 -0
- package/es/make-installer.mjs +15 -0
- package/es/plugin.d.ts +2 -0
- package/es/plugin.mjs +3 -0
- package/es/utils/chart.d.ts +7 -0
- package/es/utils/chart.mjs +172 -0
- package/es/utils/common.d.ts +3 -0
- package/es/utils/common.mjs +15 -0
- package/es/utils/index.d.ts +4 -0
- package/es/utils/index.mjs +4 -0
- package/es/utils/table.d.ts +2 -0
- package/es/utils/table.mjs +31 -0
- package/es/utils/tool.d.ts +2 -0
- package/es/utils/tool.mjs +42 -0
- package/global.d.ts +14 -0
- package/package.json +1 -1
- package/theme-chalk/ht-chart.css +1 -0
- package/theme-chalk/index.css +1 -0
- package/theme-chalk/src/chart.scss +58 -0
- package/theme-chalk/src/index.scss +1 -0
- package/component.ts +0 -13
- package/defaults.ts +0 -5
- package/index.ts +0 -6
- package/make-installer.ts +0 -17
- package/plugin.ts +0 -1
|
@@ -0,0 +1,770 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
readonly dataSource: {
|
|
3
|
+
readonly type: ArrayConstructor;
|
|
4
|
+
readonly default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
readonly tableColumn: {
|
|
7
|
+
readonly type: import("vue").PropType<import("./elTable").ElTableColumns[]>;
|
|
8
|
+
readonly default: () => never[];
|
|
9
|
+
};
|
|
10
|
+
readonly loading: {
|
|
11
|
+
readonly type: BooleanConstructor;
|
|
12
|
+
readonly default: false;
|
|
13
|
+
};
|
|
14
|
+
readonly headerColor: {
|
|
15
|
+
readonly type: StringConstructor;
|
|
16
|
+
readonly default: "#f0f0f0";
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
props: import("@vue/shared").LooseRequired<{
|
|
20
|
+
readonly loading: boolean;
|
|
21
|
+
readonly dataSource: unknown[];
|
|
22
|
+
readonly tableColumn: import("./elTable").ElTableColumns[];
|
|
23
|
+
readonly headerColor: string;
|
|
24
|
+
} & {}>;
|
|
25
|
+
readonly ElTable: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
26
|
+
data: {
|
|
27
|
+
type: import("vue").PropType<any[]>;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
30
|
+
size: {
|
|
31
|
+
readonly type: import("vue").PropType<import("element-plus").ButtonType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
32
|
+
readonly required: false;
|
|
33
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
34
|
+
__epPropKey: true;
|
|
35
|
+
};
|
|
36
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
37
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
38
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39
|
+
fit: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
stripe: BooleanConstructor;
|
|
44
|
+
border: BooleanConstructor;
|
|
45
|
+
rowKey: import("vue").PropType<string | ((row: any) => string) | undefined>;
|
|
46
|
+
showHeader: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
showSummary: BooleanConstructor;
|
|
51
|
+
sumText: StringConstructor;
|
|
52
|
+
summaryMethod: import("vue").PropType<import("element-plus").SummaryMethod<any> | undefined>;
|
|
53
|
+
rowClassName: import("vue").PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
54
|
+
rowStyle: import("vue").PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
55
|
+
cellClassName: import("vue").PropType<import("element-plus").CellCls<any> | undefined>;
|
|
56
|
+
cellStyle: import("vue").PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
57
|
+
headerRowClassName: import("vue").PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
58
|
+
headerRowStyle: import("vue").PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
59
|
+
headerCellClassName: import("vue").PropType<import("element-plus").CellCls<any> | undefined>;
|
|
60
|
+
headerCellStyle: import("vue").PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
61
|
+
highlightCurrentRow: BooleanConstructor;
|
|
62
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
63
|
+
emptyText: StringConstructor;
|
|
64
|
+
expandRowKeys: import("vue").PropType<any[] | undefined>;
|
|
65
|
+
defaultExpandAll: BooleanConstructor;
|
|
66
|
+
defaultSort: import("vue").PropType<import("element-plus").Sort | undefined>;
|
|
67
|
+
tooltipEffect: StringConstructor;
|
|
68
|
+
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
69
|
+
spanMethod: import("vue").PropType<((data: {
|
|
70
|
+
row: any;
|
|
71
|
+
rowIndex: number;
|
|
72
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
73
|
+
columnIndex: number;
|
|
74
|
+
}) => number[] | {
|
|
75
|
+
rowspan: number;
|
|
76
|
+
colspan: number;
|
|
77
|
+
} | undefined) | undefined>;
|
|
78
|
+
selectOnIndeterminate: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
indent: {
|
|
83
|
+
type: NumberConstructor;
|
|
84
|
+
default: number;
|
|
85
|
+
};
|
|
86
|
+
treeProps: {
|
|
87
|
+
type: import("vue").PropType<{
|
|
88
|
+
hasChildren?: string | undefined;
|
|
89
|
+
children?: string | undefined;
|
|
90
|
+
} | undefined>;
|
|
91
|
+
default: () => {
|
|
92
|
+
hasChildren: string;
|
|
93
|
+
children: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
lazy: BooleanConstructor;
|
|
97
|
+
load: import("vue").PropType<((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined>;
|
|
98
|
+
style: {
|
|
99
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
100
|
+
default: () => {};
|
|
101
|
+
};
|
|
102
|
+
className: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
tableLayout: {
|
|
107
|
+
type: import("vue").PropType<"fixed" | "auto">;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
scrollbarAlwaysOn: BooleanConstructor;
|
|
111
|
+
flexible: BooleanConstructor;
|
|
112
|
+
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
113
|
+
}, {
|
|
114
|
+
ns: {
|
|
115
|
+
namespace: import("vue").ComputedRef<string>;
|
|
116
|
+
b: (blockSuffix?: string | undefined) => string;
|
|
117
|
+
e: (element?: string | undefined) => string;
|
|
118
|
+
m: (modifier?: string | undefined) => string;
|
|
119
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
120
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
121
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
122
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
123
|
+
is: {
|
|
124
|
+
(name: string, state: boolean | undefined): string;
|
|
125
|
+
(name: string): string;
|
|
126
|
+
};
|
|
127
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
128
|
+
cssVarName: (name: string) => string;
|
|
129
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
130
|
+
cssVarBlockName: (name: string) => string;
|
|
131
|
+
};
|
|
132
|
+
layout: import("element-plus/es/components/table/src/table-layout").default<any>;
|
|
133
|
+
store: any;
|
|
134
|
+
columns: import("vue").ComputedRef<import("element-plus").TableColumnCtx<unknown>>;
|
|
135
|
+
handleHeaderFooterMousewheel: (event: any, data: any) => void;
|
|
136
|
+
handleMouseLeave: () => void;
|
|
137
|
+
tableId: string;
|
|
138
|
+
tableSize: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
139
|
+
isHidden: import("vue").Ref<boolean>;
|
|
140
|
+
isEmpty: import("vue").ComputedRef<boolean>;
|
|
141
|
+
renderExpanded: import("vue").Ref<null>;
|
|
142
|
+
resizeProxyVisible: import("vue").Ref<boolean>;
|
|
143
|
+
resizeState: import("vue").Ref<{
|
|
144
|
+
width: number | null;
|
|
145
|
+
height: number | null;
|
|
146
|
+
headerHeight: number | null;
|
|
147
|
+
}>;
|
|
148
|
+
isGroup: import("vue").Ref<boolean>;
|
|
149
|
+
bodyWidth: import("vue").ComputedRef<string>;
|
|
150
|
+
tableBodyStyles: import("vue").ComputedRef<{
|
|
151
|
+
width: string;
|
|
152
|
+
}>;
|
|
153
|
+
emptyBlockStyle: import("vue").ComputedRef<{
|
|
154
|
+
width: string;
|
|
155
|
+
height: string;
|
|
156
|
+
} | null>;
|
|
157
|
+
debouncedUpdateLayout: import("lodash").DebouncedFunc<() => void>;
|
|
158
|
+
handleFixedMousewheel: (event: any, data: any) => void;
|
|
159
|
+
setCurrentRow: (row: any) => void;
|
|
160
|
+
getSelectionRows: () => any;
|
|
161
|
+
toggleRowSelection: (row: any, selected: boolean) => void;
|
|
162
|
+
clearSelection: () => void;
|
|
163
|
+
clearFilter: (columnKeys?: string[] | undefined) => void;
|
|
164
|
+
toggleAllSelection: () => void;
|
|
165
|
+
toggleRowExpansion: (row: any, expanded?: boolean | undefined) => void;
|
|
166
|
+
clearSort: () => void;
|
|
167
|
+
doLayout: () => void;
|
|
168
|
+
sort: (prop: string, order: string) => void;
|
|
169
|
+
t: import("element-plus").Translator;
|
|
170
|
+
setDragVisible: (visible: boolean) => void;
|
|
171
|
+
context: import("element-plus").Table<any>;
|
|
172
|
+
computedSumText: import("vue").ComputedRef<string>;
|
|
173
|
+
computedEmptyText: import("vue").ComputedRef<string>;
|
|
174
|
+
tableLayout: import("vue").ComputedRef<"fixed" | "auto" | undefined>;
|
|
175
|
+
scrollbarViewStyle: {
|
|
176
|
+
display: string;
|
|
177
|
+
verticalAlign: string;
|
|
178
|
+
};
|
|
179
|
+
tableInnerStyle: import("vue").ComputedRef<{
|
|
180
|
+
height: string | number;
|
|
181
|
+
maxHeight?: undefined;
|
|
182
|
+
} | {
|
|
183
|
+
maxHeight: string | number;
|
|
184
|
+
height?: undefined;
|
|
185
|
+
} | {
|
|
186
|
+
height?: undefined;
|
|
187
|
+
maxHeight?: undefined;
|
|
188
|
+
}>;
|
|
189
|
+
scrollbarStyle: import("vue").ComputedRef<{
|
|
190
|
+
height: string;
|
|
191
|
+
maxHeight?: undefined;
|
|
192
|
+
} | {
|
|
193
|
+
maxHeight: string;
|
|
194
|
+
height?: undefined;
|
|
195
|
+
} | {
|
|
196
|
+
height?: undefined;
|
|
197
|
+
maxHeight?: undefined;
|
|
198
|
+
}>;
|
|
199
|
+
scrollBarRef: import("vue").Ref<any>;
|
|
200
|
+
scrollTo: (options: number | ScrollToOptions, yCoord?: number | undefined) => void;
|
|
201
|
+
setScrollLeft: (left?: number | undefined) => void;
|
|
202
|
+
setScrollTop: (top?: number | undefined) => void;
|
|
203
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "expand-change" | "select-all" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend")[], "select" | "expand-change" | "select-all" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
204
|
+
data: {
|
|
205
|
+
type: import("vue").PropType<any[]>;
|
|
206
|
+
default: () => never[];
|
|
207
|
+
};
|
|
208
|
+
size: {
|
|
209
|
+
readonly type: import("vue").PropType<import("element-plus").ButtonType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
210
|
+
readonly required: false;
|
|
211
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
212
|
+
__epPropKey: true;
|
|
213
|
+
};
|
|
214
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
215
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
216
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
217
|
+
fit: {
|
|
218
|
+
type: BooleanConstructor;
|
|
219
|
+
default: boolean;
|
|
220
|
+
};
|
|
221
|
+
stripe: BooleanConstructor;
|
|
222
|
+
border: BooleanConstructor;
|
|
223
|
+
rowKey: import("vue").PropType<string | ((row: any) => string) | undefined>;
|
|
224
|
+
showHeader: {
|
|
225
|
+
type: BooleanConstructor;
|
|
226
|
+
default: boolean;
|
|
227
|
+
};
|
|
228
|
+
showSummary: BooleanConstructor;
|
|
229
|
+
sumText: StringConstructor;
|
|
230
|
+
summaryMethod: import("vue").PropType<import("element-plus").SummaryMethod<any> | undefined>;
|
|
231
|
+
rowClassName: import("vue").PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
232
|
+
rowStyle: import("vue").PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
233
|
+
cellClassName: import("vue").PropType<import("element-plus").CellCls<any> | undefined>;
|
|
234
|
+
cellStyle: import("vue").PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
235
|
+
headerRowClassName: import("vue").PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
236
|
+
headerRowStyle: import("vue").PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
237
|
+
headerCellClassName: import("vue").PropType<import("element-plus").CellCls<any> | undefined>;
|
|
238
|
+
headerCellStyle: import("vue").PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
239
|
+
highlightCurrentRow: BooleanConstructor;
|
|
240
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
241
|
+
emptyText: StringConstructor;
|
|
242
|
+
expandRowKeys: import("vue").PropType<any[] | undefined>;
|
|
243
|
+
defaultExpandAll: BooleanConstructor;
|
|
244
|
+
defaultSort: import("vue").PropType<import("element-plus").Sort | undefined>;
|
|
245
|
+
tooltipEffect: StringConstructor;
|
|
246
|
+
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
247
|
+
spanMethod: import("vue").PropType<((data: {
|
|
248
|
+
row: any;
|
|
249
|
+
rowIndex: number;
|
|
250
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
251
|
+
columnIndex: number;
|
|
252
|
+
}) => number[] | {
|
|
253
|
+
rowspan: number;
|
|
254
|
+
colspan: number;
|
|
255
|
+
} | undefined) | undefined>;
|
|
256
|
+
selectOnIndeterminate: {
|
|
257
|
+
type: BooleanConstructor;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
260
|
+
indent: {
|
|
261
|
+
type: NumberConstructor;
|
|
262
|
+
default: number;
|
|
263
|
+
};
|
|
264
|
+
treeProps: {
|
|
265
|
+
type: import("vue").PropType<{
|
|
266
|
+
hasChildren?: string | undefined;
|
|
267
|
+
children?: string | undefined;
|
|
268
|
+
} | undefined>;
|
|
269
|
+
default: () => {
|
|
270
|
+
hasChildren: string;
|
|
271
|
+
children: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
lazy: BooleanConstructor;
|
|
275
|
+
load: import("vue").PropType<((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined>;
|
|
276
|
+
style: {
|
|
277
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
278
|
+
default: () => {};
|
|
279
|
+
};
|
|
280
|
+
className: {
|
|
281
|
+
type: StringConstructor;
|
|
282
|
+
default: string;
|
|
283
|
+
};
|
|
284
|
+
tableLayout: {
|
|
285
|
+
type: import("vue").PropType<"fixed" | "auto">;
|
|
286
|
+
default: string;
|
|
287
|
+
};
|
|
288
|
+
scrollbarAlwaysOn: BooleanConstructor;
|
|
289
|
+
flexible: BooleanConstructor;
|
|
290
|
+
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
291
|
+
}>> & {
|
|
292
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
293
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
294
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
295
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
296
|
+
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
297
|
+
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
298
|
+
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
299
|
+
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
300
|
+
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
301
|
+
"onCell-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
302
|
+
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
303
|
+
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
304
|
+
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
305
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
306
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
307
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
308
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
309
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
310
|
+
}, {
|
|
311
|
+
style: import("vue").CSSProperties;
|
|
312
|
+
className: string;
|
|
313
|
+
tableLayout: "fixed" | "auto";
|
|
314
|
+
border: boolean;
|
|
315
|
+
data: any[];
|
|
316
|
+
fit: boolean;
|
|
317
|
+
lazy: boolean;
|
|
318
|
+
scrollbarAlwaysOn: boolean;
|
|
319
|
+
stripe: boolean;
|
|
320
|
+
treeProps: {
|
|
321
|
+
hasChildren?: string | undefined;
|
|
322
|
+
children?: string | undefined;
|
|
323
|
+
} | undefined;
|
|
324
|
+
showHeader: boolean;
|
|
325
|
+
showSummary: boolean;
|
|
326
|
+
highlightCurrentRow: boolean;
|
|
327
|
+
defaultExpandAll: boolean;
|
|
328
|
+
selectOnIndeterminate: boolean;
|
|
329
|
+
indent: number;
|
|
330
|
+
flexible: boolean;
|
|
331
|
+
}, {}>> & {
|
|
332
|
+
TableColumn: import("vue").DefineComponent<{
|
|
333
|
+
type: {
|
|
334
|
+
type: StringConstructor;
|
|
335
|
+
default: string;
|
|
336
|
+
};
|
|
337
|
+
label: StringConstructor;
|
|
338
|
+
className: StringConstructor;
|
|
339
|
+
labelClassName: StringConstructor;
|
|
340
|
+
property: StringConstructor;
|
|
341
|
+
prop: StringConstructor;
|
|
342
|
+
width: {
|
|
343
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
344
|
+
default: string;
|
|
345
|
+
};
|
|
346
|
+
minWidth: {
|
|
347
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
348
|
+
default: string;
|
|
349
|
+
};
|
|
350
|
+
renderHeader: import("vue").PropType<(data: {
|
|
351
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
352
|
+
$index: number;
|
|
353
|
+
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
}>>;
|
|
356
|
+
sortable: {
|
|
357
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
358
|
+
default: boolean;
|
|
359
|
+
};
|
|
360
|
+
sortMethod: import("vue").PropType<(a: any, b: any) => number>;
|
|
361
|
+
sortBy: import("vue").PropType<string | string[] | ((row: any, index: number) => string)>;
|
|
362
|
+
resizable: {
|
|
363
|
+
type: BooleanConstructor;
|
|
364
|
+
default: boolean;
|
|
365
|
+
};
|
|
366
|
+
columnKey: StringConstructor;
|
|
367
|
+
align: StringConstructor;
|
|
368
|
+
headerAlign: StringConstructor;
|
|
369
|
+
showOverflowTooltip: {
|
|
370
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
371
|
+
default: undefined;
|
|
372
|
+
};
|
|
373
|
+
fixed: (StringConstructor | BooleanConstructor)[];
|
|
374
|
+
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
375
|
+
[key: string]: any;
|
|
376
|
+
}>>;
|
|
377
|
+
selectable: import("vue").PropType<(row: any, index: number) => boolean>;
|
|
378
|
+
reserveSelection: BooleanConstructor;
|
|
379
|
+
filterMethod: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").FilterMethods<any>>;
|
|
380
|
+
filteredValue: import("vue").PropType<string[]>;
|
|
381
|
+
filters: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").Filters>;
|
|
382
|
+
filterPlacement: StringConstructor;
|
|
383
|
+
filterMultiple: {
|
|
384
|
+
type: BooleanConstructor;
|
|
385
|
+
default: boolean;
|
|
386
|
+
};
|
|
387
|
+
filterClassName: StringConstructor;
|
|
388
|
+
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
389
|
+
sortOrders: {
|
|
390
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
391
|
+
default: () => (string | null)[];
|
|
392
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
393
|
+
};
|
|
394
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
395
|
+
type: {
|
|
396
|
+
type: StringConstructor;
|
|
397
|
+
default: string;
|
|
398
|
+
};
|
|
399
|
+
label: StringConstructor;
|
|
400
|
+
className: StringConstructor;
|
|
401
|
+
labelClassName: StringConstructor;
|
|
402
|
+
property: StringConstructor;
|
|
403
|
+
prop: StringConstructor;
|
|
404
|
+
width: {
|
|
405
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
406
|
+
default: string;
|
|
407
|
+
};
|
|
408
|
+
minWidth: {
|
|
409
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
410
|
+
default: string;
|
|
411
|
+
};
|
|
412
|
+
renderHeader: import("vue").PropType<(data: {
|
|
413
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
414
|
+
$index: number;
|
|
415
|
+
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
}>>;
|
|
418
|
+
sortable: {
|
|
419
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
420
|
+
default: boolean;
|
|
421
|
+
};
|
|
422
|
+
sortMethod: import("vue").PropType<(a: any, b: any) => number>;
|
|
423
|
+
sortBy: import("vue").PropType<string | string[] | ((row: any, index: number) => string)>;
|
|
424
|
+
resizable: {
|
|
425
|
+
type: BooleanConstructor;
|
|
426
|
+
default: boolean;
|
|
427
|
+
};
|
|
428
|
+
columnKey: StringConstructor;
|
|
429
|
+
align: StringConstructor;
|
|
430
|
+
headerAlign: StringConstructor;
|
|
431
|
+
showOverflowTooltip: {
|
|
432
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
433
|
+
default: undefined;
|
|
434
|
+
};
|
|
435
|
+
fixed: (StringConstructor | BooleanConstructor)[];
|
|
436
|
+
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
437
|
+
[key: string]: any;
|
|
438
|
+
}>>;
|
|
439
|
+
selectable: import("vue").PropType<(row: any, index: number) => boolean>;
|
|
440
|
+
reserveSelection: BooleanConstructor;
|
|
441
|
+
filterMethod: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").FilterMethods<any>>;
|
|
442
|
+
filteredValue: import("vue").PropType<string[]>;
|
|
443
|
+
filters: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").Filters>;
|
|
444
|
+
filterPlacement: StringConstructor;
|
|
445
|
+
filterMultiple: {
|
|
446
|
+
type: BooleanConstructor;
|
|
447
|
+
default: boolean;
|
|
448
|
+
};
|
|
449
|
+
filterClassName: StringConstructor;
|
|
450
|
+
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
451
|
+
sortOrders: {
|
|
452
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
453
|
+
default: () => (string | null)[];
|
|
454
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
455
|
+
};
|
|
456
|
+
}>>, {
|
|
457
|
+
type: string;
|
|
458
|
+
width: string | number;
|
|
459
|
+
minWidth: string | number;
|
|
460
|
+
showOverflowTooltip: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined;
|
|
461
|
+
sortOrders: ("ascending" | "descending" | null)[];
|
|
462
|
+
sortable: string | boolean;
|
|
463
|
+
resizable: boolean;
|
|
464
|
+
reserveSelection: boolean;
|
|
465
|
+
filterMultiple: boolean;
|
|
466
|
+
}, {}>;
|
|
467
|
+
};
|
|
468
|
+
readonly ElTableColumn: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
469
|
+
type: {
|
|
470
|
+
type: StringConstructor;
|
|
471
|
+
default: string;
|
|
472
|
+
};
|
|
473
|
+
label: StringConstructor;
|
|
474
|
+
className: StringConstructor;
|
|
475
|
+
labelClassName: StringConstructor;
|
|
476
|
+
property: StringConstructor;
|
|
477
|
+
prop: StringConstructor;
|
|
478
|
+
width: {
|
|
479
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
480
|
+
default: string;
|
|
481
|
+
};
|
|
482
|
+
minWidth: {
|
|
483
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
484
|
+
default: string;
|
|
485
|
+
};
|
|
486
|
+
renderHeader: import("vue").PropType<(data: {
|
|
487
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
488
|
+
$index: number;
|
|
489
|
+
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
}>>;
|
|
492
|
+
sortable: {
|
|
493
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
494
|
+
default: boolean;
|
|
495
|
+
};
|
|
496
|
+
sortMethod: import("vue").PropType<(a: any, b: any) => number>;
|
|
497
|
+
sortBy: import("vue").PropType<string | string[] | ((row: any, index: number) => string)>;
|
|
498
|
+
resizable: {
|
|
499
|
+
type: BooleanConstructor;
|
|
500
|
+
default: boolean;
|
|
501
|
+
};
|
|
502
|
+
columnKey: StringConstructor;
|
|
503
|
+
align: StringConstructor;
|
|
504
|
+
headerAlign: StringConstructor;
|
|
505
|
+
showOverflowTooltip: {
|
|
506
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
507
|
+
default: undefined;
|
|
508
|
+
};
|
|
509
|
+
fixed: (StringConstructor | BooleanConstructor)[];
|
|
510
|
+
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
511
|
+
[key: string]: any;
|
|
512
|
+
}>>;
|
|
513
|
+
selectable: import("vue").PropType<(row: any, index: number) => boolean>;
|
|
514
|
+
reserveSelection: BooleanConstructor;
|
|
515
|
+
filterMethod: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").FilterMethods<any>>;
|
|
516
|
+
filteredValue: import("vue").PropType<string[]>;
|
|
517
|
+
filters: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").Filters>;
|
|
518
|
+
filterPlacement: StringConstructor;
|
|
519
|
+
filterMultiple: {
|
|
520
|
+
type: BooleanConstructor;
|
|
521
|
+
default: boolean;
|
|
522
|
+
};
|
|
523
|
+
filterClassName: StringConstructor;
|
|
524
|
+
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
525
|
+
sortOrders: {
|
|
526
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
527
|
+
default: () => (string | null)[];
|
|
528
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
529
|
+
};
|
|
530
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
531
|
+
type: {
|
|
532
|
+
type: StringConstructor;
|
|
533
|
+
default: string;
|
|
534
|
+
};
|
|
535
|
+
label: StringConstructor;
|
|
536
|
+
className: StringConstructor;
|
|
537
|
+
labelClassName: StringConstructor;
|
|
538
|
+
property: StringConstructor;
|
|
539
|
+
prop: StringConstructor;
|
|
540
|
+
width: {
|
|
541
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
542
|
+
default: string;
|
|
543
|
+
};
|
|
544
|
+
minWidth: {
|
|
545
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
546
|
+
default: string;
|
|
547
|
+
};
|
|
548
|
+
renderHeader: import("vue").PropType<(data: {
|
|
549
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
550
|
+
$index: number;
|
|
551
|
+
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
}>>;
|
|
554
|
+
sortable: {
|
|
555
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
556
|
+
default: boolean;
|
|
557
|
+
};
|
|
558
|
+
sortMethod: import("vue").PropType<(a: any, b: any) => number>;
|
|
559
|
+
sortBy: import("vue").PropType<string | string[] | ((row: any, index: number) => string)>;
|
|
560
|
+
resizable: {
|
|
561
|
+
type: BooleanConstructor;
|
|
562
|
+
default: boolean;
|
|
563
|
+
};
|
|
564
|
+
columnKey: StringConstructor;
|
|
565
|
+
align: StringConstructor;
|
|
566
|
+
headerAlign: StringConstructor;
|
|
567
|
+
showOverflowTooltip: {
|
|
568
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined>;
|
|
569
|
+
default: undefined;
|
|
570
|
+
};
|
|
571
|
+
fixed: (StringConstructor | BooleanConstructor)[];
|
|
572
|
+
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
573
|
+
[key: string]: any;
|
|
574
|
+
}>>;
|
|
575
|
+
selectable: import("vue").PropType<(row: any, index: number) => boolean>;
|
|
576
|
+
reserveSelection: BooleanConstructor;
|
|
577
|
+
filterMethod: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").FilterMethods<any>>;
|
|
578
|
+
filteredValue: import("vue").PropType<string[]>;
|
|
579
|
+
filters: import("vue").PropType<import("element-plus/es/components/table/src/table-column/defaults").Filters>;
|
|
580
|
+
filterPlacement: StringConstructor;
|
|
581
|
+
filterMultiple: {
|
|
582
|
+
type: BooleanConstructor;
|
|
583
|
+
default: boolean;
|
|
584
|
+
};
|
|
585
|
+
filterClassName: StringConstructor;
|
|
586
|
+
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
587
|
+
sortOrders: {
|
|
588
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
589
|
+
default: () => (string | null)[];
|
|
590
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
591
|
+
};
|
|
592
|
+
}>>, {
|
|
593
|
+
type: string;
|
|
594
|
+
width: string | number;
|
|
595
|
+
minWidth: string | number;
|
|
596
|
+
showOverflowTooltip: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "effect" | "placement" | "popperOptions" | "enterable" | "popperClass" | "showAfter" | "hideAfter" | "showArrow" | "appendTo" | "transition">> | undefined;
|
|
597
|
+
sortOrders: ("ascending" | "descending" | null)[];
|
|
598
|
+
sortable: string | boolean;
|
|
599
|
+
resizable: boolean;
|
|
600
|
+
reserveSelection: boolean;
|
|
601
|
+
filterMultiple: boolean;
|
|
602
|
+
}, {}>>;
|
|
603
|
+
readonly vLoading: import("vue").Directive<import("element-plus/es/components/loading/src/directive").ElementLoading, import("element-plus/es/components/loading/src/directive").LoadingBinding>;
|
|
604
|
+
readonly TABLE_KEY: {
|
|
605
|
+
readonly index: "序号";
|
|
606
|
+
readonly year: "年份";
|
|
607
|
+
readonly fundName: "基金名称";
|
|
608
|
+
readonly cucmulativeReturn: "区间收益";
|
|
609
|
+
readonly excessReturn: "超额区间收益";
|
|
610
|
+
readonly vol: "年化波动率";
|
|
611
|
+
readonly excessVol: "超额年化波动率";
|
|
612
|
+
readonly sharpeRatio: "夏普比率";
|
|
613
|
+
readonly excessSharpeRatio: "超额夏普比率";
|
|
614
|
+
readonly calmarRatio: "卡玛比率";
|
|
615
|
+
readonly excessCalmarRatio: "超额卡玛比率";
|
|
616
|
+
readonly sortinoRatio: "索提诺比率";
|
|
617
|
+
readonly excessSortinoRatio: "超额索提诺比率";
|
|
618
|
+
readonly downsideDev: "下行风险";
|
|
619
|
+
readonly excessDownsideDev: "超额下行风险";
|
|
620
|
+
readonly interval: "最大回撤起止区间";
|
|
621
|
+
readonly maxDrawdown: "最大回撤";
|
|
622
|
+
readonly excessMaxDrawdown: "超额最大回撤";
|
|
623
|
+
readonly maxDrawdownDays: "最大回撤回补期(天)";
|
|
624
|
+
readonly excessMaxDrawdownDays: "超额最大回撤回补期(天)";
|
|
625
|
+
readonly maxNormalDays: "最长连续不创新高天数(天)";
|
|
626
|
+
readonly excessMaxNormalDays: "超额最长连续不创新高天数(天)";
|
|
627
|
+
readonly annualReturn: "年化收益";
|
|
628
|
+
readonly excessAnnualReturn: "超额年化收益";
|
|
629
|
+
readonly corr: "相关系数";
|
|
630
|
+
readonly informationRatio: "信息比率";
|
|
631
|
+
readonly trackingError: "跟踪误差";
|
|
632
|
+
readonly alpha: "Alpha";
|
|
633
|
+
readonly beta: "Beta";
|
|
634
|
+
readonly skew: "偏度";
|
|
635
|
+
readonly kurt: "峰度";
|
|
636
|
+
readonly cVaR: "VaR(95%置信)";
|
|
637
|
+
readonly indexReturns: "同期指数收益";
|
|
638
|
+
readonly '01': "1月";
|
|
639
|
+
readonly '02': "2月";
|
|
640
|
+
readonly '03': "3月";
|
|
641
|
+
readonly '04': "4月";
|
|
642
|
+
readonly '05': "5月";
|
|
643
|
+
readonly '06': "6月";
|
|
644
|
+
readonly '07': "7月";
|
|
645
|
+
readonly '08': "8月";
|
|
646
|
+
readonly '09': "9月";
|
|
647
|
+
readonly '10': "10月";
|
|
648
|
+
readonly '11': "11月";
|
|
649
|
+
readonly '12': "12月";
|
|
650
|
+
readonly MonthlyPositiveRatio: "月胜率";
|
|
651
|
+
readonly all_year: "全年";
|
|
652
|
+
readonly deal_type: "交易类型";
|
|
653
|
+
readonly deal_apply_time: "申请时间";
|
|
654
|
+
readonly deal_time: "确认日期";
|
|
655
|
+
readonly amount: "确认净额";
|
|
656
|
+
readonly shares: "确认份额";
|
|
657
|
+
readonly price: "确认单位净值";
|
|
658
|
+
readonly bsfee: "交易费用";
|
|
659
|
+
readonly reward: "业绩报酬";
|
|
660
|
+
readonly ftype: "基金类型";
|
|
661
|
+
readonly strategy: "平台策略";
|
|
662
|
+
readonly weight_rate: "权重";
|
|
663
|
+
readonly price_nav: "单位净值";
|
|
664
|
+
readonly inital_purchase_date: "初始申购日期";
|
|
665
|
+
readonly price_date: "净值日期";
|
|
666
|
+
readonly clear_time: "清仓日期";
|
|
667
|
+
readonly price_change: "净值涨跌幅";
|
|
668
|
+
readonly price_source: "净值来源";
|
|
669
|
+
readonly hold_value: "持仓市值(元)";
|
|
670
|
+
readonly code: "备案号/代码";
|
|
671
|
+
readonly is_manage_change: "持仓期内经理变更";
|
|
672
|
+
readonly price_weighted: "持有单价";
|
|
673
|
+
readonly cost: "持仓成本(元)";
|
|
674
|
+
readonly cost_weighted: "持有成本(元)";
|
|
675
|
+
readonly position_return: "持仓收益(元)";
|
|
676
|
+
readonly profit_weighted: "持有收益(元)";
|
|
677
|
+
readonly rate: "持仓收益率";
|
|
678
|
+
readonly rate_weighted: "持有收益率";
|
|
679
|
+
readonly year_rate_position: "持仓年化收益率";
|
|
680
|
+
readonly year_rate_weighted: "持有年化收益率";
|
|
681
|
+
readonly cost_days: "持有天数";
|
|
682
|
+
readonly return_range: "区间投资收益(元)";
|
|
683
|
+
readonly cum_profit: "累计收益(元)";
|
|
684
|
+
readonly return_range_rate: "区间投资收益率";
|
|
685
|
+
readonly cum_rate: "累计收益率";
|
|
686
|
+
readonly year_rate_range: "区间投资年化收益率";
|
|
687
|
+
readonly year_rate_cum: "累计年化收益率";
|
|
688
|
+
readonly cost_accumulated: "累计成本(元)";
|
|
689
|
+
readonly cum_bsfee: "累计交易费用(元)";
|
|
690
|
+
readonly cum_subscription: "累计认申购(元)";
|
|
691
|
+
readonly cum_cash: "累计现金分红(元)";
|
|
692
|
+
readonly cum_redemption: "累计赎回(元)";
|
|
693
|
+
readonly cum_reward: "累计业绩报酬(元)";
|
|
694
|
+
readonly assets_type: "资产类别";
|
|
695
|
+
readonly values: "市值";
|
|
696
|
+
readonly values_ratio: "市值占比";
|
|
697
|
+
readonly type_name: "策略";
|
|
698
|
+
readonly fid_num: "产品数量";
|
|
699
|
+
readonly assets: "投资市值";
|
|
700
|
+
readonly assets_rate: "投资市值占比";
|
|
701
|
+
readonly range_return: "区间投资收益率";
|
|
702
|
+
readonly return_money: "区间投资收益(元)";
|
|
703
|
+
readonly range_year_return: "区间投资年化收益率";
|
|
704
|
+
readonly range_contribute: "组合净值贡献度";
|
|
705
|
+
readonly return_money_contribute: "组合收益贡献度";
|
|
706
|
+
readonly money_name: "金额(元)";
|
|
707
|
+
};
|
|
708
|
+
readonly convertKey: (data: any, key: string) => any;
|
|
709
|
+
ColumnDeal: import("vue").DefineComponent<{
|
|
710
|
+
readonly dealType: {
|
|
711
|
+
readonly type: import("vue").PropType<"basicText4" | "colorText" | "colorPercentage" | "percentage" | "percentage4" | "absPercentage" | "thoundsandText2" | "notProcessed" | "other">;
|
|
712
|
+
readonly default: "";
|
|
713
|
+
};
|
|
714
|
+
readonly text: {
|
|
715
|
+
readonly type: import("vue").PropType<string | number | undefined>;
|
|
716
|
+
readonly default: undefined;
|
|
717
|
+
};
|
|
718
|
+
}, {
|
|
719
|
+
props: import("@vue/shared").LooseRequired<{
|
|
720
|
+
readonly dealType: "basicText4" | "colorText" | "colorPercentage" | "percentage" | "percentage4" | "absPercentage" | "thoundsandText2" | "notProcessed" | "other";
|
|
721
|
+
readonly text?: string | number | undefined;
|
|
722
|
+
} & {}>;
|
|
723
|
+
readonly CLOUMN_DEAL: {
|
|
724
|
+
basicText4: (val: string | number | undefined) => string;
|
|
725
|
+
colorText: (val: string | number | undefined) => string;
|
|
726
|
+
colorPercentage: (val: string | number | undefined) => string;
|
|
727
|
+
percentage: (val: string | number | undefined) => string;
|
|
728
|
+
percentage4: (val: string | number | undefined) => string;
|
|
729
|
+
absPercentage: (val: string | number | undefined) => string;
|
|
730
|
+
thoundsandText2: (val: string | number | undefined) => string;
|
|
731
|
+
notProcessed: null;
|
|
732
|
+
other: null;
|
|
733
|
+
};
|
|
734
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
735
|
+
readonly dealType: {
|
|
736
|
+
readonly type: import("vue").PropType<"basicText4" | "colorText" | "colorPercentage" | "percentage" | "percentage4" | "absPercentage" | "thoundsandText2" | "notProcessed" | "other">;
|
|
737
|
+
readonly default: "";
|
|
738
|
+
};
|
|
739
|
+
readonly text: {
|
|
740
|
+
readonly type: import("vue").PropType<string | number | undefined>;
|
|
741
|
+
readonly default: undefined;
|
|
742
|
+
};
|
|
743
|
+
}>>, {
|
|
744
|
+
readonly text: string | number | undefined;
|
|
745
|
+
readonly dealType: "basicText4" | "colorText" | "colorPercentage" | "percentage" | "percentage4" | "absPercentage" | "thoundsandText2" | "notProcessed" | "other";
|
|
746
|
+
}, {}>;
|
|
747
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
748
|
+
readonly dataSource: {
|
|
749
|
+
readonly type: ArrayConstructor;
|
|
750
|
+
readonly default: () => never[];
|
|
751
|
+
};
|
|
752
|
+
readonly tableColumn: {
|
|
753
|
+
readonly type: import("vue").PropType<import("./elTable").ElTableColumns[]>;
|
|
754
|
+
readonly default: () => never[];
|
|
755
|
+
};
|
|
756
|
+
readonly loading: {
|
|
757
|
+
readonly type: BooleanConstructor;
|
|
758
|
+
readonly default: false;
|
|
759
|
+
};
|
|
760
|
+
readonly headerColor: {
|
|
761
|
+
readonly type: StringConstructor;
|
|
762
|
+
readonly default: "#f0f0f0";
|
|
763
|
+
};
|
|
764
|
+
}>>, {
|
|
765
|
+
readonly loading: boolean;
|
|
766
|
+
readonly dataSource: unknown[];
|
|
767
|
+
readonly tableColumn: import("./elTable").ElTableColumns[];
|
|
768
|
+
readonly headerColor: string;
|
|
769
|
+
}, {}>;
|
|
770
|
+
export default _default;
|