A维护通知

This commit is contained in:
2025-12-25 14:30:04 +08:00
parent d34ce070c1
commit 2bcab90763
4 changed files with 97 additions and 4 deletions

82
src/views/Maintenance.vue Normal file
View File

@@ -0,0 +1,82 @@
<template>
<div class="maintenance-container">
<div class="notice-card">
<h2 class="notice-title">服务暂停通知</h2>
<div class="notice-content">
<p>因政策要求接上级主管部门通知我司现暂停婚姻报告服务恢复时间估计在元旦以后由此给您带来的不便我们深表歉意</p>
</div>
<div class="notice-footer">
<p>感谢您的理解与支持</p>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'Maintenance',
data() {
return {
// 可以在这里添加需要的数据
}
},
methods: {
// 可以在这里添加需要的方法
}
}
</script>
<style scoped>
.maintenance-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f5f7fa;
padding: 20px;
}
.notice-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
padding: 40px;
max-width: 600px;
width: 100%;
text-align: center;
}
.notice-title {
font-size: 24px;
color: #303133;
margin-bottom: 20px;
font-weight: bold;
}
.notice-content {
font-size: 16px;
color: #606266;
line-height: 1.6;
margin-bottom: 30px;
}
.notice-footer {
font-size: 14px;
color: #909399;
margin-top: 20px;
}
@media (max-width: 768px) {
.notice-card {
padding: 20px;
}
.notice-title {
font-size: 20px;
}
.notice-content {
font-size: 14px;
}
}
</style>

View File

@@ -93,7 +93,7 @@ const reportTypes = [
{ text: "个人大数据", value: "personaldata", id: 27 },
{ text: '入职风险', value: 'backgroundcheck', id: 1 },
{ text: '家政风险', value: 'homeservice', id: 3 },
{ text: '婚恋风险', value: 'marriage', id: 4 },
// { text: '婚恋风险', value: 'marriage', id: 4 },
// { text: '租赁风险', value: 'rentalrisk', id: 6 },
];