修改页面告警

This commit is contained in:
guanj
2025-11-14 09:51:18 +08:00
parent 8cd3e14922
commit 4c2ed4aade
19 changed files with 90 additions and 89 deletions

View File

@@ -15,9 +15,9 @@ import { mainHeight } from '@/utils/layout'
import { limitExtentDayData } from '@/api/harmonic-boot/cockpit/cockpit'
const prop = defineProps({
width: { type: String },
height: { type: String },
timeKey: { type: String },
width: { type: [String, Number]},
height: { type: [String, Number]},
timeKey: { type: [String, Number]},
timeValue: { type: Object }
})

View File

@@ -29,11 +29,11 @@ import { useRoute } from 'vue-router'
import { useTimeCacheStore } from '@/stores/timeCache'
const prop = defineProps({
w: { type: String },
h: { type: String },
width: { type: String },
height: { type: String },
timeKey: { type: String },
w: { type: [String, Number]},
h: { type: [String, Number]},
width: { type: [String, Number]},
height: { type: [String, Number]},
timeKey: { type: [String, Number]},
timeValue: { type: Object }
})