12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <script setup>
- import BasicInfor from "../Table/components/BasicInfor.vue"
- import WaterLeveChart from "../Table/components/WaterLevelChart.vue"
- import TianluEngin from "../Table/components/TianluEngin.vue"
- </script>
- <template>
- <jt-popup2 title="农田基本信息" ref="BasicInfor">
- <BasicInfor></BasicInfor>
- </jt-popup2>
- <jt-popup2 title="田路工程" top="calc(calc(100% - 115rem) / 3 + 90rem)" ref="RoadProject">
- <TianluEngin></TianluEngin>
- </jt-popup2>
- <jt-popup2 title="水利工程" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" ref="WaterProject">
- <WaterLeveChart></WaterLeveChart>
- </jt-popup2>
- <jt-popup3 title="用水量统计" ref="ysltj">
- </jt-popup3>
- <jt-popup3 title="能耗同比统计" top="calc(calc(100% - 115rem) / 3 + 90rem)" ref="nhtbtj">
- </jt-popup3>
- <jt-popup3 title="智能监控" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" ref="znjk">
- </jt-popup3>
- </template>
- <script>
- export default {
- name: 'Test',
- /* 数据 */
- data() {
- return {
- }
- },
- /* 方法 */
- methods: {
- },
- // ?tableName=map_region&sqlWhere=&orderByField=
- /* 初始化 */
- mounted() {
- },
- }
- </script>
- <style scoped>
- </style>
|