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
1cca62a7
Commit
1cca62a7
authored
Sep 24, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
642dee8a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
20 deletions
+23
-20
allEchart.vue
src/components/FinancialModule/DataAnalysis/allEchart.vue
+11
-9
ActualRateColumnar.vue
.../DataAnalysis/components/twoEchart/ActualRateColumnar.vue
+1
-1
ActualRateColumnarZZT.vue
...taAnalysis/components/twoEchart/ActualRateColumnarZZT.vue
+1
-1
WoolRateColumnar.vue
...le/DataAnalysis/components/twoEchart/WoolRateColumnar.vue
+1
-1
index.vue
src/components/FinancialModule/DataAnalysis/index.vue
+9
-8
No files found.
src/components/FinancialModule/DataAnalysis/allEchart.vue
View file @
1cca62a7
...
...
@@ -267,6 +267,7 @@
</template>
<
script
>
import
moment
from
'moment'
;
import
IncomeChange
from
"./components/oneEchart/IncomeChange.vue"
;
import
IncomeShare
from
"./components/oneEchart/IncomeShare.vue"
;
import
WoolRateChange
from
"./components/oneEchart/WoolRateChange.vue"
;
...
...
@@ -399,10 +400,11 @@ export default {
},
mounted
()
{
this
.
getCompanyMsg
.
RB_Group_Id
=
this
.
getLocalStorage
().
RB_Group_id
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setMonth
(
start
.
getMonth
()
-
6
);
this
.
dateTime
=
[
this
.
$commonUtils
.
getFormatDateM
(
start
),
this
.
$commonUtils
.
getFormatDateM
(
end
)]
let
sDate
=
moment
().
subtract
(
7
,
'months'
).
format
(
'YYYY-MM'
);
let
eDate
=
moment
().
subtract
(
1
,
'months'
).
format
(
'YYYY-MM'
);
this
.
dateTime
=
[
sDate
,
eDate
]
this
.
msg
.
startDate
=
this
.
dateTime
[
0
]
this
.
msg
.
endDate
=
this
.
dateTime
[
1
]
...
...
@@ -524,7 +526,7 @@ export default {
this
.
msg
.
LineIdList
=
[],
this
.
msg
.
LineIdStr
=
''
this
.
msg
.
IsLastData
=
2
this
.
msg
.
OutBranchIdList
=
[
0
]
this
.
msg
.
OutBranchIdList
=
[
0
,
1
,
32
,
33
]
this
.
msg
.
StandardBranchIds
=
'0'
this
.
coinGetShow
=
true
this
.
msg
.
StandardCurrencyId
=
-
1
...
...
@@ -555,10 +557,10 @@ export default {
this
.
msg
.
startDate
=
this
.
dateTime
[
0
]
this
.
msg
.
endDate
=
this
.
dateTime
[
1
]
}
else
{
const
end
=
new
Date
(
);
const
start
=
new
Date
(
);
start
.
setMonth
(
start
.
getMonth
()
-
6
);
this
.
dateTime
=
[
this
.
$commonUtils
.
getFormatDateM
(
start
),
this
.
$commonUtils
.
getFormatDateM
(
end
)
]
let
sDate
=
moment
().
subtract
(
7
,
'months'
).
format
(
'YYYY-MM'
);
let
eDate
=
moment
().
subtract
(
1
,
'months'
).
format
(
'YYYY-MM'
);
this
.
dateTime
=
[
sDate
,
eDate
]
this
.
msg
.
startDate
=
start
this
.
msg
.
endDate
=
end
}
...
...
src/components/FinancialModule/DataAnalysis/components/twoEchart/ActualRateColumnar.vue
View file @
1cca62a7
<
template
>
<div
class=
"echartsBox"
>
<div
class=
"titleBox row"
>
<h3>
净利润变化趋势图
</h3>
<h3>
净利润变化趋势图
(简易报表的净利润)
</h3>
<div
style=
"margin-left: 20px;"
>
...
...
src/components/FinancialModule/DataAnalysis/components/twoEchart/ActualRateColumnarZZT.vue
View file @
1cca62a7
<
template
>
<div
class=
"echartsBox"
>
<div
class=
"titleBox row"
>
<h3>
实际利润变化趋势图
</h3>
<h3>
实际利润变化趋势图
(营收报表的实际利润)
</h3>
<div
style=
"margin-left: 20px;"
>
...
...
src/components/FinancialModule/DataAnalysis/components/twoEchart/WoolRateColumnar.vue
View file @
1cca62a7
<
template
>
<div
class=
"echartsBox"
>
<div
class=
"titleBox row"
>
<h3>
营业利润变化趋势图
</h3>
<h3>
营业利润变化趋势图
(营收报表实际利润+联运收入)
</h3>
<div
style=
"margin-left: 20px;"
>
...
...
src/components/FinancialModule/DataAnalysis/index.vue
View file @
1cca62a7
...
...
@@ -177,6 +177,7 @@
</template>
<
script
>
import
moment
from
'moment'
;
import
Lines
from
"./components/line.vue"
;
import
Corporations
from
"./components/corporation.vue"
;
import
Packets
from
"./components/packet.vue"
;
...
...
@@ -254,10 +255,10 @@ export default {
},
mounted
()
{
this
.
getCompanyMsg
.
RB_Group_Id
=
this
.
getLocalStorage
().
RB_Group_id
const
end
=
new
Date
(
);
const
start
=
new
Date
(
);
start
.
setMonth
(
start
.
getMonth
()
-
6
);
this
.
dateTime
=
[
this
.
$commonUtils
.
getFormatDateM
(
start
),
this
.
$commonUtils
.
getFormatDateM
(
end
)
]
let
sDate
=
moment
().
subtract
(
7
,
'months'
).
format
(
'YYYY-MM'
);
let
eDate
=
moment
().
subtract
(
1
,
'months'
).
format
(
'YYYY-MM'
);
this
.
dateTime
=
[
sDate
,
eDate
]
this
.
msg
.
startDate
=
this
.
dateTime
[
0
]
this
.
msg
.
endDate
=
this
.
dateTime
[
1
]
...
...
@@ -361,10 +362,10 @@ export default {
this
.
msg
.
startDate
=
this
.
dateTime
[
0
]
this
.
msg
.
endDate
=
this
.
dateTime
[
1
]
}
else
{
const
end
=
new
Date
(
);
const
start
=
new
Date
(
);
start
.
setMonth
(
start
.
getMonth
()
-
6
);
this
.
dateTime
=
[
this
.
$commonUtils
.
getFormatDateM
(
start
),
this
.
$commonUtils
.
getFormatDateM
(
end
)
]
let
sDate
=
moment
().
subtract
(
7
,
'months'
).
format
(
'YYYY-MM'
);
let
eDate
=
moment
().
subtract
(
1
,
'months'
).
format
(
'YYYY-MM'
);
this
.
dateTime
=
[
sDate
,
eDate
]
this
.
msg
.
startDate
=
start
this
.
msg
.
endDate
=
end
}
...
...
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