Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
0da3e462
提交
0da3e462
authored
3月 09, 2026
作者:
张伊明
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix 政治献金接口调整
上级
9964300f
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
36 行增加
和
10 行删除
+36
-10
index.vue
src/views/bill/deepDig/poliContribution/index.vue
+2
-2
index.vue
src/views/bill/deepDig/processAnalysis/index.vue
+22
-4
index.vue
src/views/bill/template/index.vue
+12
-4
没有找到文件。
src/views/bill/deepDig/poliContribution/index.vue
浏览文件 @
0da3e462
...
...
@@ -636,7 +636,7 @@ const renderSankeyChart = () => {
}
},
...
sourceList
.
map
((
item
,
index
)
=>
({
name
:
item
.
orgName
,
name
:
item
.
orgName
Zh
,
value
:
item
.
amount
,
itemStyle
:
{
color
:
sankeyColors
[
index
%
sankeyColors
.
length
]
...
...
@@ -645,7 +645,7 @@ const renderSankeyChart = () => {
];
const
links
=
sourceList
.
map
(
item
=>
({
source
:
item
.
orgName
,
source
:
item
.
orgName
ZhZh
,
target
:
personName
,
value
:
item
.
amount
}));
...
...
src/views/bill/deepDig/processAnalysis/index.vue
浏览文件 @
0da3e462
...
...
@@ -32,7 +32,7 @@
</div>
</div>
-->
<AnalysisBox
title=
"典型阶段耗时"
>
<div
class=
"box1-main"
>
<div
class=
"box1-main"
:class=
"
{ 'box1-main--full': !timeFooterText }"
>
<div
class=
"box1-main-center"
id=
"chart1"
></div>
<div
v-if=
"timeFooterText"
class=
"box1-main-footer"
>
<div
class=
"box-footer-left"
>
...
...
@@ -80,7 +80,7 @@
</div>
</div>
-->
<AnalysisBox
title=
"修正案次数分析"
>
<div
class=
"box2-main"
>
<div
class=
"box2-main"
:class=
"
{ 'box2-main--full': !amendFooterText }"
>
<div
class=
"box2-main-center"
id=
"chart2"
></div>
<div
v-if=
"amendFooterText"
class=
"box2-main-footer"
>
<div
class=
"box-footer-left"
>
...
...
@@ -376,7 +376,7 @@
<
span
>
反对票
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"box3-main"
>
<
div
class
=
"box3-main"
:
class
=
"{ 'box3-main--full': !voteFooterText
}
"
>
<
div
class
=
"box3-main-center"
>
<
div
class
=
"box3-main-center-header"
>
<
div
class
=
"box3-main-center-header-box1"
>
立法阶段
<
/div
>
...
...
@@ -1105,9 +1105,15 @@ onMounted(async () => {
.
box1
-
main
{
height
:
368
px
;
&
.
box1
-
main
--
full
{
.
box1
-
main
-
center
{
width
:
792
px
;
height
:
340
px
;
}
}
.
box1
-
main
-
center
{
width
:
792
px
;
height
:
300
px
;
margin
:
0
5
px
;
overflow
:
hidden
;
...
...
@@ -1244,8 +1250,14 @@ onMounted(async () => {
.
box2
-
main
{
height
:
359
px
;
&
.
box2
-
main
--
full
{
.
box2
-
main
-
center
{
height
:
340
px
;
}
}
.
box2
-
main
-
center
{
height
:
300
px
;
margin
:
0
5
px
;
display
:
flex
;
...
...
@@ -1525,8 +1537,14 @@ onMounted(async () => {
.
box3
-
main
{
height
:
791
px
;
&
.
box3
-
main
--
full
{
.
box3
-
main
-
center
{
height
:
772
px
;
}
}
.
box3
-
main
-
center
{
height
:
732
px
;
margin
:
0
20
px
;
overflow
-
x
:
hidden
;
...
...
src/views/bill/template/index.vue
浏览文件 @
0da3e462
...
...
@@ -3,7 +3,7 @@
<div
class=
"side"
>
<div
class=
"side-box side-box-domain"
>
<AnalysisBox
title=
"涉及领域"
width=
"520px"
height=
"415px"
>
<div
class=
"right-box2-main
"
id=
"chart2"
></div>
<div
:class=
"['right-box2-main',
{ 'right-box-main--full': !domainFooterText }]
" id="chart2">
</div>
<div
v-if=
"domainFooterText"
class=
"right-box2-footer"
>
<div
class=
"right-box2-footer-left"
>
<img
src=
"./assets/icons/right-icon1.png"
alt=
""
/>
...
...
@@ -19,7 +19,7 @@
</div>
<div
class=
"side-box side-box-limit"
>
<AnalysisBox
title=
"限制手段"
width=
"520px"
height=
"415px"
>
<div
class=
"right-box1-main
"
id=
"chart1"
></div>
<div
:class=
"['right-box1-main',
{ 'right-box-main--full': !limitFooterText }]
" id="chart1">
</div>
<div
v-if=
"limitFooterText"
class=
"right-box1-footer"
>
<div
class=
"right-box1-footer-left"
>
<img
src=
"./assets/icons/right-icon1.png"
alt=
""
/>
...
...
@@ -647,10 +647,14 @@ onMounted(async () => {
height
:
415
px
;
.
right
-
box1
-
main
{
width
:
520
px
;
height
:
3
7
5
px
;
height
:
3
1
5
px
;
padding
:
16
px
;
}
.
right
-
box
-
main
--
full
{
height
:
375
px
;
}
.
right
-
box1
-
footer
{
width
:
493
px
;
height
:
40
px
;
...
...
@@ -709,10 +713,14 @@ onMounted(async () => {
height
:
415
px
;
.
right
-
box2
-
main
{
width
:
520
px
;
height
:
3
7
5
px
;
height
:
3
1
5
px
;
padding
:
16
px
;
}
.
right
-
box
-
main
--
full
{
height
:
375
px
;
}
.
right
-
box2
-
footer
{
width
:
493
px
;
height
:
40
px
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论