00
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
index 64f64378..66cc2d76 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
@@ -8,25 +8,25 @@
{{'positions_upperplate_lower_position' | localize('Quota inferiore')}}
-
+
{{'positions_upperplate_lower_speed' | localize('Velocità discesa')}}
-
+
{{'positions_upperplate_upper_position' | localize('Quota superiore')}}
-
+
{{'positions_upperplate_upper_speed' | localize('Velocità salita')}}
-
+
@@ -34,12 +34,12 @@
{{'positions_upperplate_upperdeceleration_position' | localize('Corsa')}}
-
+
{{'positions_upperplate_upperdeceleration_speed' | localize('Velocità di rallentamento salita')}}
-
+
@@ -47,12 +47,12 @@
{{'positions_upperplate_lowerdeceleration_position' | localize('Corsa')}}
-
+
{{'positions_upperplate_lowerdeceleration_speed' | localize('Velocità di rallentamento discesa')}}
-
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
index c4c6965c..898fcb58 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
@@ -8,13 +8,13 @@
{{'positions_frame_lower_position' | localize('Quota inferiore')}}
-
+
{{'positions_frame_lower_speed' | localize('Velocità discesa')}}
-
+
@@ -22,13 +22,13 @@
{{'positions_frame_intermediate_position' | localize('Quota intermedia')}}
-
+
{{'positions_frame_intermediate_speed' | localize('Velocità a quota intermedia')}}
-
+
@@ -36,13 +36,13 @@
{{'positions_frame_upper_position' | localize('Quota superiore')}}
-
+
{{'positions_frame_upper_speed' | localize('Velocità salita')}}
-
+
@@ -50,7 +50,7 @@
{{'positions_frame_unload_position' | localize('Quota')}}
-
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
index 2e87adbc..f8bb30d7 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
@@ -8,30 +8,30 @@
{{'positions_mould_lower_position' | localize('Quota inferiore')}}
-
+
{{'positions_mould_lower_speed' | localize('Velocità discesa')}}
-
+
{{'positions_mould_intermediate_position' | localize('Quota intermedia')}}
-
+
{{'positions_mould_upper_position' | localize('Quota superiore')}}
-
+
{{'positions_mould_upper_speed' | localize('Velocità salita')}}
-
+
@@ -39,12 +39,12 @@
{{'positions_mould_upperdeceleration_position' | localize('Corsa')}}
-
+
{{'positions_mould_upperdeceleration_speed' | localize('Velocità di rallentamento salita')}}
-
+
@@ -52,12 +52,12 @@
{{'positions_mould_lowerdeceleration_position' | localize('Corsa')}}
-
+
{{'positions_mould_lowerdeceleration_speed' | localize('Velocità di rallentamento discesa')}}
-
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.ts
index 9a4b6641..34be9ad8 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.ts
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.ts
@@ -3,11 +3,35 @@ import Component from 'vue-class-component';
import { Prop } from 'vue-property-decorator';
import Slider from "@/app_modules_thermo/components/slider.vue";
import Scheda from "@/app_modules_thermo/components/scheda.vue";
+import svgChart from "@/app_modules_thermo/components/svgChart.vue";
-@Component({ name: 'prevuoto', components: { slider: Slider } })
+@Component({ name: 'prevuoto', components: { slider: Slider,scheda:Scheda,svgChart } })
export default class Prevuoto extends Vue {
@Prop()
recipe: Recipe.IRecipe;
+ get bars() {
+ return [
+ {
+ backgroundColor: "#fff",
+ borderColor: "#848484",
+ height: this.recipe.vacuum_pre_1_chart_setpointx.setpointHMI,
+ width: this.recipe.vacuum_pre_1_chart_setpointy.setpointHMI
+ },
+ {
+ backgroundColor: "#e5f3ff",
+ borderColor: "#848484",
+ height: this.recipe.vacuum_pre_2_chart_setpointx.setpointHMI,
+ width: this.recipe.vacuum_pre_2_chart_setpointy.setpointHMI
+ },
+ {
+ backgroundColor: "#b3dbff",
+ borderColor: "#848484",
+ height: this.recipe.vacuum_pre_3_chart_setpointx.setpointHMI,
+ width: this.recipe.vacuum_pre_3_chart_setpointy.setpointHMI
+ }
+ ] as svg.BarChartInfo[]
+ }
+
}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue
index 051e8690..be48fc5d 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue
@@ -27,17 +27,18 @@
:durata="recipe.vacuum_pre_1_chart_setpointy"
>
+