Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
631bcea6
Commit
631bcea6
authored
8 months ago
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
33b94f59
668fef7f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
59 additions
and
8 deletions
+59
-8
allEchart.vue
src/components/FinancialModule/DataAnalysis/allEchart.vue
+2
-1
ActualRateChange.vue
...odule/DataAnalysis/components/Echart/ActualRateChange.vue
+11
-1
ChangeProportion.vue
...odule/DataAnalysis/components/Echart/ChangeProportion.vue
+10
-0
IncomeChange.vue
...ialModule/DataAnalysis/components/Echart/IncomeChange.vue
+11
-1
IncomeShare.vue
...cialModule/DataAnalysis/components/Echart/IncomeShare.vue
+11
-1
WoolRateChange.vue
...lModule/DataAnalysis/components/Echart/WoolRateChange.vue
+11
-1
packetEchart.vue
.../FinancialModule/DataAnalysis/components/packetEchart.vue
+3
-3
No files found.
src/components/FinancialModule/DataAnalysis/allEchart.vue
View file @
631bcea6
...
...
@@ -109,7 +109,8 @@
</li>
</ul>
</div>
<div
v-loading=
"loading"
style=
"height: 78%;overflow: auto;display: flex;flex-direction: row;flex-wrap: wrap;"
>
<!-- height: 78%;overflow: auto; -->
<div
v-loading=
"loading"
style=
"display: flex;flex-direction: row;flex-wrap: wrap;"
>
<IncomeChange
:msgData=
"msg"
:StatisticalData=
"StatisticalData"
></IncomeChange>
<IncomeShare
:msgData=
"msg"
:StatisticalData=
"StatisticalData"
></IncomeShare>
<WoolRateChange
:msgData=
"msg"
:StatisticalData=
"StatisticalData"
></WoolRateChange>
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/Echart/ActualRateChange.vue
View file @
631bcea6
...
...
@@ -27,6 +27,12 @@ export default {
'rgba(228,57,57,.7)'
,
'rgba(247,154,44,.7)'
,
'rgba(255,246,11,.7)'
,
'rgba(61,217,72,.7)'
,
'rgba(57,202,228,.7)'
,
'rgba(44,49,241,.7)'
,
'rgba(122,57,228,.7)'
],
}
},
created
()
{
window
.
addEventListener
(
'resize'
,
this
.
handleResize
);
},
destroyed
()
{
window
.
removeEventListener
(
'resize'
,
this
.
handleResize
);
},
watch
:
{
StatisticalData
:{
handler
(
n
,
o
){
...
...
@@ -44,6 +50,10 @@ export default {
},
methods
:
{
handleResize
()
{
location
.
reload
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +159,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/Echart/ChangeProportion.vue
View file @
631bcea6
...
...
@@ -49,6 +49,12 @@ export default {
],
}
},
created
()
{
window
.
addEventListener
(
'resize'
,
this
.
handleResize
);
},
destroyed
()
{
window
.
removeEventListener
(
'resize'
,
this
.
handleResize
);
},
watch
:
{
StatisticalData
:{
handler
(
n
,
o
){
...
...
@@ -70,6 +76,10 @@ export default {
},
methods
:
{
handleResize
()
{
location
.
reload
()
},
getEchart
(){
this
.
inCostDatas
()
let
that
=
this
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/Echart/IncomeChange.vue
View file @
631bcea6
...
...
@@ -27,6 +27,12 @@ export default {
'rgba(228,57,57,.7)'
,
'rgba(247,154,44,.7)'
,
'rgba(255,246,11,.7)'
,
'rgba(61,217,72,.7)'
,
'rgba(57,202,228,.7)'
,
'rgba(44,49,241,.7)'
,
'rgba(122,57,228,.7)'
],
}
},
created
()
{
window
.
addEventListener
(
'resize'
,
this
.
handleResize
);
},
destroyed
()
{
window
.
removeEventListener
(
'resize'
,
this
.
handleResize
);
},
watch
:
{
StatisticalData
:{
handler
(
n
,
o
){
...
...
@@ -44,6 +50,10 @@ export default {
},
methods
:
{
handleResize
()
{
location
.
reload
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +159,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/Echart/IncomeShare.vue
View file @
631bcea6
...
...
@@ -36,6 +36,12 @@ export default {
CurrentMonth
:
null
}
},
created
()
{
window
.
addEventListener
(
'resize'
,
this
.
handleResize
);
},
destroyed
()
{
window
.
removeEventListener
(
'resize'
,
this
.
handleResize
);
},
watch
:
{
StatisticalData
:{
handler
(
n
,
o
){
...
...
@@ -53,6 +59,10 @@ export default {
},
methods
:
{
handleResize
()
{
location
.
reload
()
},
getEchart
(){
let
datas
=
[{
name
:
this
.
CurrentMonth
,
...
...
@@ -120,7 +130,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/Echart/WoolRateChange.vue
View file @
631bcea6
...
...
@@ -27,6 +27,12 @@ export default {
'rgba(228,57,57,.7)'
,
'rgba(247,154,44,.7)'
,
'rgba(255,246,11,.7)'
,
'rgba(61,217,72,.7)'
,
'rgba(57,202,228,.7)'
,
'rgba(44,49,241,.7)'
,
'rgba(122,57,228,.7)'
],
}
},
created
()
{
window
.
addEventListener
(
'resize'
,
this
.
handleResize
);
},
destroyed
()
{
window
.
removeEventListener
(
'resize'
,
this
.
handleResize
);
},
watch
:
{
StatisticalData
:{
handler
(
n
,
o
){
...
...
@@ -44,6 +50,10 @@ export default {
},
methods
:
{
handleResize
()
{
location
.
reload
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +159,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/DataAnalysis/components/packetEchart.vue
View file @
631bcea6
...
...
@@ -241,7 +241,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
getJapanPacketOutChart
(){
let
datas
=
[]
...
...
@@ -343,7 +343,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
getJapanRoutineOutChart
(){
...
...
@@ -446,7 +446,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
getJapanpRofitOutChart
(){
let
that
=
this
...
...
This diff is collapsed.
Click to expand it.
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