Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
492a35de
提交
492a35de
authored
4月 24, 2026
作者:
张伊明
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'zz-dev' 到 'pre'
feat:全部智库点击跳转功能完善;多智库功能鼠标悬浮小手 查看合并请求
!394
上级
294eb4d9
23825695
流水线
#650
已通过 于阶段
in 1 分 37 秒
变更
4
流水线
2
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
3 行删除
+20
-3
setChart.js
src/utils/setChart.js
+4
-0
index.vue
src/views/thinkTank/MultiThinkTankViewAnalysis/index.vue
+4
-1
index.vue
src/views/thinkTank/allThinkTank/index.vue
+11
-1
index.vue
src/views/thinkTank/index.vue
+1
-1
没有找到文件。
src/utils/setChart.js
浏览文件 @
492a35de
...
...
@@ -6,6 +6,10 @@ import 'echarts-wordcloud';
import
router
from
'@/router/index'
// import { goToDataCountryBill, goToDataDecree, goToDataThinkTank } from './goToPage';
import
goToPage
from
'./goToPage/index'
;
/** 与 multiLineChart 等 option.graphic 约定一致:自定义图例翻页箭头 */
const
LEGEND_ARROW_NAMES
=
new
Set
([
'__legend_prev__'
,
'__legend_next__'
]);
const
setChart
=
(
option
,
chartId
,
allowClick
,
selectParam
,
otherAreaList
)
=>
{
let
chartDom
=
document
.
getElementById
(
chartId
);
if
(
!
chartDom
)
{
...
...
src/views/thinkTank/MultiThinkTankViewAnalysis/index.vue
浏览文件 @
492a35de
...
...
@@ -1449,6 +1449,7 @@ onMounted(async () => {
border
-
bottom
:
1
px
solid
rgb
(
234
,
236
,
238
);
flex
-
shrink
:
0
;
display
:
flex
;
cursor
:
pointer
;
/* 防止item被挤压变形 */
.
left
{
...
...
@@ -1559,7 +1560,7 @@ onMounted(async () => {
.
page
-
box
{
margin
-
top
:
21
px
;
align
-
items
:
center
;
align
-
items
:
center
;
justify
-
content
:
center
;
display
:
flex
;
}
...
...
@@ -2218,6 +2219,7 @@ onMounted(async () => {
line
-
height
:
30
px
;
letter
-
spacing
:
0
;
text
-
align
:
justify
;
cursor
:
pointer
;
}
.
source
-
view
-
detail
-
org
{
...
...
@@ -2541,6 +2543,7 @@ onMounted(async () => {
line
-
height
:
30
px
;
letter
-
spacing
:
0
;
text
-
align
:
justify
;
cursor
:
pointer
;
}
.
source
-
view
-
detail
-
org
{
...
...
src/views/thinkTank/allThinkTank/index.vue
浏览文件 @
492a35de
...
...
@@ -205,7 +205,14 @@ const handleClick = tank => {
ElMessage
.
warning
(
"当前智库id为空,无法进入详情页"
);
return
;
}
const
curRoute
=
router
.
resolve
({
name
:
"ThinkTankDetail"
,
params
:
{
id
:
tank
.
id
,
name
:
tank
.
name
}
});
let
encoded
;
try
{
encoded
=
btoa
(
encodeURIComponent
(
String
(
tank
.
id
)));
}
catch
(
e
)
{
ElMessage
.
warning
(
"当前智库id编码失败,无法进入详情页"
);
return
;
}
const
curRoute
=
router
.
resolve
({
name
:
"ThinkTankDetail"
,
params
:
{
id
:
encoded
}
});
window
.
open
(
curRoute
.
href
,
"_blank"
);
};
onMounted
(
async
()
=>
{
...
...
@@ -253,6 +260,7 @@ onMounted(async () => {
min-height
:
80px
;
position
:
relative
;
.to-back-btn
{
position
:
absolute
;
left
:
calc
(
50%
-
76px
-
1600px
/
2
-
20px
-
33px
);
...
...
@@ -266,6 +274,7 @@ onMounted(async () => {
padding-left
:
20px
;
margin-top
:
24px
;
box-shadow
:
0px
0px
20px
0px
rgba
(
25
,
69
,
130
,
0
.1
);
cursor
:
pointer
;
.back-text
{
...
...
@@ -468,6 +477,7 @@ onMounted(async () => {
padding-top
:
17px
;
padding-bottom
:
21px
;
position
:
relative
;
cursor
:
pointer
;
.red-info
{
color
:
rgb
(
255
,
255
,
255
);
...
...
src/views/thinkTank/index.vue
浏览文件 @
492a35de
...
...
@@ -1808,7 +1808,7 @@ const handleBox8ToDataLibrary = (item) => {
}
// 资源库
const
categoryList
=
ref
([
"智库报告"
,
"调查项目"
,
"国会听证会"
,
"政策建议"
]);
const
categoryList
=
ref
([
"智库报告"
,
"调查项目"
,
"国会听证会"
]);
const
activeCate
=
ref
(
"智库报告"
);
const
resourceTabResetKey
=
ref
(
0
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论