Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
980cb14b
Commit
980cb14b
authored
Sep 04, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
27bb5c1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
TeamRevenueReport.vue
src/pages/financial/TeamRevenueReport.vue
+17
-4
No files found.
src/pages/financial/TeamRevenueReport.vue
View file @
980cb14b
...
...
@@ -1479,10 +1479,23 @@
})
}
else
if
(
column
.
title
==
'已上课时'
){
if
(
rowData
.
ClassId
>
0
){
let
ClassName
=
encodeURI
(
rowData
.
ClassName
)
this
.
OpenNewUrl
(
'/course/monthLessonCost'
,
{
ClassId
:
rowData
.
ClassId
,
ClassName
:
ClassName
,
//let ClassName = encodeURI(rowData.ClassName)
let
ClassDate
=
new
Date
(
rowData
.
ClassBeginsStr
);
let
year
=
ClassDate
.
getFullYear
();
let
month
=
(
ClassDate
.
getMonth
()
+
1
).
toString
().
padStart
(
2
,
'0'
);
let
ClassDateEnd
=
new
Date
(
rowData
.
ClassBeginsStr
);
ClassDateEnd
.
setFullYear
(
ClassDateEnd
.
getFullYear
()
+
1
);
let
yearEnd
=
ClassDateEnd
.
getFullYear
();
let
monthEnd
=
(
ClassDateEnd
.
getMonth
()
+
1
).
toString
().
padStart
(
2
,
'0'
);
this
.
OpenNewUrl
(
'/financial/studentsClassfee'
,
{
datetype
:
2
,
valueyear
:
year
,
StartMonth
:
year
+
'-'
+
month
,
EndMonth
:
yearEnd
+
'-'
+
monthEnd
,
SchoolId
:
-
1
,
ClassId
:
rowData
.
ClassId
});
}
}
...
...
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