feat: 告警标题添加提示

This commit is contained in:
caiyuchao
2025-08-11 15:33:04 +08:00
parent 69a99ee693
commit cefd4b9c6f

View File

@@ -178,7 +178,7 @@ onMounted(async () => {
<template> <template>
<Page auto-content-height> <Page auto-content-height>
<Card title="告警配置"> <Card>
<Form /> <Form />
<div class="mt-4 flex justify-end"> <div class="mt-4 flex justify-end">
<Space> <Space>
@@ -186,6 +186,12 @@ onMounted(async () => {
<Button @click="handleReset">重置</Button> <Button @click="handleReset">重置</Button>
</Space> </Space>
</div> </div>
<template #title>
<span class="text-lg font-semibold">告警配置 </span>
<a-tooltip title="每天零点发送邮件提醒">
<span class="icon-[mdi--information-outline] text-gray-500"></span>
</a-tooltip>
</template>
</Card> </Card>
</Page> </Page>
</template> </template>