|
@@ -6,7 +6,7 @@
|
|
|
:class="{ 'alert-detail-body--with-bar': detailType === 'stress' }"
|
|
:class="{ 'alert-detail-body--with-bar': detailType === 'stress' }"
|
|
|
v-loading="loading"
|
|
v-loading="loading"
|
|
|
>
|
|
>
|
|
|
- <!-- 综合研判:interact_explain + crop_name / phenophase_desc / risk_desc|stress_desc / soil_desc -->
|
|
|
|
|
|
|
+ <!-- 综合研判:interact_explain + crop_name / phenophase_desc / stress_desc|stress_desc / soil_desc -->
|
|
|
<div class="section-card" v-if="hasAnalysisSection">
|
|
<div class="section-card" v-if="hasAnalysisSection">
|
|
|
<div class="section-card__title">综合研判</div>
|
|
<div class="section-card__title">综合研判</div>
|
|
|
<div v-if="analysis.summary" class="section-card__desc">{{ analysis.summary }}</div>
|
|
<div v-if="analysis.summary" class="section-card__desc">{{ analysis.summary }}</div>
|
|
@@ -294,7 +294,7 @@ function applyRiskReport(data) {
|
|
|
if (!data || typeof data !== "object") return;
|
|
if (!data || typeof data !== "object") return;
|
|
|
applyAnalysisPanel(data, {
|
|
applyAnalysisPanel(data, {
|
|
|
middleLabel: "气象预警",
|
|
middleLabel: "气象预警",
|
|
|
- middleValue: data.risk_desc,
|
|
|
|
|
|
|
+ middleValue: data.stress_desc,
|
|
|
});
|
|
});
|
|
|
applyResultAndAnalysis(data);
|
|
applyResultAndAnalysis(data);
|
|
|
importanceDesc.value = "";
|
|
importanceDesc.value = "";
|
|
@@ -305,7 +305,7 @@ function applyStressReport(data) {
|
|
|
if (!data || typeof data !== "object") return;
|
|
if (!data || typeof data !== "object") return;
|
|
|
applyAnalysisPanel(data, {
|
|
applyAnalysisPanel(data, {
|
|
|
middleLabel: "当下胁迫",
|
|
middleLabel: "当下胁迫",
|
|
|
- middleValue: data.stress_desc || data.risk_desc,
|
|
|
|
|
|
|
+ middleValue: data.stress_desc || data.stress_desc,
|
|
|
});
|
|
});
|
|
|
applyResultAndAnalysis(data);
|
|
applyResultAndAnalysis(data);
|
|
|
adviceList.value = normalizeTitleDescList(data.farmwork_info);
|
|
adviceList.value = normalizeTitleDescList(data.farmwork_info);
|
|
@@ -317,7 +317,7 @@ function applyAbnormalReport(report) {
|
|
|
reportTitle.value = report.title || "";
|
|
reportTitle.value = report.title || "";
|
|
|
applyAnalysisPanel(report, {
|
|
applyAnalysisPanel(report, {
|
|
|
middleLabel: "气象预警",
|
|
middleLabel: "气象预警",
|
|
|
- middleValue: report.risk_desc,
|
|
|
|
|
|
|
+ middleValue: report.stress_desc,
|
|
|
});
|
|
});
|
|
|
applyResultAndAnalysis(report);
|
|
applyResultAndAnalysis(report);
|
|
|
importanceDesc.value = "";
|
|
importanceDesc.value = "";
|