Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
f8e9daac
提交
f8e9daac
authored
1月 26, 2026
作者:
coderBryanFu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
659f3066
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
21 行增加
和
6 行删除
+21
-6
index.vue
src/views/ZMOverView/components/gameProfile/index.vue
+13
-4
index.vue
src/views/decree/institution/index.vue
+1
-0
index.vue
src/views/decree/institution/insDetail/index.vue
+7
-2
没有找到文件。
src/views/ZMOverView/components/gameProfile/index.vue
浏览文件 @
f8e9daac
...
@@ -61,9 +61,7 @@
...
@@ -61,9 +61,7 @@
<div
class=
"rank"
>
{{
"No."
+
scope
.
row
.
usRank
}}
</div>
<div
class=
"rank"
>
{{
"No."
+
scope
.
row
.
usRank
}}
</div>
<div
class=
"score"
>
{{
scope
.
row
.
usScore
}}
</div>
<div
class=
"score"
>
{{
scope
.
row
.
usScore
}}
</div>
</div>
</div>
<div
<div
class=
"progress-wrapper left"
>
class=
"progress-wrapper left"
>
<el-progress
<el-progress
:percentage=
"scope.row.usScore"
:percentage=
"scope.row.usScore"
:stroke-width=
"20"
:stroke-width=
"20"
...
@@ -114,7 +112,10 @@
...
@@ -114,7 +112,10 @@
<div
class=
"card-item"
v-for=
"(val, idx) in course"
:key=
"idx"
>
<div
class=
"card-item"
v-for=
"(val, idx) in course"
:key=
"idx"
>
<div
class=
"card-item-top"
>
{{ val.eventStrategy }}
</div>
<div
class=
"card-item-top"
>
{{ val.eventStrategy }}
</div>
<div
class=
"card-item-line"
></div>
<div
class=
"card-item-line"
></div>
<div
class=
"card-item-main"
>
<div
class=
"card-item-main"
:class=
"{ cnBackground: val.eventCountry === '中国', usBackground: val.eventCountry === '美国' }"
>
<div
class=
"logo"
>
<div
class=
"logo"
>
<img
:src=
"val.eventCountryImg"
alt=
""
/>
<img
:src=
"val.eventCountryImg"
alt=
""
/>
</div>
</div>
...
@@ -571,6 +572,7 @@ const handleClickBottomBtn = () => {
...
@@ -571,6 +572,7 @@ const handleClickBottomBtn = () => {
display
:
flex
;
display
:
flex
;
gap
:
16px
;
gap
:
16px
;
transition
:
transform
0
.75s
ease
;
// 平滑过渡动画
transition
:
transform
0
.75s
ease
;
// 平滑过渡动画
.card-item
{
.card-item
{
width
:
240px
;
width
:
240px
;
height
:
594px
;
height
:
594px
;
...
@@ -605,6 +607,7 @@ const handleClickBottomBtn = () => {
...
@@ -605,6 +607,7 @@ const handleClickBottomBtn = () => {
border
:
1px
solid
rgba
(
174
,
214
,
255
,
1
);
border
:
1px
solid
rgba
(
174
,
214
,
255
,
1
);
border-radius
:
10px
;
border-radius
:
10px
;
background
:
rgba
(
246
,
250
,
255
,
1
);
background
:
rgba
(
246
,
250
,
255
,
1
);
.logo
{
.logo
{
margin-top
:
24px
;
margin-top
:
24px
;
margin-left
:
24px
;
margin-left
:
24px
;
...
@@ -733,6 +736,12 @@ const handleClickBottomBtn = () => {
...
@@ -733,6 +736,12 @@ const handleClickBottomBtn = () => {
}
}
}
}
}
}
.cnBackground
{
background
:
rgba
(
254
,
249
,
248
,
1
)
!
important
;
}
.usBackground
{
background
:
rgba
(
246
,
250
,
255
,
1
)
!
important
;
}
}
}
}
}
}
}
...
...
src/views/decree/institution/index.vue
浏览文件 @
f8e9daac
...
@@ -68,6 +68,7 @@ const handleGetInfo = async () => {
...
@@ -68,6 +68,7 @@ const handleGetInfo = async () => {
const
res
=
await
getGovOrgBasicInfo
(
params
);
const
res
=
await
getGovOrgBasicInfo
(
params
);
console
.
log
(
"机构信息"
,
res
);
console
.
log
(
"机构信息"
,
res
);
if
(
res
.
code
===
200
&&
res
.
data
)
{
if
(
res
.
code
===
200
&&
res
.
data
)
{
institutionInfo
.
value
.
logo
=
res
.
data
.
logoUrl
;
institutionInfo
.
value
.
name
=
res
.
data
.
orgName
;
institutionInfo
.
value
.
name
=
res
.
data
.
orgName
;
institutionInfo
.
value
.
enName
=
res
.
data
.
orgNameEn
;
institutionInfo
.
value
.
enName
=
res
.
data
.
orgNameEn
;
institutionInfo
.
value
.
desc
=
res
.
data
.
orgIntroduction
;
institutionInfo
.
value
.
desc
=
res
.
data
.
orgIntroduction
;
...
...
src/views/decree/institution/insDetail/index.vue
浏览文件 @
f8e9daac
...
@@ -550,17 +550,22 @@ onMounted(() => {
...
@@ -550,17 +550,22 @@ onMounted(() => {
}
}
.
right
{
.
right
{
width
:
520
px
;
width
:
520
px
;
height
:
80
0
px
;
height
:
98
0
px
;
.
right
-
main
{
.
right
-
main
{
width
:
469
px
;
width
:
469
px
;
height
:
728
px
;
height
:
728
px
;
margin
:
3
px
auto
;
margin
:
3
px
auto
;
.
img
-
box
{
.
img
-
box
{
width
:
469
px
;
//
width: 469px;
height
:
240
px
;
height
:
240
px
;
width
:
auto
;
text
-
align
:
center
;
// height: auto;
img
{
img
{
width
:
100
%
;
width
:
100
%
;
height
:
100
%
;
height
:
100
%
;
height
:
240
px
;
width
:
auto
;
}
}
}
}
.
info
-
box
{
.
info
-
box
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论