Remove RP5 multi-model block
This commit is contained in:
@@ -829,7 +829,6 @@ export function FutureForecastModal() {
|
|||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="future-modal-grid">
|
|
||||||
<section className="future-modal-section">
|
<section className="future-modal-section">
|
||||||
<h3>{t("future.structureToday")}</h3>
|
<h3>{t("future.structureToday")}</h3>
|
||||||
<div className="future-front-score">
|
<div className="future-front-score">
|
||||||
@@ -864,9 +863,7 @@ export function FutureForecastModal() {
|
|||||||
<div className="future-trend-grid">
|
<div className="future-trend-grid">
|
||||||
{view.front.metrics.slice(0, 6).map((metric) => (
|
{view.front.metrics.slice(0, 6).map((metric) => (
|
||||||
<div key={metric.label} className="future-trend-card">
|
<div key={metric.label} className="future-trend-card">
|
||||||
<div className="future-trend-label">
|
<div className="future-trend-label">{metric.label}</div>
|
||||||
{metric.label}
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"future-trend-value",
|
"future-trend-value",
|
||||||
@@ -876,21 +873,24 @@ export function FutureForecastModal() {
|
|||||||
>
|
>
|
||||||
{metric.value}
|
{metric.value}
|
||||||
</div>
|
</div>
|
||||||
<div className="future-trend-note">
|
<div className="future-trend-note">{metric.note}</div>
|
||||||
{metric.note}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="future-modal-grid">
|
|
||||||
<section className="future-modal-section">
|
<section className="future-modal-section">
|
||||||
<h3>
|
<h3>
|
||||||
{locale === "en-US" ? "City Risk Profile" : "城市风险档案"}
|
{locale === "en-US"
|
||||||
|
? "City Risk Profile & Airport Narrative"
|
||||||
|
: "城市风险档案与机场报文解读"}
|
||||||
</h3>
|
</h3>
|
||||||
<div className="risk-info">
|
<div className="future-modal-grid">
|
||||||
|
<div>
|
||||||
|
<h4 className="future-v2-card-title">
|
||||||
|
{locale === "en-US" ? "City Risk Profile" : "城市风险档案"}
|
||||||
|
</h4>
|
||||||
|
<div className="risk-info" style={{ marginTop: "10px" }}>
|
||||||
{!risk.airport ? (
|
{!risk.airport ? (
|
||||||
<span style={{ color: "var(--text-muted)" }}>
|
<span style={{ color: "var(--text-muted)" }}>
|
||||||
{t("section.noRiskProfile")}
|
{t("section.noRiskProfile")}
|
||||||
@@ -923,10 +923,10 @@ export function FutureForecastModal() {
|
|||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</div>
|
||||||
<section className="future-modal-section">
|
<div>
|
||||||
<h3>{t("future.ai")}</h3>
|
<h4 className="future-v2-card-title">{t("future.ai")}</h4>
|
||||||
<div className="ai-box">
|
<div className="ai-box" style={{ marginTop: "10px" }}>
|
||||||
{!ai.summary && ai.bullets.length === 0 ? (
|
{!ai.summary && ai.bullets.length === 0 ? (
|
||||||
<span className="ai-placeholder">
|
<span className="ai-placeholder">
|
||||||
{t("future.noAi")}
|
{t("future.noAi")}
|
||||||
@@ -946,8 +946,9 @@ export function FutureForecastModal() {
|
|||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Reference in New Issue
Block a user