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
e002774c
Commit
e002774c
authored
Jul 01, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增订单统计跳转
parent
7825a47a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
4 deletions
+26
-4
course.vue
src/pages/course/course.vue
+3
-0
orderCompleteStatistics.vue
src/pages/financial/orderCompleteStatistics.vue
+20
-4
contractManage.vue
src/pages/sale/contractManage.vue
+3
-0
No files found.
src/pages/course/course.vue
View file @
e002774c
...
...
@@ -330,6 +330,9 @@
}
}),
mounted
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Name
){
//从订单完成统计跳转过来的带的参数
this
.
msg
.
CourseName
=
this
.
$route
.
query
.
Name
}
this
.
getCategorytree
();
this
.
currentUrl
=
this
.
$route
.
path
;
this
.
getcourselist
();
...
...
src/pages/financial/orderCompleteStatistics.vue
View file @
e002774c
...
...
@@ -219,11 +219,11 @@
<template
v-for=
"(item,index) in DataList"
v-loading=
"loading"
>
<tr>
<!-- -合同信息-- -->
<td
>
{{
item
.
OrderId
}}
</td>
<td
@
click=
"goUrl3('/sale/orderStatistics',item.OrderId)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
OrderId
}}
</span>
</td>
<td>
{{
item
.
CreateTime
}}
</td>
<td
>
{{
item
.
ContractNo
}}
</td>
<td
>
{{
item
.
CourseName
}}
</td>
<td
>
{{
item
.
ClassName
}}
</td>
<td
@
click=
"goUrl('/sale/contractManage',item.ContractNo)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ContractNo
}}
</span>
</td>
<td
@
click=
"goUrl('/course/course',item.CourseName)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
CourseName
}}
</span>
</td>
<td
@
click=
"goUrl2('/course/classManage',item.ClassName)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ClassName
}}
</span>
</td>
<td>
{{
item
.
StudentName
}}
</td>
<td>
{{
item
.
CreateByName
}}
</td>
<td>
{{
item
.
TotalClassHours
}}
</td>
...
...
@@ -626,6 +626,22 @@
}
},
goUrl
(
path
,
Name
){
this
.
OpenNewUrl
(
path
,
{
Name
:
Name
,
});
},
goUrl2
(
path
,
Name
){
//班级
this
.
OpenNewUrl
(
path
,
{
ClassName
:
Name
,
});
},
goUrl3
(
path
,
ID
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
});
},
}
}
...
...
src/pages/sale/contractManage.vue
View file @
e002774c
...
...
@@ -250,6 +250,9 @@
},
created
()
{},
mounted
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Name
){
//从订单完成统计跳转过来的带的参数
this
.
msg
.
ContractNo
=
this
.
$route
.
query
.
Name
}
this
.
getList
()
},
methods
:
{
...
...
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