提交 | 用户 | 时间
|
850106
|
1 |
<template> |
H |
2 |
<div id="data-view"> |
|
3 |
<dv-full-screen-container> |
|
4 |
<control-index></control-index> |
|
5 |
</dv-full-screen-container> |
|
6 |
</div> |
|
7 |
</template> |
|
8 |
<script> |
|
9 |
import ControlIndex from "@/views/modules/scada/components/control-index.vue"; |
|
10 |
|
|
11 |
export default { |
|
12 |
components: {ControlIndex}, |
|
13 |
data() { |
|
14 |
return { |
|
15 |
} |
|
16 |
} |
|
17 |
} |
|
18 |
|
|
19 |
</script> |
|
20 |
<style scoped> |
|
21 |
#data-view { |
|
22 |
width: 100%; |
|
23 |
height: 100%; |
|
24 |
} |
|
25 |
|
|
26 |
#dv-full-screen-container { |
|
27 |
background-image: url("~@/assets/img/bg.png"); |
|
28 |
background-size: 100% 100%; |
|
29 |
box-shadow: 0 0 3px blue; |
|
30 |
display: flex; |
|
31 |
flex-direction: column; |
|
32 |
} |
|
33 |
</style> |