逆变器综合监控

This commit is contained in:
tcy
2025-08-27 14:59:18 +08:00
parent 46bfa429d3
commit e6c92a3b51
19 changed files with 894 additions and 2 deletions

View File

@ -0,0 +1,23 @@
<template>
<div style="color: rgba(0, 30, 59, 1);;font-family: 'Alibaba-PuHuiTi-Bold';margin: 10px 0 0 0;"
:style="{ fontSize: fontLevelMap[props.fontLevel] }">
{{ props.title }}
</div>
<p style="color: rgba(154, 154, 154, 1);font-size: 14px;">
{{ props.subtitle }}
</p>
</template>
<script setup>
const props = defineProps({
title: String,
subtitle: String,
fontLevel: {
type: Number,
default: 1
}
})
const fontLevelMap = {
1: "24px",
2: "18px"
}
</script>