提交 23c9f7be authored 作者: huhuiqing's avatar huhuiqing

全文提示

上级 577538d8
...@@ -35,32 +35,32 @@ ...@@ -35,32 +35,32 @@
<el-dropdown-item command="/marketAccessRestrictions">市场准入限制</el-dropdown-item> <el-dropdown-item command="/marketAccessRestrictions">市场准入限制</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</template> </template>
</el-dropdown> </el-dropdown>
<div class="nav-link"> <div class="nav-link">
<el-icon> <el-icon>
<User /> <User />
</el-icon> </el-icon>
<span>国家</span> <span>国家</span>
</div> </div>
<div class="nav-link"> <div class="nav-link">
<el-icon> <el-icon>
<Location /> <Location />
</el-icon> </el-icon>
<span>领域</span> <span>领域</span>
</div> </div>
<div class="nav-link"> <div class="nav-link">
<el-icon> <el-icon>
<Document /> <Document />
</el-icon> </el-icon>
<span>要素</span> <span>要素</span>
</div> </div>
<div class="nav-link"> <div class="nav-link">
<el-icon> <el-icon>
<Bell /> <Bell />
</el-icon> </el-icon>
<span>事件</span> <span>事件</span>
</div> </div>
</div> --> </div> -->
<div class="user-info"> <div class="user-info">
<div class="email"> <div class="email">
<img src="@/assets/icons/header-icon.png" alt="" /> <img src="@/assets/icons/header-icon.png" alt="" />
...@@ -139,6 +139,17 @@ body { ...@@ -139,6 +139,17 @@ body {
body { body {
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
} }
.el-popover {
font-family: "Microsoft YaHei";
color: rgba(95, 101, 108, 1);
font-style: Regular;
font-size: 16px;
font-weight: 400;
line-height: 30px;
letter-spacing: 0px;
text-align: justify;
}
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
...@@ -182,6 +193,7 @@ body { ...@@ -182,6 +193,7 @@ body {
gap: 12px; gap: 12px;
position: absolute; position: absolute;
left: 160px; left: 160px;
.brand-icon { .brand-icon {
width: 48px; width: 48px;
height: 48px; height: 48px;
...@@ -200,6 +212,7 @@ body { ...@@ -200,6 +212,7 @@ body {
.brand-text { .brand-text {
cursor: pointer; cursor: pointer;
.text-ch { .text-ch {
height: 37px; height: 37px;
color: rgba(10, 18, 30, 1); color: rgba(10, 18, 30, 1);
......
...@@ -74,9 +74,16 @@ ...@@ -74,9 +74,16 @@
</div> </div>
<div class="card-title"> <div class="card-title">
<div class="title-left">{{ item.name }}</div> <div class="title-left">{{ item.name }}</div>
<div class="title-right">{{ item.country }}</div> <div class="title-right">{{ item.country }}</div>
</div> </div>
<el-popover effect="dark" trigger="click" :content="item.desc" placement="top-start">
<template #reference>
<div class="content">{{ item.desc }}</div> <div class="content">{{ item.desc }}</div>
</template>
</el-popover>
<div class="tag-box"> <div class="tag-box">
<div class="tag" :class="{ <div class="tag" :class="{
tag1: val.status === 1, tag1: val.status === 1,
...@@ -1397,8 +1404,8 @@ onMounted(async () => { ...@@ -1397,8 +1404,8 @@ onMounted(async () => {
// 索引加1 // 索引加1
box1DataIndex.value++; box1DataIndex.value++;
// 如果索引大于等于数组长度,重置为0,实现循环轮播 // 如果索引大于等于数组长度,重置为0,实现循环轮播
if (currentIndex >= box1Data.value.length) { if (box1DataIndex.value >= box1Data.value.length) {
currentIndex = 0; box1DataIndex.value = 0;
} }
}, 3000); // 2000毫秒,即2秒 }, 3000); // 2000毫秒,即2秒
handleGetNewReport(); handleGetNewReport();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论