|
@@ -34,7 +34,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <Dialog v-model="showDialog" title="河道监测" width="2500px" height="1200px">
|
|
|
+ <Dialog v-model="showDialog" type="lg" title="河道监测" hide-footer>
|
|
|
<div class="flex">
|
|
|
<div class="detail-container">
|
|
|
<div class="flex">
|
|
@@ -90,15 +90,20 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</Dialog>
|
|
|
+
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup name="RiverMonitor">
|
|
|
-import Dialog from './Dialog.vue';
|
|
|
import { option1, option2 } from './echartOptions';
|
|
|
import { getRiverCourseLevel, getRiverList, getRiverWaterStatus } from '@/api/globalMap/riverMonitor';
|
|
|
import { parseTime, validateNum } from '@/utils/ruoyi';
|
|
|
import { getVideoInfo } from '@/api/globalMap';
|
|
|
|
|
|
+const handleClose = () => {
|
|
|
+ emits('update:show', false);
|
|
|
+};
|
|
|
+const emits = defineEmits(['update:show']);
|
|
|
+
|
|
|
// 请求参数
|
|
|
const queryParams = reactive({
|
|
|
area: ''
|