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
6dcbfda7
Commit
6dcbfda7
authored
Aug 21, 2024
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
5589e601
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
52 additions
and
7 deletions
+52
-7
ActualRateChange.vue
...odule/DataAnalysis/components/Echart/ActualRateChange.vue
+10
-1
ChangeProportion.vue
...odule/DataAnalysis/components/Echart/ChangeProportion.vue
+9
-0
IncomeChange.vue
...ialModule/DataAnalysis/components/Echart/IncomeChange.vue
+10
-1
IncomeShare.vue
...cialModule/DataAnalysis/components/Echart/IncomeShare.vue
+10
-1
WoolRateChange.vue
...lModule/DataAnalysis/components/Echart/WoolRateChange.vue
+10
-1
packetEchart.vue
.../FinancialModule/DataAnalysis/components/packetEchart.vue
+3
-3
No files found.
src/components/FinancialModule/DataAnalysis/components/Echart/ActualRateChange.vue
View file @
6dcbfda7
...
...
@@ -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,9 @@ export default {
},
methods
:
{
handleResize
()
{
this
.
getEchart
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +158,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
src/components/FinancialModule/DataAnalysis/components/Echart/ChangeProportion.vue
View file @
6dcbfda7
...
...
@@ -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,9 @@ export default {
},
methods
:
{
handleResize
()
{
this
.
getEchart
()
},
getEchart
(){
this
.
inCostDatas
()
let
that
=
this
...
...
src/components/FinancialModule/DataAnalysis/components/Echart/IncomeChange.vue
View file @
6dcbfda7
...
...
@@ -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,9 @@ export default {
},
methods
:
{
handleResize
()
{
this
.
getEchart
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +158,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
src/components/FinancialModule/DataAnalysis/components/Echart/IncomeShare.vue
View file @
6dcbfda7
...
...
@@ -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,9 @@ export default {
},
methods
:
{
handleResize
()
{
this
.
getEchart
()
},
getEchart
(){
let
datas
=
[{
name
:
this
.
CurrentMonth
,
...
...
@@ -120,7 +129,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
src/components/FinancialModule/DataAnalysis/components/Echart/WoolRateChange.vue
View file @
6dcbfda7
...
...
@@ -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,9 @@ export default {
},
methods
:
{
handleResize
()
{
this
.
getEchart
()
},
getEchart
(){
let
datas
=
[]
let
titles
=
[]
...
...
@@ -149,7 +158,7 @@ export default {
series
:
datas
}
myChart
.
setOption
(
option
,
true
)
// echarts设置初始化选项
myChart
.
setOption
(
option
,
true
)
},
}
...
...
src/components/FinancialModule/DataAnalysis/components/packetEchart.vue
View file @
6dcbfda7
...
...
@@ -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
...
...
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