iscs火灾报警系统状态

This commit is contained in:
fan 2020-05-09 10:04:57 +08:00
parent c1aa6596fa
commit e56aa4d004
3 changed files with 29 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -95,6 +95,12 @@ export default {
mode: 'fas', mode: 'fas',
id: '12', id: '12',
type: 'interface' type: 'interface'
},
{
name: '系统状态',
mode: 'fas',
id: '13',
type: 'interface'
} }
] ]
}, },

View File

@ -1,20 +1,37 @@
<template> <template>
<div class=""> <div>
{{ $route.query.stationName }}系统报警 <div class="stand_title">{{ $route.query.stationName }}系统报警</div>
<div class="">
<iscsSystem ref="iscsPlate" :width-canvas="1820" :canvas-height="700" />
</div>
</div> </div>
</template> </template>
<script> <script>
import iscsSystem from '../canvas/iscsCanvas';
export default { export default {
components: {
iscsSystem
},
data() { data() {
return { return {
mes: '1111'
}; };
},
mounted() {
this.$refs.iscsPlate.show('13');
},
methods: {
} }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.stand_title{
width: 100%;
text-align: center;
font-size: 26px;
margin-top: 30px;
color: #56E5DE;
}
</style> </style>