Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
372363a0
提交
372363a0
authored
1月 19, 2026
作者:
huhuiqing
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://8.140.26.4:10003/caijian/risk-monitor
into dev_hhq
上级
71d648ee
15ee7bad
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
52 行增加
和
17 行删除
+52
-17
allGovernment.js
src/api/allGovernment.js
+18
-3
allUnion.js
src/api/allUnion.js
+4
-2
index.js
src/api/zmOverview/allDomains/index.js
+17
-4
index.vue
...ew/components/fourSuppress/components/addDomain/index.vue
+0
-0
multiLineChart.js
...nents/fourSuppress/components/addDomain/multiLineChart.js
+3
-2
index.vue
...w/components/fourSuppress/components/allElement/index.vue
+3
-1
index.vue
...omponents/fourSuppress/components/allGovernment/index.vue
+0
-0
index.vue
...iew/components/fourSuppress/components/allUnion/index.vue
+0
-0
index.vue
src/views/ZMOverView/index.vue
+7
-5
没有找到文件。
src/api/allGovernment.js
浏览文件 @
372363a0
...
...
@@ -3,11 +3,13 @@ import request from "@/api/request.js";
// 全政府-获取美国政府部门制裁数据
/**
* @header token
* * @param {String} params.monthNum // 月份数
*/
export
function
getAllGovernmentList
()
{
export
function
getAllGovernmentList
(
params
)
{
return
request
({
method
:
'GET'
,
url
:
`/api/rivalryIndex/governmentSanctionsData`
url
:
`/api/rivalryIndex/governmentSanctionsData`
,
params
})
}
...
...
@@ -17,7 +19,7 @@ export function getAllGovernmentList() {
* @header token
* @param {Object} params
* @param {String} params.field // 领域
* @param {String} params.monthNum
= 12
// 月份数
* @param {String} params.monthNum // 月份数
* @param {String} params.orgId // 机构ID
* @param {String} params.sanType // 制裁手段
*/
...
...
@@ -66,3 +68,15 @@ export function getUSGovernmentSanctionHistory(params) {
params
})
}
// 全政府-获取部门数据
/**
* @header token
*/
export
function
getDepartmentList
()
{
return
request
({
method
:
'GET'
,
url
:
`/api/organization/summaryDepartList`
})
}
\ No newline at end of file
src/api/allUnion.js
浏览文件 @
372363a0
...
...
@@ -3,11 +3,13 @@ import request from "@/api/request.js";
// 全联盟-获取联盟列表
/**
* @header token
* @param {Object} params
* @param {String} params.date - 日期
*/
export
function
getAllUnionList
()
{
export
function
getAllUnionList
(
params
)
{
return
request
({
method
:
'GET'
,
url
:
`/api/union/union/unionList`
url
:
`/api/union/union/unionList
/
${
params
.
date
}
`
})
}
...
...
src/api/zmOverview/allDomains/index.js
浏览文件 @
372363a0
...
...
@@ -2,18 +2,31 @@ import request from "@/api/request.js";
// 全领域
// 全领域统计
export
function
getAllDomainCount
()
{
/**
* @header token
* @param {Object} params
* @param {String} params.startDate - 开始日期
* @param {String} params.endDate - 结束日期
*/
export
function
getAllDomainCount
(
params
)
{
return
request
({
method
:
"GET"
,
url
:
`/api/rivalryIndexV2/AllDomainCount`
url
:
`/api/rivalryIndexV2/AllDomainCount`
,
params
});
}
// 美对华制裁措施数量趋势
export
function
getDomainContainmentTrend
(
byYOrM
=
"按月统计"
)
{
/**
* @header token
* @param {Object} params
* @param {String} params.byYOrM - 按月统计或按年统计
*/
export
function
getDomainContainmentTrend
(
params
)
{
return
request
({
method
:
"GET"
,
url
:
`/api/rivalryIndexV2/DomainContainmentTrend?byYOrM=
${
byYOrM
}
`
url
:
`/api/rivalryIndexV2/DomainContainmentTrend`
,
params
});
}
...
...
src/views/ZMOverView/components/fourSuppress/components/addDomain/index.vue
浏览文件 @
372363a0
差异被折叠。
点击展开。
src/views/ZMOverView/components/fourSuppress/components/addDomain/multiLineChart.js
浏览文件 @
372363a0
...
...
@@ -10,6 +10,7 @@ const getMultiLineChart = (data) => {
const
echartsSeries
=
series
.
map
((
item
,
index
)
=>
({
name
:
item
.
name
,
type
:
'line'
,
smooth
:
true
,
symbol
:
'circle'
,
symbolSize
:
8
,
itemStyle
:
{
...
...
@@ -88,8 +89,8 @@ const getMultiLineChart = (data) => {
{
type
:
'value'
,
min
:
0
,
max
:
100
,
interval
:
20
,
//
max: 100,
//
interval: 20,
axisLine
:
{
show
:
false
},
...
...
src/views/ZMOverView/components/fourSuppress/components/allElement/index.vue
浏览文件 @
372363a0
...
...
@@ -212,7 +212,7 @@
<
/template
>
<
script
setup
>
import
{
onMounted
,
ref
,
computed
}
from
"vue"
;
import
{
onMounted
,
ref
,
computed
,
inject
}
from
"vue"
;
import
setChart
from
"@/utils/setChart"
;
import
getWordCloudChart
from
"./uitls/worldCloudChart"
;
import
{
...
...
@@ -225,6 +225,8 @@ import {
getOrderInfo
}
from
"@/api/zmOverview/allElement"
;
const
activeDate
=
inject
(
"activeDate"
);
// 全要素统计
const
headerList
=
ref
([]);
const
handleGetHeaderList
=
async
()
=>
{
...
...
src/views/ZMOverView/components/fourSuppress/components/allGovernment/index.vue
浏览文件 @
372363a0
差异被折叠。
点击展开。
src/views/ZMOverView/components/fourSuppress/components/allUnion/index.vue
浏览文件 @
372363a0
差异被折叠。
点击展开。
src/views/ZMOverView/index.vue
浏览文件 @
372363a0
...
...
@@ -81,7 +81,7 @@
</
template
>
<
script
setup
>
import
{
onMounted
,
ref
,
computed
}
from
"vue"
;
import
{
onMounted
,
ref
,
computed
,
provide
}
from
"vue"
;
import
{
useRouter
}
from
"vue-router"
;
import
{
ElMessage
}
from
"element-plus"
;
import
background
from
"./assets/images/backgroundBT.png"
;
...
...
@@ -149,11 +149,13 @@ const handleToSearch = () => {
};
const
dateList
=
ref
([
{
name
:
"本周"
,
type
:
"week"
,
icon
:
week
,
activeIcon
:
weekActive
},
{
name
:
"本月"
,
type
:
"month"
,
icon
:
month
,
activeIcon
:
monthActive
},
{
name
:
"今年"
,
type
:
"year"
,
icon
:
year
,
activeIcon
:
yearActive
}
{
name
:
"近一个月"
,
type
:
"week"
,
icon
:
week
,
activeIcon
:
weekActive
},
{
name
:
"近三个月"
,
type
:
"three_month"
,
icon
:
month
,
activeIcon
:
monthActive
},
{
name
:
"近半年"
,
type
:
"six_month"
,
icon
:
month
,
activeIcon
:
monthActive
},
{
name
:
"近一年"
,
type
:
"year"
,
icon
:
year
,
activeIcon
:
yearActive
}
]);
const
activeDate
=
ref
(
"week"
);
provide
(
"activeDate"
,
activeDate
);
const
handleDateClick
=
type
=>
{
activeDate
.
value
=
type
;
};
...
...
@@ -270,7 +272,7 @@ const handleDateClick = type => {
position
:
relative
;
margin-top
:
64px
;
.data-select
{
width
:
1
2
0px
;
width
:
1
4
0px
;
height
:
144px
;
position
:
absolute
;
top
:
80px
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论