Initial commit
This commit is contained in:
42
frontend/src/views/AtmosphereManualView.vue
Normal file
42
frontend/src/views/AtmosphereManualView.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user