Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
25767136
提交
25767136
authored
3月 27, 2026
作者:
coderBryanFu
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'pre' of
http://8.140.26.4:10003/caijian/risk-monitor
into fk-dev
上级
8f14bd53
bad81fff
流水线
#142
已失败 于阶段
in 34 秒
变更
8
流水线
1
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
75 行增加
和
51 行删除
+75
-51
index.vue
src/views/decree/allOrganization/index.vue
+1
-0
MindGraph.vue
src/views/decree/com/MindGraph.vue
+2
-1
index.vue
src/views/decree/decreeLayout/overview/measures/index.vue
+24
-10
index.vue
...ontrol/v2.0EntityList/components/dataStatistics/index.vue
+4
-4
index.vue
...ol/v2.0SingleSanction/components/dataStatistics/index.vue
+12
-4
index.vue
...ents/impactAnalysis/components/industrialImpact/index.vue
+4
-4
index.vue
...onents/impactAnalysis/components/researchImpact/index.vue
+26
-4
index.vue
...views/marketAccessRestrictions/marketAccessHome/index.vue
+2
-24
没有找到文件。
src/views/decree/allOrganization/index.vue
浏览文件 @
25767136
...
...
@@ -315,6 +315,7 @@ onMounted(() => {
.pagination-box
{
display
:
flex
;
justify-content
:
center
;
position
:
relative
;
}
}
}
...
...
src/views/decree/com/MindGraph.vue
浏览文件 @
25767136
...
...
@@ -51,7 +51,8 @@ const onInitGraph = () => {
rankdir
:
'LR'
,
// 布局从左向右
controlPoints
:
true
,
// 节点间连线的控制点
nodesep
:
10
,
// 同一层节点之间的距离
ranksep
:
50
,
// 不同层节点之间的距离
ranksep
:
100
,
// 不同层节点之间的距离
// begin: [250, 100], // 左上角坐标
},
modes
:
{
default
:
[
...
...
src/views/decree/decreeLayout/overview/measures/index.vue
浏览文件 @
25767136
...
...
@@ -123,7 +123,7 @@
</div>
</div>
<el-dialog
v-model=
"isTreeDialog"
width=
"1
54
0px"
top=
"8vh"
class=
"viewpoint-dialog"
destroy-on-close
>
<el-dialog
v-model=
"isTreeDialog"
width=
"1
40
0px"
top=
"8vh"
class=
"viewpoint-dialog"
destroy-on-close
>
<
template
#
header
>
<div
class=
"viewpoint-header"
>
<div
class=
"viewpoint-title"
>
政令举措思维导图
</div>
...
...
@@ -318,20 +318,22 @@ const onDecreeMindMap = async () => {
if
(
res
.
code
===
200
)
{
let
nodes
=
[]
let
edges
=
[]
Object
.
keys
(
res
.
data
||
{}).
forEach
((
label
,
count
)
=>
{
nodes
.
push
({
id
:
`node-
${
count
}
`
,
label
})
})
Object
.
values
(
res
.
data
||
{}).
forEach
((
list
,
count
)
=>
{
let
obj
=
{}
let
list
=
onUniqueArray
(
Object
.
values
(
res
.
data
||
{}).
flat
(
1
),
'sectionId'
)
list
.
forEach
((
item
,
index
)
=>
{
nodes
.
push
({
id
:
`node-
${
item
.
orderNum
}
-
${
item
.
sectionId
}
`
,
label
:
item
.
textZh
,
maxWidth
:
600
,
labelCfg
,
layer
:
1
})
if
(
item
.
execAgent
?.
length
)
{
nodes
.
push
({
id
:
`node-
${
count
}
-
${
index
}
`
,
label
:
item
.
textZh
,
maxWidth
:
600
,
labelCfg
})
item
.
execAgent
.
forEach
((
label
,
num
)
=>
{
nodes
.
push
({
id
:
`node-
${
count
}
-
${
index
}
-
${
num
}
`
,
label
})
edges
.
push
({
id
:
`edge1-
${
count
}
-
${
index
}
-
${
num
}
`
,
source
:
`node-
${
count
}
-
${
index
}
-
${
num
}
`
,
target
:
`node-
${
count
}
-
${
index
}
`
})
edges
.
push
({
id
:
`edge2-
${
count
}
-
${
index
}
-
${
num
}
`
,
source
:
`node-
${
count
}
`
,
target
:
`node-
${
count
}
-
${
index
}
-
${
num
}
`
})
})
if
(
!
obj
[
label
])
{
obj
[
label
]
=
`
${
index
}
-
${
num
}
`
nodes
.
push
({
id
:
`node-
${
obj
[
label
]}
`
,
label
,
layer
:
0
})
}
edges
.
push
({
id
:
`edge-
${
index
}
-
${
num
}
`
,
source
:
`node-
${
obj
[
label
]}
`
,
target
:
`node-
${
item
.
orderNum
}
-
${
item
.
sectionId
}
`
})
})
}
else
{
edges
.
push
({
id
:
`edge-
${
index
}
`
,
source
:
`root-virtual`
,
target
:
`node-
${
item
.
orderNum
}
-
${
item
.
sectionId
}
`
})
}
})
setTimeout
(()
=>
{
refMindGraph
.
value
.
onMindGraphData
(
nodes
,
edges
)
},
100
)
...
...
@@ -341,6 +343,18 @@ const onDecreeMindMap = async () => {
}
}
// 对象数组去重
const
onUniqueArray
=
(
list
,
key
=
'id'
)
=>
{
const
obj
=
{};
return
list
.
reduce
((
total
,
item
)
=>
{
if
(
!
obj
[
String
(
item
[
key
])])
{
obj
[
String
(
item
[
key
])]
=
true
;
total
.
push
(
item
);
}
return
total
;
},
[]);
}
// 相关实体
const
entityList
=
ref
([]);
const
onRelatedEntityData
=
async
()
=>
{
...
...
src/views/exportControl/v2.0EntityList/components/dataStatistics/index.vue
浏览文件 @
25767136
...
...
@@ -125,7 +125,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"sanctionCountChart.interpretation"
/>
<AiPane
:aiContent=
"sanctionCountChart.
loading ? '解读生成中...' : sanctionCountChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -174,7 +174,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"rankChart.interpretation"
/>
<AiPane
:aiContent=
"rankChart.
loading ? '解读生成中...' : rankChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -206,7 +206,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"domainChart.interpretation"
/>
<AiPane
:aiContent=
"domainChart.
loading ? '解读生成中...' : domainChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -238,7 +238,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"typeChart.interpretation"
/>
<AiPane
:aiContent=
"typeChart.
loading ? '解读生成中...' : typeChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
src/views/exportControl/v2.0SingleSanction/components/dataStatistics/index.vue
浏览文件 @
25767136
...
...
@@ -63,7 +63,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"domainChart.interpretation"
/>
<AiPane
:aiContent=
"domainChart.
loading ? '解读生成中...' : domainChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -113,7 +113,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"typeChart.interpretation"
/>
<AiPane
:aiContent=
"typeChart.
loading ? '解读生成中...' : typeChart.
interpretation"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -154,7 +154,11 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"countryDistributionChart.interpretation"
/>
<AiPane
:aiContent=
"
countryDistributionChart.loading ? '解读生成中...' : countryDistributionChart.interpretation
"
/>
</div>
</AnalysisBox>
</div>
...
...
@@ -198,7 +202,11 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"regionDistributionChart.interpretation"
/>
<AiPane
:aiContent=
"
regionDistributionChart.loading ? '解读生成中...' : regionDistributionChart.interpretation
"
/>
</div>
</AnalysisBox>
</div>
...
...
src/views/exportControl/v2.0SingleSanction/components/impactAnalysis/components/industrialImpact/index.vue
浏览文件 @
25767136
...
...
@@ -146,7 +146,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"revenueChart.interpretation"
/>
<AiPane
:aiContent=
"revenueChart.
loading ? '解读生成中...' : revenueChart.
interpretation"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -188,7 +188,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"marketChart.interpretation"
/>
<AiPane
:aiContent=
"marketChart.
loading ? '解读生成中...' : marketChart.
interpretation"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -249,7 +249,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"rdChart.interpretation"
/>
<AiPane
:aiContent=
"rdChart.
loading ? '解读生成中...' : rdChart.
interpretation"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -310,7 +310,7 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"shareChart.interpretation"
/>
<AiPane
:aiContent=
"shareChart.
loading ? '解读生成中...' : shareChart.
interpretation"
/>
</div>
</div>
</AnalysisBox>
...
...
src/views/exportControl/v2.0SingleSanction/components/impactAnalysis/components/researchImpact/index.vue
浏览文件 @
25767136
...
...
@@ -60,7 +60,13 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"rdInstrumentDependencyChart.interpretation"
/>
<AiPane
:aiContent=
"
rdInstrumentDependencyChart.loading
? '解读生成中...'
: rdInstrumentDependencyChart.interpretation
"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -96,7 +102,13 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"rdInstrumentImportCountryChart.interpretation"
/>
<AiPane
:aiContent=
"
rdInstrumentImportCountryChart.loading
? '解读生成中...'
: rdInstrumentImportCountryChart.interpretation
"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -165,7 +177,13 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"internationalCooperationChart.interpretation"
/>
<AiPane
:aiContent=
"
internationalCooperationChart.loading
? '解读生成中...'
: internationalCooperationChart.interpretation
"
/>
</div>
</div>
</AnalysisBox>
...
...
@@ -234,7 +252,11 @@
</div>
<div
class=
"ai-pane"
>
<AiButton
/>
<AiPane
:aiContent=
"internationalPaperChart.interpretation"
/>
<AiPane
:aiContent=
"
internationalPaperChart.loading ? '解读生成中...' : internationalPaperChart.interpretation
"
/>
</div>
</div>
</AnalysisBox>
...
...
src/views/marketAccessRestrictions/marketAccessHome/index.vue
浏览文件 @
25767136
...
...
@@ -330,7 +330,7 @@
<
div
class
=
"right-main"
>
<
el
-
empty
v
-
if
=
"surveyInfoList.length === 0"
description
=
"当前条件下暂无数据"
:
image
-
size
=
"200"
/>
<
div
v
-
else
class
=
"right-main-item"
v
-
for
=
"(item, index) in surveyInfoList"
:
key
=
"index"
@
click
=
"handleClick
ToSurveyDetail(item.sortcod
e)"
>
@
click
=
"handleClick
CardToDetail(item.sortcode, item.sortNam
e)"
>
<
div
class
=
"item-left"
>
<
div
class
=
"item-left-item"
>
{{
formatDate
(
item
.
searchdate
,
'year'
)
}}
<
/div
>
<
div
class
=
"item-left-item"
>
{{
formatDate
(
item
.
searchdate
,
'date'
)
}}
<
/div
>
...
...
@@ -495,23 +495,11 @@ const handleClickToDetail = () => {
activeIndex = carouselRef.value.activeIndex;
}
console.log("当前 Carousel 激活索引:", activeIndex);
const id = box1DataList.value[activeIndex].SEARCHSORT;
window.sessionStorage.setItem("curTabName", id + "调查概览");
const route = router.resolve({
path: "/marketAccessLayout",
query: {
id: id
}
}
);
window.open(route.href, "_blank");
handleClickCardToDetail(id, id + "调查概览")
}
;
const handleClickCardToDetail = (id, name) => {
// console.log('id',id);
window.sessionStorage.setItem("curTabName", name);
const route = router.resolve({
path: "/marketAccessLayout",
...
...
@@ -1319,16 +1307,6 @@ const handleGetSurveyList = async () => {
}
catch (error) {
}
}
;
const handleClickToSurveyDetail = id => {
const route = router.resolve({
path: "/marketAccessLayout",
query: {
id: id
}
}
);
window.open(route.href, "_blank");
}
;
// 查看更多风险信号
const handleToMoreRiskSignal = () => {
const route = router.resolve("/viewRiskSignal");
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论