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
fff261ab
Commit
fff261ab
authored
Jul 05, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
988e7022
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
3 deletions
+34
-3
classManage.vue
src/pages/course/classManage.vue
+2
-0
paymentDetail.vue
src/pages/course/paymentDetail.vue
+17
-0
saleAchievementsRank.vue
src/pages/financial/saleAchievementsRank.vue
+9
-1
japaneseTrain.vue
src/pages/sale/japaneseTrain.vue
+3
-1
orderStatistics.vue
src/pages/sale/orderStatistics.vue
+3
-1
No files found.
src/pages/course/classManage.vue
View file @
fff261ab
...
...
@@ -423,6 +423,8 @@
query
:
{
ClassId
:
item
.
ClassId
,
School_Id
:
item
.
School_Id
,
ClassName
:
item
.
ClassName
,
blank
:
'y'
}
})
...
...
src/pages/course/paymentDetail.vue
View file @
fff261ab
...
...
@@ -140,6 +140,10 @@
<div
class=
"p_titleList"
>
<div
class=
"p_title"
>
班级收支明细
</div>
<div
style=
"display: flex;align-items: center;position:absolute;right:0;top:0"
>
<q-btn
label=
"返回报名清单"
color=
"accent q-px-md"
size=
"sm"
style=
"font-weight:400 !important;margin-right: 15px;"
@
click=
"goclasslist2('orderStatistics')"
/>
<q-btn
label=
"返回产品列表"
color=
"accent q-px-md"
size=
"sm"
style=
"font-weight:400 !important;margin-right: 15px;"
@
click=
"goclasslist2('japaneseTrain')"
/>
<q-btn
label=
"返回班级列表"
color=
"accent q-px-md"
size=
"sm"
style=
"font-weight:400 !important;margin-right: 15px;"
@
click=
"goclasslist"
/>
<q-btn
label=
"导出"
color=
"accent q-px-md"
size=
"sm"
...
...
@@ -462,6 +466,7 @@
ClassId
:
0
,
School_Id
:
0
},
ClassName
:
''
,
}
},
created
()
{},
...
...
@@ -472,6 +477,9 @@
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
School_Id
)
{
this
.
msg
.
School_Id
=
this
.
$route
.
query
.
School_Id
;
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassName
)
{
this
.
ClassName
=
this
.
$route
.
query
.
ClassName
;
}
this
.
getData
();
},
methods
:
{
...
...
@@ -534,6 +542,15 @@
this
.
$router
.
push
({
path
:
'classManage'
,
});
},
goclasslist2
(
path
){
this
.
$router
.
push
({
path
:
'/sale/'
+
path
,
query
:{
ClassName
:
this
.
ClassName
}
});
}
}
}
...
...
src/pages/financial/saleAchievementsRank.vue
View file @
fff261ab
...
...
@@ -345,10 +345,18 @@
return
diff
;
},
gobaoming
(
row
){
//跳转到报名列表
let
EndTime
=
this
.
msg
.
EndMonth
if
(
new
Date
(
this
.
msg
.
StartMonth
).
getTime
()
==
new
Date
(
this
.
msg
.
EndMonth
).
getTime
()){
var
d1
=
new
Date
(
this
.
msg
.
EndMonth
);
d1
.
setMonth
(
d1
.
getMonth
()
+
1
);
var
month
=
d1
.
getMonth
()
+
1
;
EndTime
=
d1
.
getFullYear
()
+
'-'
+
month
console
.
log
(
EndTime
)
}
this
.
OpenNewUrl
(
'/sale/orderStatistics'
,
{
EnterID
:
row
.
EnterID
,
StartTime
:
this
.
msg
.
StartMonth
,
EndTime
:
this
.
msg
.
EndMonth
,
EndTime
:
EndTime
,
});
}
...
...
src/pages/sale/japaneseTrain.vue
View file @
fff261ab
...
...
@@ -354,7 +354,9 @@
this
.
getSchool
();
this
.
CourseList
();
this
.
GetTeacherList
();
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassName
)
{
this
.
msg
.
ClassName
=
this
.
$route
.
query
.
ClassName
;
}
let
nowDay
=
new
Date
();
var
year
=
nowDay
.
getFullYear
();
//年
var
month
=
nowDay
.
getMonth
()
+
1
;
//月
...
...
src/pages/sale/orderStatistics.vue
View file @
fff261ab
...
...
@@ -206,10 +206,12 @@
if
(
this
.
$route
.
query
.
EndTime
)
{
this
.
msg
.
EndTime
=
this
.
$route
.
query
.
EndTime
+
'-01'
;
}
console
.
log
(
this
.
msg
.
StartTime
,
this
.
msg
.
EndTime
)
if
(
this
.
$route
.
query
.
EnterID
)
{
this
.
msg
.
EnterID
=
Number
(
this
.
$route
.
query
.
EnterID
)
;
}
if
(
this
.
$route
.
query
.
ClassName
)
{
this
.
msg
.
ClassName
=
this
.
$route
.
query
.
ClassName
;
}
this
.
getOrderState
();
this
.
getCourseList
();
},
...
...
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