123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <script setup>
- import cqjcyj from "./components/cqjcyj.vue";
- import cqzrqs from "./components/cqzrqs.vue";
- import WeatherWatch from './components/WeatherWatch.vue';
- import disaster from './components/disaster.vue';
- </script>
- <template>
- <jt-popup2 title="环境变化" >
- <disaster></disaster>
- </jt-popup2>
-
- <jt-popup2 title="虫情检测预警" top="calc(calc(100% - 115rem) / 3 + 90rem)" >
- <cqjcyj></cqjcyj>
- </jt-popup2>
-
- <jt-popup2 title="" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" >
-
- </jt-popup2>
-
- <jt-popup3 title="气象监测">
- <WeatherWatch></WeatherWatch>
- </jt-popup3>
-
- <jt-popup3 title="虫情逐日趋势" top="calc(calc(100% - 115rem) / 3 + 90rem)">
- <cqzrqs></cqzrqs>
- </jt-popup3>
-
- <jt-popup3 title="" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)">
-
- </jt-popup3>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods:{
-
- },
- mounted() {
-
- },
- created() {
-
- }
- }
- </script>
- <style scoped>
- .main {
- width: 100%;
- height: 100%;
- }
-
- </style>
|