You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
377 B
10 lines
377 B
|
1 month ago
|
<template>
|
||
|
|
<time-count :stationType="stationType" :fixed="fixed" :requestPrefix="requestPrefix" :tableTitle="title"></time-count>
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import TimeCount from '@/components/TimeCount/index.vue'
|
||
|
|
const stationType = ref('C')
|
||
|
|
const fixed = ref(1)
|
||
|
|
const requestPrefix = ref('sddata')
|
||
|
|
const title = '水库水位时段统计(m)'
|
||
|
|
</script>
|