feat:新增舆情页面

This commit is contained in:
zjc
2024-12-18 18:16:36 +08:00
parent 18ba2e86eb
commit 42a680c9c3
4 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,57 @@
<template>
<Header title="舆情检测" />
<CoreVideo />
<div class="container">
<div class="flex">
<div class="box-1 mr-10">
<Title1 title="最新舆情" />
</div>
<div class="box-2 mr-10">
<div class="flex justify-center">
<div class="flex">
<count-item label="今日预警" :count="35600" suffix="条" />
<count-item label="今日预警" :count="35600" suffix="条" />
<count-item label="今日预警" :count="35600" suffix="条" />
</div>
</div>
</div>
<div class="box-1">
<Title1 title="数据来源分析" />
</div>
</div>
<div class="flex mt-10">
<div class="box-2 mr-10">
<Title1 title="舆情指数" />
</div>
<div class="box-1 mr-10">
<Title1 title="情感分布" />
</div>
<div class="box-1 mr-10">
<Title1 title="词频分析" />
</div>
</div>
</div>
<Correspondence />
</template>
<script setup></script>
<style scoped lang="scss">
.container {
flex: 1;
margin: vh(120) vw(10) 0 vw(10);
.bg {
background: linear-gradient(321deg, #0b2f64 0%, #062b57 100%);
}
.box-1 {
width: vw(770);
height: vh(470);
@extend .bg;
}
.box-2 {
width: vw(1574);
height: vh(470);
@extend .bg;
}
}
</style>