rt-sim-training-client/src/views/system/iscsSystem/config/index.vue

40 lines
805 B
Vue
Raw Normal View History

2020-01-17 17:48:08 +08:00
<template>
<div style="height: 100%; width: 100%;">
<standFAS v-if="mode == 'standFAS'" />
<stationHallFAS v-if="mode == 'stationHallFAS'" />
<systemFAS v-if="mode == 'systemFAS'" />
2020-01-19 15:29:05 +08:00
<home-screen v-if="mode === 'PA'" />
2020-01-17 17:48:08 +08:00
</div>
</template>
<script>
import standFAS from './fire-alarm/stand';
import stationHallFAS from './fire-alarm/stationHall';
import systemFAS from './fire-alarm/system';
2020-01-19 15:29:05 +08:00
import HomeScreen from './broadcast/homeScreen';
2020-01-17 17:48:08 +08:00
export default {
components: {
standFAS,
stationHallFAS,
2020-01-19 15:29:05 +08:00
systemFAS,
HomeScreen
2020-01-17 17:48:08 +08:00
},
props: {
mode: {
type: String,
required: true
}
},
data() {
return {
mes: '1111'
};
}
};
</script>
<style lang="scss" scoped>
</style>