diff --git a/src/views/ValueForum/PredictionTopicDetail.js b/src/views/ValueForum/PredictionTopicDetail.js
index aafea33d..12062315 100644
--- a/src/views/ValueForum/PredictionTopicDetail.js
+++ b/src/views/ValueForum/PredictionTopicDetail.js
@@ -467,13 +467,15 @@ const PredictionTopicDetail = () => {
参与人数
- {topic.stats.unique_traders.size}
+ {topic.participants_count || 0}
总交易量
- {Math.round(topic.stats.total_volume)}
+
+ {Math.round((topic.yes_total_shares || 0) + (topic.no_total_shares || 0))}
+