Files
polaris_hmi/frontend/src/views/AtmosphereManualView.vue
2025-11-17 08:44:00 +01:00

43 lines
1.0 KiB
Vue

<template>
<v-container class="d-flex">
<v-row>
<v-col cols="3">
<valve-control
valve-name="QM01"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stBeforePCValve"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM02"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stBeforePfmValveHMI"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM09"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stAfterPfmValveHMI"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM40"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stInertAndPurgeOutletValve"
/>
</v-col>
</v-row>
</v-container>
</template>
<script>
import ValveControl from '@/components/BaseComponents/ValveControl.vue'
export default {
name: 'AtmoManualView',
components: {
ValveControl,
}
}
</script>