+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.market_score }}
+
+
+
+
+
+ {{ formatMoney(scope.row.total_capital) }}
+
+
+
+
+ {{ formatMoney(scope.row.dividend_amount) }}
+ ({{ formatRatio(scope.row.dividend_ratio) }})
+
+
+
+
+ {{ formatMoney(scope.row.broad_market_amount) }}
+ ({{ formatRatio(scope.row.broad_market_ratio) }})
+
+
+
+
+ {{ formatMoney(scope.row.satellite_amount) }}
+ ({{ formatRatio(scope.row.satellite_ratio) }})
+
+
+
+
+ {{ formatMoney(scope.row.cash_amount) }}
+ ({{ formatRatio(scope.row.cash_ratio) }})
+
+
+
+
+
+
+
+
+
+ {{ formatDateTime(scope.row.created_at) }}
+
+
+
+
+
+
+
+ {{ scope.row.score_difference > 0 ? '+' : '' }}{{ scope.row.score_difference }}
+
+
+
+
+
+
+
+ {{ scope.row.needs_rebalance ? '是' : '否' }}
+
+
+
+
+
+
+
+ 红利:
+
+ {{ scope.row.new_dividend_amount - scope.row.previous_dividend_amount > 0 ? '+' : '' }}
+ {{ formatMoney(scope.row.new_dividend_amount - scope.row.previous_dividend_amount) }}
+
+
+
+ 宽基:
+
+ {{ scope.row.new_broad_market_amount - scope.row.previous_broad_market_amount > 0 ? '+' : '' }}
+ {{ formatMoney(scope.row.new_broad_market_amount - scope.row.previous_broad_market_amount) }}
+
+
+
+ 卫星:
+
+ {{ scope.row.new_satellite_amount - scope.row.previous_satellite_amount > 0 ? '+' : '' }}
+ {{ formatMoney(scope.row.new_satellite_amount - scope.row.previous_satellite_amount) }}
+
+
+
+ 现金:
+
+ {{ scope.row.new_cash_amount - scope.row.previous_cash_amount > 0 ? '+' : '' }}
+ {{ formatMoney(scope.row.new_cash_amount - scope.row.previous_cash_amount) }}
+
+
+
+
+
+
+
+
+
+