+
+
+
+ {report.title.length > 20 ? `${report.title.slice(0, 20)}...` : report.title}
+
+ {report.author && (
+
+ {report.author}
+
+ )}
+ {report.declare_date && (
+
+ {dayjs(report.declare_date).format('YYYY-MM-DD')}
+
+ )}
+ {report.match_score && (
+
+ 匹配度: {report.match_score}
+
+ )}
+
+
+
+ );
+ }
+ },
{
title: 'K线图',
key: 'kline',
@@ -685,9 +791,9 @@ const InvestmentCalendar = () => {
key: 'action',
width: 100,
render: (_, record) => {
- const stockCode = getSixDigitCode(record[0]);
+ const stockCode = getSixDigitCode(record.code);
const isAdding = addingToWatchlist[stockCode] || false;
-
+
return (