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
70d6663f
Commit
70d6663f
authored
Jun 30, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交课耗导出文字显示
parent
2279f88f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
3 deletions
+45
-3
lessonCostStatistics.vue
src/pages/financial/lessonCostStatistics.vue
+15
-1
studentsClassfee.vue
src/pages/financial/studentsClassfee.vue
+15
-1
teacherclassfee.vue
src/pages/financial/teacherclassfee.vue
+15
-1
No files found.
src/pages/financial/lessonCostStatistics.vue
View file @
70d6663f
...
@@ -260,8 +260,22 @@
...
@@ -260,8 +260,22 @@
this
.
getList
()
this
.
getList
()
},
},
txexport
()
{
txexport
()
{
if
(
this
.
valuemonth
==
null
||
this
.
valueyear
==
null
){
this
.
$q
.
notify
({
type
:
'negative'
,
position
:
"top"
,
message
:
`请选择日期`
})
return
}
let
text
=
''
;
if
(
this
.
datetype
==
2
)
{
text
=
this
.
valuemonth
+
'课耗统计.xls'
}
else
if
(
this
.
datetype
==
1
)
{
text
=
this
.
valueyear
+
'年课耗统计.xls'
}
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/finance/GetTeacherConsumptionHoursStatisticsToExcel"
,
msg
,
"课耗统计.xls"
)
EduDownLoad
(
"/finance/GetTeacherConsumptionHoursStatisticsToExcel"
,
msg
,
text
)
}
}
...
...
src/pages/financial/studentsClassfee.vue
View file @
70d6663f
...
@@ -278,8 +278,22 @@
...
@@ -278,8 +278,22 @@
this
.
getList
()
this
.
getList
()
},
},
txexport
(){
txexport
(){
if
(
this
.
valuemonth
==
null
||
this
.
valueyear
==
null
){
this
.
$q
.
notify
({
type
:
'negative'
,
position
:
"top"
,
message
:
`请选择日期`
})
return
}
let
text
=
''
;
if
(
this
.
datetype
==
2
)
{
text
=
this
.
valuemonth
+
'课耗学生明细.xls'
}
else
if
(
this
.
datetype
==
1
)
{
text
=
this
.
valueyear
+
'年课耗学生明细.xls'
}
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/finance/GetStudentConsumptionHoursDetialPageListToExcel"
,
msg
,
"课耗学生明细.xls"
)
EduDownLoad
(
"/finance/GetStudentConsumptionHoursDetialPageListToExcel"
,
msg
,
text
)
},
},
gobaoming
(
Id
){
gobaoming
(
Id
){
this
.
OpenNewUrl
(
'/sale/orderStatistics'
,
{
this
.
OpenNewUrl
(
'/sale/orderStatistics'
,
{
...
...
src/pages/financial/teacherclassfee.vue
View file @
70d6663f
...
@@ -248,8 +248,22 @@
...
@@ -248,8 +248,22 @@
this
.
getList
()
this
.
getList
()
},
},
txexport
(){
txexport
(){
if
(
this
.
valuemonth
==
null
||
this
.
valueyear
==
null
){
this
.
$q
.
notify
({
type
:
'negative'
,
position
:
"top"
,
message
:
`请选择日期`
})
return
}
let
text
=
''
;
if
(
this
.
datetype
==
2
)
{
text
=
this
.
valuemonth
+
'课耗老师明细.xls'
}
else
if
(
this
.
datetype
==
1
)
{
text
=
this
.
valueyear
+
'年课耗老师明细.xls'
}
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/finance/GetTeacherConsumptionHoursDetialPageListToExcel"
,
msg
,
"课耗老师明细.xls"
)
EduDownLoad
(
"/finance/GetTeacherConsumptionHoursDetialPageListToExcel"
,
msg
,
text
)
}
}
},
},
...
...
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