Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cxsfjx_project_echarts
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
邓文彬
cxsfjx_project_echarts
Commits
312068b2
提交
312068b2
authored
10月 25, 2021
作者:
Your Name
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(自适应): 支持最小屏幕宽度1920
上级
5c013be6
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
31 行增加
和
17 行删除
+31
-17
index.vue
src/views/dataCenter/army/index.vue
+3
-0
index.vue
src/views/dataCenter/army/model/EconomicConstruct/index.vue
+2
-1
index.vue
src/views/dataCenter/army/model/Science/index.vue
+2
-1
index.vue
src/views/dataCenter/army/model/StrongArmy/index.vue
+3
-2
index.vue
src/views/dataCenter/industrial/index.vue
+5
-1
index.vue
...iews/dataCenter/industrial/model/BusinessIncome/index.vue
+8
-6
index.vue
...s/dataCenter/industrial/model/IncomDistribution/index.vue
+2
-1
index.vue
...ews/dataCenter/industrial/model/IncomExtendLine/index.vue
+2
-2
index.vue
src/views/dataCenter/industrial/model/TargetBar/index.vue
+2
-1
index.vue
src/views/dataCenter/map/index.vue
+2
-2
没有找到文件。
src/views/dataCenter/army/index.vue
浏览文件 @
312068b2
...
@@ -78,6 +78,9 @@ export default defineComponent({
...
@@ -78,6 +78,9 @@ export default defineComponent({
cursor
:
pointer
;
cursor
:
pointer
;
transition
:
all
0
.2s
;
transition
:
all
0
.2s
;
box-shadow
:
2px
2px
10px
#eee
;
box-shadow
:
2px
2px
10px
#eee
;
flex
:
1
;
height
:
100%
;
box-sizing
:
border-box
;
}
}
.map-warpper
{
.map-warpper
{
...
...
src/views/dataCenter/army/model/EconomicConstruct/index.vue
浏览文件 @
312068b2
...
@@ -558,7 +558,8 @@ export default defineComponent({
...
@@ -558,7 +558,8 @@ export default defineComponent({
}
}
.economic-construct
{
.economic-construct
{
flex
:
1
;
flex
:
1
;
height
:
150px
;
min-height
:
150px
;
height
:
calc
(
100%
-
200px
);
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/army/model/Science/index.vue
浏览文件 @
312068b2
...
@@ -326,7 +326,8 @@ export default defineComponent({
...
@@ -326,7 +326,8 @@ export default defineComponent({
}
}
.incom-distribution
{
.incom-distribution
{
flex
:
1
;
flex
:
1
;
height
:
150px
;
min-height
:
150px
;
height
:
calc
(
100%
-
200px
);
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/army/model/StrongArmy/index.vue
浏览文件 @
312068b2
...
@@ -91,7 +91,7 @@ export default defineComponent({
...
@@ -91,7 +91,7 @@ export default defineComponent({
grid
:
{
grid
:
{
left
:
"-5%"
,
left
:
"-5%"
,
right
:
"5%"
,
right
:
"5%"
,
bottom
:
"
3
%"
,
bottom
:
"
5
%"
,
containLabel
:
true
,
containLabel
:
true
,
},
},
yAxis
:
{
yAxis
:
{
...
@@ -179,7 +179,8 @@ export default defineComponent({
...
@@ -179,7 +179,8 @@ export default defineComponent({
.target-bar
{
.target-bar
{
flex
:
1
;
flex
:
1
;
height
:
260px
;
height
:
calc
(
100%
-
120px
);
min-height
:
260px
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/industrial/index.vue
浏览文件 @
312068b2
...
@@ -82,6 +82,9 @@ export default defineComponent({
...
@@ -82,6 +82,9 @@ export default defineComponent({
cursor
:
pointer
;
cursor
:
pointer
;
transition
:
all
0
.2s
;
transition
:
all
0
.2s
;
box-shadow
:
2px
2px
10px
#eee
;
box-shadow
:
2px
2px
10px
#eee
;
flex
:
1
;
height
:
100%
;
box-sizing
:
border-box
;
}
}
.map-warpper
{
.map-warpper
{
...
@@ -93,7 +96,8 @@ export default defineComponent({
...
@@ -93,7 +96,8 @@ export default defineComponent({
.footer-warpper
{
.footer-warpper
{
margin-top
:
20px
;
margin-top
:
20px
;
.business-extend
{
.business-extend
{
height
:
430px
;
min-height
:
430px
;
height
:
100%
;
}
}
}
}
</
style
>
</
style
>
src/views/dataCenter/industrial/model/BusinessIncome/index.vue
浏览文件 @
312068b2
...
@@ -184,31 +184,33 @@ export default defineComponent({
...
@@ -184,31 +184,33 @@ export default defineComponent({
position
:
relative
;
position
:
relative
;
.money-logo
{
.money-logo
{
top
:
40%
;
top
:
40%
;
left
:
3
2
%
;
left
:
3
4
%
;
position
:
absolute
;
position
:
absolute
;
text-align
:
center
;
text-align
:
center
;
transform
:
scale
(
1
.2
);
div
{
div
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
font-size
:
2
4
px
;
font-size
:
2
2
px
;
color
:
#333
;
color
:
#333
;
span
{
span
{
font-size
:
1
8
px
;
font-size
:
1
6
px
;
color
:
#666
;
color
:
#666
;
}
}
img
{
img
{
width
:
40
px
;
width
:
35
px
;
}
}
}
}
.mony-number
{
.mony-number
{
font-size
:
44
px
;
font-size
:
36
px
;
color
:
#4198ff
;
color
:
#4198ff
;
}
}
}
}
}
}
.business-income
{
.business-income
{
flex
:
1
;
flex
:
1
;
height
:
400px
;
height
:
100%
;
min-height
:
400px
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/industrial/model/IncomDistribution/index.vue
浏览文件 @
312068b2
...
@@ -221,7 +221,8 @@ export default defineComponent({
...
@@ -221,7 +221,8 @@ export default defineComponent({
}
}
.incom-distribution
{
.incom-distribution
{
flex
:
1
;
flex
:
1
;
height
:
315px
;
min-height
:
315px
;
height
:
calc
(
100%
-
70px
);
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/industrial/model/IncomExtendLine/index.vue
浏览文件 @
312068b2
...
@@ -121,7 +121,7 @@ export default defineComponent({
...
@@ -121,7 +121,7 @@ export default defineComponent({
top
:
0
,
top
:
0
,
left
:
"0%"
,
left
:
"0%"
,
right
:
"5%"
,
right
:
"5%"
,
bottom
:
"
3
%"
,
bottom
:
"
9
%"
,
containLabel
:
true
,
containLabel
:
true
,
},
},
yAxis
:
{
yAxis
:
{
...
@@ -166,7 +166,7 @@ export default defineComponent({
...
@@ -166,7 +166,7 @@ export default defineComponent({
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.incom-echarts-line
{
.incom-echarts-line
{
flex
:
1
;
flex
:
1
;
height
:
calc
(
100%
-
19
5
px
);
height
:
calc
(
100%
-
19
0
px
);
box-sizing
:
border-box
;
box-sizing
:
border-box
;
}
}
.describes
{
.describes
{
...
...
src/views/dataCenter/industrial/model/TargetBar/index.vue
浏览文件 @
312068b2
...
@@ -182,7 +182,8 @@ export default defineComponent({
...
@@ -182,7 +182,8 @@ export default defineComponent({
.target-bar
{
.target-bar
{
flex
:
1
;
flex
:
1
;
height
:
250px
;
min-height
:
250px
;
height
:
100%
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
...
...
src/views/dataCenter/map/index.vue
浏览文件 @
312068b2
...
@@ -4,12 +4,12 @@
...
@@ -4,12 +4,12 @@
<div
class=
"performance-com card-item"
><Performance
/></div>
<div
class=
"performance-com card-item"
><Performance
/></div>
<div
class=
"card-item rank-list"
><RankList
/></div>
<div
class=
"card-item rank-list"
><RankList
/></div>
</el-col>
</el-col>
<el-col
:span=
"
10
"
>
<el-col
:span=
"
9
"
>
<div
class=
"map-middle"
>
<div
class=
"map-middle"
>
<div
class=
"card-item map-item"
><Map
/></div>
<div
class=
"card-item map-item"
><Map
/></div>
</div>
</div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
7
"
>
<div
class=
"map-right"
>
<div
class=
"map-right"
>
<div
class=
"performance-com card-item"
><InvestmentProgress
/></div>
<div
class=
"performance-com card-item"
><InvestmentProgress
/></div>
<div
class=
"card-item incom-graphic"
><Income
/></div>
<div
class=
"card-item incom-graphic"
><Income
/></div>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论