|
|
@@ -97,7 +97,7 @@ import { onMounted, ref, onBeforeUnmount, reactive } from "vue";
|
|
|
const outputBox = ref([
|
|
|
{ id: 1, name: "产量估计", field: "cl", value: "--", unit: "斤/亩" },
|
|
|
{ id: 2, name: "高质果率", field: "spgl", value: "--", unit: "%" },
|
|
|
- { id: 3, name: "坐果率", value: "--", unit: "%" },
|
|
|
+ { id: 3, name: "坐果率", field: "zuoguo_ratio",value: "--", unit: "%" },
|
|
|
]);
|
|
|
|
|
|
const qualityBox = ref([
|
|
|
@@ -218,7 +218,7 @@ function setFileData(type_id) {
|
|
|
// }
|
|
|
outputBox.value[0].value = res.production_info.production;
|
|
|
outputBox.value[1].value = res.production_info.quality.toFixed(0);
|
|
|
- outputBox.value[2].value = res.production_info.cihua_ratio.toFixed(0);
|
|
|
+ outputBox.value[2].value = res.production_info.zuoguo_ratio.toFixed(0);
|
|
|
qualityBox.value[0].value = res.ecology_info.ventilation;
|
|
|
qualityBox.value[1].value = res.ecology_info.transmittance;
|
|
|
qualityBox.value[2].value = res.ecology_info.dp_situation;
|