新增预警页面

This commit is contained in:
2025-12-14 14:21:32 +08:00
parent 228dd136d8
commit 0b40608761
42 changed files with 4871 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div class="web-page-container">
<Tabs v-model:activeKey="activeKey">
<TabPane key="1" tab="发件箱">
<MailSent />
</TabPane>
<TabPane key="2" tab="收件箱">
<MailReceived />
</TabPane>
<TabPane key="3" tab="附件箱">
<MailAttachments />
</TabPane>
<TabPane key="4" tab="邮箱配置">
<MailAccount />
</TabPane>
</Tabs>
</div>
</template>
<script lang="ts" setup name="AboutPage">
import { h, ref } from 'vue';
import { Tag, Tabs ,TabPane } from 'ant-design-vue';
import MailSent from './sent/list.vue';
import MailReceived from './received/list.vue';
import MailAttachments from './attachments/list.vue';
import MailAccount from './account/list.vue';
const activeKey = ref('1');
</script>
<style scoped lang="less">
// 整体容器样式
.web-page-container {
width: 100%;
background-color: #e8f4f8;
display: flex;
flex-direction: column; // 垂直布局
overflow: hidden; // 防止内容溢出
}
</style>