Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
37e86d8f
提交
37e86d8f
authored
3月 10, 2026
作者:
张伊明
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://8.140.26.4:10003/caijian/risk-monitor
into zym-dev
上级
a4c01eef
fd9c110a
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
41 行增加
和
35 行删除
+41
-35
index.vue
...ew/components/fourSuppress/components/addDomain/index.vue
+2
-1
index.vue
...iew/components/fourSuppress/components/allUnion/index.vue
+1
-1
index.vue
src/views/ZMOverView/components/gameProfile/index.vue
+38
-33
没有找到文件。
src/views/ZMOverView/components/fourSuppress/components/addDomain/index.vue
浏览文件 @
37e86d8f
...
...
@@ -1084,7 +1084,8 @@ const processRankingData = rawData => {
// 新增字段
domains
:
item
.
domainList
?
item
.
domainList
.
map
(
d
=>
d
.
name
)
:
[],
date
:
formattedDate
,
member
:
item
.
keyMember
||
"-"
member
:
item
.
keyMember
||
"-"
,
province
:
item
.
province
||
""
};
});
};
...
...
src/views/ZMOverView/components/fourSuppress/components/allUnion/index.vue
浏览文件 @
37e86d8f
...
...
@@ -148,7 +148,7 @@
<
div
class
=
"warning"
>
<
div
class
=
"warning-title"
>
<
img
src
=
"./assets/warning.png"
alt
/>
<
span
>
新增排华联盟预警
1
<
/span
>
<
span
>
新增排华联盟预警
<
/span
>
<
/div
>
<
div
class
=
"warning-content"
>
<
div
class
=
"content-item"
v
-
for
=
"(item, index) in warningList"
:
key
=
"index"
>
...
...
src/views/ZMOverView/components/gameProfile/index.vue
浏览文件 @
37e86d8f
...
...
@@ -469,43 +469,45 @@ const handleIndicatorChange = indicator => {
{
name
:
"中国"
,
type
:
"line"
,
symbolSize
:
10
,
symbolSize
:
8
,
smooth
:
true
,
itemStyle
:
{
color
:
"#CE4F51"
},
areaStyle
:
{
color
:
new
echarts
.
graphic
.
LinearGradient
(
0
,
0
,
0
,
1
,
[
{
offset
:
0
,
color
:
"rgb(206, 79, 81, .8)"
},
{
offset
:
1
,
color
:
"rgb(206, 79, 81, .3)"
}
])
},
//
areaStyle: {
//
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
//
{
//
offset: 0,
//
color: "rgb(206, 79, 81, .8)"
//
},
//
{
//
offset: 1,
//
color: "rgb(206, 79, 81, .3)"
//
}
//
])
//
},
data
:
chinaValues
},
{
name
:
"美国"
,
type
:
"line"
,
symbolSize
:
10
,
smooth
:
true
,
symbolSize
:
8
,
itemStyle
:
{
color
:
"#055FC2"
},
areaStyle
:
{
color
:
new
echarts
.
graphic
.
LinearGradient
(
0
,
0
,
0
,
1
,
[
{
offset
:
0
,
color
:
"rgb(5, 95, 194,.8)"
},
{
offset
:
1
,
color
:
"rgb(5, 95, 194, .3)"
}
])
},
//
areaStyle: {
//
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
//
{
//
offset: 0,
//
color: "rgb(5, 95, 194,.8)"
//
},
//
{
//
offset: 1,
//
color: "rgb(5, 95, 194, .3)"
//
}
//
])
//
},
data
:
usaValues
}
];
...
...
@@ -540,22 +542,25 @@ const lineOption = ref({
xAxis
:
{
type
:
"category"
,
boundaryGap
:
false
,
minInterval
:
1
,
scale
:
true
,
axisLine
:
{
lineStyle
:
{
color
:
"#
ccc
"
,
color
:
"#
e0e0e0
"
,
width
:
1
}
},
axisTick
:
{
show
:
tru
e
,
show
:
fals
e
,
lineStyle
:
{
color
:
"#ccc"
}
},
axisLabel
:
{
color
:
"#ccc"
,
fontSize
:
16
,
fontWeight
:
400
color
:
"#666"
,
fontSize
:
13
,
fontWeight
:
500
,
margin
:
12
},
data
:
[
"2021"
,
"2022"
,
"2023"
,
"2024"
,
"2025"
]
},
...
...
@@ -571,9 +576,9 @@ const lineOption = ref({
padding
:
[
0
,
0
,
10
,
0
]
},
axisLine
:
{
show
:
fals
e
,
show
:
tru
e
,
lineStyle
:
{
color
:
"#
ccc
"
,
color
:
"#
e0e0e0
"
,
width
:
1
}
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论