Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
c049c54d
提交
c049c54d
authored
4月 23, 2026
作者:
朱政
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:全部智库点击跳转功能完善;多智库功能鼠标悬浮小手
Co-authored-by:
Copilot
<
copilot@github.com
>
上级
72613fb4
流水线
#642
已取消 于阶段
变更
2
流水线
1
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
14 行增加
和
1 行删除
+14
-1
index.vue
src/views/thinkTank/MultiThinkTankViewAnalysis/index.vue
+3
-0
index.vue
src/views/thinkTank/allThinkTank/index.vue
+11
-1
没有找到文件。
src/views/thinkTank/MultiThinkTankViewAnalysis/index.vue
浏览文件 @
c049c54d
...
...
@@ -1449,6 +1449,7 @@ onMounted(async () => {
border
-
bottom
:
1
px
solid
rgb
(
234
,
236
,
238
);
flex
-
shrink
:
0
;
display
:
flex
;
cursor
:
pointer
;
/* 防止item被挤压变形 */
.
left
{
...
...
@@ -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
浏览文件 @
c049c54d
...
...
@@ -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
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论