民意中心系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.9 KiB

<template>
<div class="page-container">
<div class="glass-card">
<div class="header">
<a-space size="middle">
<div class="icon-wrapper">
<GlobalOutlined class="icon" />
</div>
<div>
<h2 class="title">网络民意监测</h2>
<p class="subtitle">采集贴吧微博论坛等网络平台的警务负面舆情并生成督察监测警报</p>
</div>
</a-space>
</div>
<div class="content-box">
<div class="table-placeholder">
<a-empty description="网络民意监测中心/涉警舆情预警系统对接中" />
</div>
</div>
</div>
</div>
</template>
<script setup>
import { GlobalOutlined } from '@ant-design/icons-vue';
</script>
<style scoped>
.page-container {
padding: 16px;
min-height: calc(100vh - 120px);
}
.glass-card {
background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 12px;
padding: 24px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}
.header {
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
padding-bottom: 16px;
margin-bottom: 20px;
}
.icon-wrapper {
background: linear-gradient(135deg, #0050b3 0%, #096dd9 100%);
width: 48px;
height: 48px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: 0 4px 12px rgba(0, 80, 179, 0.25);
}
.icon {
font-size: 24px;
}
.title {
font-size: 18px;
font-weight: 600;
color: #1a1a1a;
margin: 0;
}
.subtitle {
font-size: 13px;
color: #666;
margin: 4px 0 0 0;
}
.table-placeholder {
min-height: 250px;
display: flex;
align-items: center;
justify-content: center;
border: 1px dashed rgba(0, 0, 0, 0.08);
border-radius: 8px;
background: rgba(255, 255, 255, 0.2);
}
</style>