hfn-components 0.5.4 → 0.5.5
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.
|
@@ -708,6 +708,10 @@ export declare const HtElTable: import("hfn-components/es/utils").SFCWithInstall
|
|
|
708
708
|
readonly range_contribute: "组合净值贡献度";
|
|
709
709
|
readonly return_money_contribute: "组合收益贡献度";
|
|
710
710
|
readonly money_name: "金额(元)";
|
|
711
|
+
readonly range_date: "统计区间";
|
|
712
|
+
readonly price_cnw: "累计净值";
|
|
713
|
+
readonly price_cw_nav: "复权净值";
|
|
714
|
+
readonly suspend_info: "停牌信息";
|
|
711
715
|
};
|
|
712
716
|
readonly convertKey: (data: any, key: string) => any;
|
|
713
717
|
readonly TARGET_END_KEY: {
|
|
@@ -708,6 +708,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
708
708
|
readonly range_contribute: "组合净值贡献度";
|
|
709
709
|
readonly return_money_contribute: "组合收益贡献度";
|
|
710
710
|
readonly money_name: "金额(元)";
|
|
711
|
+
readonly range_date: "统计区间";
|
|
712
|
+
readonly price_cnw: "累计净值";
|
|
713
|
+
readonly price_cw_nav: "复权净值";
|
|
714
|
+
readonly suspend_info: "停牌信息";
|
|
711
715
|
};
|
|
712
716
|
readonly convertKey: (data: any, key: string) => any;
|
|
713
717
|
readonly TARGET_END_KEY: {
|
package/es/constants/table.d.ts
CHANGED
|
@@ -101,6 +101,10 @@ export declare const TABLE_KEY: {
|
|
|
101
101
|
readonly range_contribute: "组合净值贡献度";
|
|
102
102
|
readonly return_money_contribute: "组合收益贡献度";
|
|
103
103
|
readonly money_name: "金额(元)";
|
|
104
|
+
readonly range_date: "统计区间";
|
|
105
|
+
readonly price_cnw: "累计净值";
|
|
106
|
+
readonly price_cw_nav: "复权净值";
|
|
107
|
+
readonly suspend_info: "停牌信息";
|
|
104
108
|
};
|
|
105
109
|
export declare const CLOUMN_DEAL: {
|
|
106
110
|
basicText4: (val: number | string | undefined) => string;
|
package/es/constants/table.mjs
CHANGED
|
@@ -108,7 +108,13 @@ const TABLE_KEY = {
|
|
|
108
108
|
range_contribute: "\u7EC4\u5408\u51C0\u503C\u8D21\u732E\u5EA6",
|
|
109
109
|
return_money_contribute: "\u7EC4\u5408\u6536\u76CA\u8D21\u732E\u5EA6",
|
|
110
110
|
// 月度收益
|
|
111
|
-
money_name: "\u91D1\u989D\uFF08\u5143\uFF09"
|
|
111
|
+
money_name: "\u91D1\u989D\uFF08\u5143\uFF09",
|
|
112
|
+
// 估值表分析-收益分析-收益明细
|
|
113
|
+
range_date: "\u7EDF\u8BA1\u533A\u95F4",
|
|
114
|
+
// 持仓概览-fof底层
|
|
115
|
+
price_cnw: "\u7D2F\u8BA1\u51C0\u503C",
|
|
116
|
+
price_cw_nav: "\u590D\u6743\u51C0\u503C",
|
|
117
|
+
suspend_info: "\u505C\u724C\u4FE1\u606F"
|
|
112
118
|
};
|
|
113
119
|
const basicText4 = (val) => {
|
|
114
120
|
return typeof val !== "number" ? "-" : val.toFixed(4);
|