Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
station-elec-manage-view
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
station
station-elec-manage-view
Commits
27f20218
Commit
27f20218
authored
Jun 18, 2020
by
zhengjiangtao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日常值守数据提到mock文件rczsData
parent
1a93e07d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
55 additions
and
71 deletions
+55
-71
data.js
src/_mock/rczsData/data.js
+0
-0
geo.js
src/_mock/rczsData/geo.js
+11
-1
GrowthStatistics.js
src/view/biz/duty/situation/GrowthStatistics.js
+1
-1
RecentStatistics.js
src/view/biz/duty/situation/RecentStatistics.js
+1
-1
RiskFailure.js
src/view/biz/duty/situation/RiskFailure.js
+1
-1
RiskTrend.js
src/view/biz/duty/situation/RiskTrend.js
+1
-2
SafetyRate.js
src/view/biz/duty/situation/SafetyRate.js
+38
-17
Statistics.js
src/view/biz/duty/situation/Statistics.js
+2
-47
china.js
src/view/biz/duty/situation/china.js
+0
-0
index.js
src/view/biz/duty/situation/index.js
+0
-1
No files found.
src/
view/biz/duty/situation
/data.js
→
src/
_mock/rczsData
/data.js
View file @
27f20218
File moved
src/
view/biz/duty/situation
/geo.js
→
src/
_mock/rczsData
/geo.js
View file @
27f20218
...
...
@@ -271,4 +271,14 @@ const geoCoordMap = {
大庆
:
[
125.03
,
46.58
]
};
export
{
provienceData
,
geoCoordMap
};
//地图标点用
const
dmtData
=
[
{
latitude
:
30.67
,
longitude
:
104.07
},
{
latitude
:
34.76
,
longitude
:
113.65
},
{
latitude
:
29.65
,
longitude
:
91.13
},
{
latitude
:
43.82
,
longitude
:
87.62
}
];
export
{
provienceData
,
geoCoordMap
,
dmtData
};
src/view/biz/duty/situation/GrowthStatistics.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
growthData
}
from
'./data'
;
import
{
growthData
}
from
'./
../../../../_mock/rczsData/
data'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
class
GrowthStatistics
extends
Component
{
...
...
src/view/biz/duty/situation/RecentStatistics.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
ReactEcharts
from
'amos-viz/lib/echarts'
;
import
{
recentData1
,
recentData2
}
from
'./data'
;
import
{
recentData1
,
recentData2
}
from
'./
../../../../_mock/rczsData/
data'
;
import
{
Button
}
from
'amos-framework'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
...
...
src/view/biz/duty/situation/RiskFailure.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
riskFailureData
}
from
'./data'
;
import
{
riskFailureData
}
from
'./
../../../../_mock/rczsData/
data'
;
import
{
OverFlowText
}
from
'amos-framework'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
...
...
src/view/biz/duty/situation/RiskTrend.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
ReactEcharts
from
'amos-viz/lib/echarts'
;
import
{
riskTrendData
}
from
'./data'
;
import
{
riskTrendData
}
from
'./
../../../../_mock/rczsData/
data'
;
import
{
Button
}
from
'amos-framework'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
...
...
src/view/biz/duty/situation/SafetyRate.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
SafetyRateData
}
from
'./data'
;
import
{
OverFlowText
,
Button
}
from
'amos-framework'
;
import
{
SafetyRateData
}
from
'./../../../../_mock/rczsData/data'
;
import
{
OverFlowText
}
from
'amos-framework'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
/**
* 安全指数top10
*/
class
SafetyRate
extends
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
data
:
[]
};
}
componentDidMount
()
{
this
.
querySafetyData
();
}
querySafetyData
=
()
=>
{
this
.
setState
({
data
:
SafetyRateData
});
};
render
()
{
let
{
data
}
=
this
.
state
;
return
(
<
div
className
=
'safety-rate-view common-margin daily-title'
>
{
/* <div className='daily-title-content'>
<
div
className
=
"safety-rate-view common-margin daily-title"
>
{
/* <div className='daily-title-content'>
安全指数 TOP10
</div> */
}
<
CommonCard
title
=
"安全指数 TOP10"
>
<
div
className
=
'top-ten-content'
style
=
{{
position
:
'relative'
}}
>
<
div
className
=
"content-detail"
onClick
=
{
this
.
props
.
onClick
}
>
...
<
/div
>
{
SafetyRateData
.
map
((
item
,
index
)
=>
<
div
className
=
'top-ten-item'
key
=
{
index
}
>
<
div
className
=
"top-ten-content"
style
=
{{
position
:
'relative'
}}
>
<
div
className
=
"content-detail"
onClick
=
{
this
.
props
.
onClick
}
>
...
<
/div
>
{
data
.
map
((
item
,
index
)
=>
(
<
div
className
=
"top-ten-item"
>
<
OverFlowText
>
<
p
style
=
{{
width
:
'80px'
}}
>
{
item
.
name
}
<
/p
>
<
/OverFlowText
>
<
div
className
=
'top-ten-item-middle'
>
<
div
className
=
'top-ten-item-middlelinear'
style
=
{{
height
:
8
,
width
:
`
${
item
.
value
}
%`
}}
>
<
/div
>
<
div
className
=
"top-ten-item-middle"
>
<
div
className
=
"top-ten-item-middlelinear"
style
=
{{
height
:
8
,
width
:
`
${
item
.
value
}
%`
}}
>
{
' '
}
<
/div
>
<
/div
>
<
div
className
=
'top-ten-item-bottom'
>
<
div
className
=
"top-ten-item-bottom"
>
<
span
>
{
item
.
value
}
<
/span
>
<
/div
>
<
/div
>
<
/div
>
)
}
))}
<
/div
>
<
/CommonCard
>
<
/div
>
...
...
src/view/biz/duty/situation/Statistics.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
MapChart
}
from
'amos-viz/lib/echarts'
;
import
{
chainMapData
,
option123
}
from
'./data'
;
import
echarts
from
'echarts/lib/echarts'
;
import
'echarts/map/js/china'
;
import
geoJson
from
'echarts/map/json/china.json'
;
import
{
geoCoordMap
,
provienceData
}
from
'.
/geo'
;
import
{
geoCoordMap
,
provienceData
,
dmtData
}
from
'./../../../../_mock/rczsData
/geo'
;
import
CommonCard
from
'../../../common/commonCard/CommonCard'
;
export
const
dmtData
=
[
{
latitude
:
30.67
,
longitude
:
104.07
},
{
latitude
:
34.76
,
longitude
:
113.65
},
{
latitude
:
29.65
,
longitude
:
91.13
},
{
latitude
:
43.82
,
longitude
:
87.62
}
];
class
Statistics
extends
Component
{
constructor
(
props
)
{
...
...
@@ -26,43 +17,7 @@ class Statistics extends Component {
}
initalECharts
()
{
const
data
=
[
{
name
:
'黑龙江'
,
area
:
'东北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'吉林'
,
area
:
'东北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'辽宁'
,
area
:
'东北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'内蒙古'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'北京'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'天津'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'河北'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'山东'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'山西'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'江苏'
,
area
:
'华东大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'上海'
,
area
:
'华东大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'浙江'
,
area
:
'华东大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'福建'
,
area
:
'华南大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'广东'
,
area
:
'华南大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'海南'
,
area
:
'华南大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'台湾'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'香港'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'澳门'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'河南'
,
area
:
'华北大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'安徽'
,
area
:
'华中大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'江西'
,
area
:
'华中大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'广东'
,
area
:
'华南大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'陕西'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'湖北'
,
area
:
'华中大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'湖南'
,
area
:
'华中大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'广西'
,
area
:
'华南大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'宁夏'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'重庆'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'贵州'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'四川'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'云南'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'甘肃'
,
area
:
'华西大区'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'青海'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'西藏'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
},
{
name
:
'新疆'
,
area
:
'其他'
,
type
:
'areaCenterCity'
,
InValue
:
'0'
}
];
const
data
=
provienceData
;
echarts
.
registerMap
(
'china'
,
geoJson
);
for
(
const
item
of
provienceData
)
{
...
...
src/view/biz/duty/situation/china.js
deleted
100644 → 0
View file @
1a93e07d
This diff is collapsed.
Click to expand it.
src/view/biz/duty/situation/index.js
View file @
27f20218
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
GrowthStatistics
from
'./GrowthStatistics'
;
import
RecentStatistics
from
'./RecentStatistics'
;
import
RiskFailure
from
'./RiskFailure'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment