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',
id: '12',
type: 'interface'
},
{
name: '系统状态',
mode: 'fas',
id: '13',
type: 'interface'
}
]
},

View File

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