Tcode平台改造升级-页面字段展示优化及定价页面路由创建

This commit is contained in:
fmk1023
2025-12-01 10:20:14 +08:00
parent 4440333736
commit e01a050f80
4 changed files with 40 additions and 13 deletions

View File

@@ -69,7 +69,7 @@
class="hover-lift"
:style="{ animationDelay: `${index * 100}ms` }"
>
<div style="width: 100px;height: 84px;flex-direction: column;padding: 12px;margin: 0 12px"
<div style="width: 100px;height: 84px;flex-direction: column;padding: 12px 0;margin: 0 12px"
class="bg-white rounded-lg shadow-md flex items-center justify-center mb-2">
<div>
<img style="width: 32px;height: 32px;margin-bottom: 4px" :src="item.icon"
@@ -306,21 +306,21 @@ import aqzk from '@/assets/imgs/jyh/menu/可信治理.png'
import kxrj from '@/assets/imgs/jyh/menu/可信软件.png'
// 顶部功能按钮数据 (保持不变)
const topButtons = ref([
{name: '安全知识库', icon: aqzk},
{name: '安全检测', icon: aqjc},
{name: '安全情报', icon: aqqb},
{name: '安全态势', icon: aqts},
{name: '智能引擎', icon: kxrj},
{name: '数据服务中心', icon: aqzk},
{name: '安全治理服务', icon: aqjc},
{name: '威胁情报', icon: aqqb},
{name: '态势感知中心', icon: aqts},
{name: 'AI智能引擎', icon: kxrj},
]);
// 按钮点击事件处理 (保持不变)
const handleButtonClick = (item) => {
const routeMap = {
'安全知识库': 'Search',
'安全检测': 'TestingCenter',
'安全情报': 'Insights',
'智能引擎': 'aihome',
'安全态势': 'http://222.20.126.217:10010/bigScreen/#/kxky'
'数据服务中心': 'Search',
'安全治理服务': 'TestingCenter',
'威胁情报': 'Insights',
'AI智能引擎': 'aihome',
'态势感知中心': 'http://222.20.126.217:10010/bigScreen/#/kxky'
};
const target = routeMap[item.name];
@@ -716,7 +716,7 @@ $primary-color: #5e7ce0;
// 威胁监控卡片
.data-card {
.data-item {
margin-bottom: 24px;
margin-bottom: 20px;
background: #f1f5fc;
border-radius: 8px;
padding: 16px;

View File

@@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: "Pricing"
}
</script>
<style scoped>
</style>