iscs火灾报警系统状态
This commit is contained in:
parent
c1aa6596fa
commit
e56aa4d004
File diff suppressed because one or more lines are too long
@ -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'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user