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
c5af9542
Commit
c5af9542
authored
Jul 06, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改一些跳转带文字过去
parent
3fd533d4
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
32 deletions
+31
-32
classManage.vue
src/pages/course/classManage.vue
+3
-2
course.vue
src/pages/course/course.vue
+1
-1
TeamRevenueReport.vue
src/pages/financial/TeamRevenueReport.vue
+2
-1
BasicDocuments.vue
src/pages/financial/financalDocument/BasicDocuments.vue
+2
-1
FinancialDocuments.vue
src/pages/financial/financalDocument/FinancialDocuments.vue
+13
-8
FinancialDocumentsDetail.vue
...s/financial/financalDocument/FinancialDocumentsDetail.vue
+2
-1
orderCompleteStatistics.vue
src/pages/financial/orderCompleteStatistics.vue
+5
-2
saleAchievementsRank.vue
src/pages/financial/saleAchievementsRank.vue
+0
-14
teacherclassfee.vue
src/pages/financial/teacherclassfee.vue
+2
-1
contractManage.vue
src/pages/sale/contractManage.vue
+1
-1
No files found.
src/pages/course/classManage.vue
View file @
c5af9542
...
...
@@ -328,7 +328,7 @@
},
created
()
{
if
(
this
.
$route
.
query
)
{
this
.
msg
.
ClassName
=
this
.
$route
.
query
.
ClassName
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
)
}
this
.
getClassStatus
();
this
.
getSchool
();
...
...
@@ -517,9 +517,10 @@
this
.
isShowClassInfo
=
true
;
},
gomonthLessonCost
(
row
){
let
ClassName
=
encodeURI
(
row
.
ClassName
)
this
.
OpenNewUrl
(
'/course/monthLessonCost'
,
{
ClassId
:
row
.
ClassId
,
ClassName
:
row
.
ClassName
,
ClassName
:
ClassName
,
});
}
}
...
...
src/pages/course/course.vue
View file @
c5af9542
...
...
@@ -332,7 +332,7 @@
}),
mounted
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Name
){
//从订单完成统计跳转过来的带的参数
this
.
msg
.
CourseName
=
this
.
$route
.
query
.
Name
this
.
msg
.
CourseName
=
decodeURI
(
this
.
$route
.
query
.
Name
)
}
this
.
getCategorytree
();
this
.
currentUrl
=
this
.
$route
.
path
;
...
...
src/pages/financial/TeamRevenueReport.vue
View file @
c5af9542
...
...
@@ -1478,9 +1478,10 @@
})
}
else
if
(
column
.
title
==
'已上课时'
){
if
(
rowData
.
ClassId
>
0
){
let
ClassName
=
encodeURI
(
rowData
.
ClassName
)
this
.
OpenNewUrl
(
'/course/monthLessonCost'
,
{
ClassId
:
rowData
.
ClassId
,
ClassName
:
rowData
.
ClassName
,
ClassName
:
ClassName
,
});
}
}
...
...
src/pages/financial/financalDocument/BasicDocuments.vue
View file @
c5af9542
...
...
@@ -3332,10 +3332,11 @@
},
jumpbjPage
(
path
,
item
)
{
if
(
path
==
'classManage'
)
{
let
Name
=
encodeURI
(
item
.
ClassName
)
this
.
$router
.
push
({
path
:
'/course/'
+
path
,
query
:
{
'ClassName'
:
item
.
Class
Name
'ClassName'
:
Name
}
})
}
else
if
(
path
==
'paymentDetail'
)
{
...
...
src/pages/financial/financalDocument/FinancialDocuments.vue
View file @
c5af9542
...
...
@@ -2424,16 +2424,21 @@
this
.
currentPage
=
1
;
},
goUrl
(
path
,
id
,
Conditon
,
pageIndex
)
{
this
.
$router
.
push
({
path
:
'/financial/financalDocument/'
+
path
,
query
:
{
"id"
:
id
,
this
.
OpenNewUrl
(
'/financial/financalDocument/'
+
path
,
{
"id"
:
id
,
"Conditon"
:
Conditon
,
"pageIndex"
:
pageIndex
,
blank
:
'y'
,
tab
:
'单据详情'
}
})
});
// this.$router.push({
// path: '/financial/financalDocument/' + path,
// query: {
// "id": id,
// "Conditon": Conditon,
// "pageIndex": pageIndex,
// blank: 'y',
// tab: '单据详情'
// }
// })
},
goUrlWeituo
(
path
)
{
let
tempStr
=
'/financial/financalDocument/'
+
path
;
...
...
src/pages/financial/financalDocument/FinancialDocumentsDetail.vue
View file @
c5af9542
...
...
@@ -2192,10 +2192,11 @@
},
jumpbjPage
(
path
,
item
)
{
if
(
path
==
'classManage'
)
{
let
Name
=
encodeURI
(
item
.
ClassName
)
this
.
$router
.
push
({
path
:
'/course/'
+
path
,
query
:
{
'ClassName'
:
item
.
Class
Name
'ClassName'
:
Name
}
})
}
else
if
(
path
==
'paymentDetail'
)
{
...
...
src/pages/financial/orderCompleteStatistics.vue
View file @
c5af9542
...
...
@@ -628,12 +628,15 @@
}
},
goUrl
(
path
,
Name
){
goUrl
(
path
,
Names
){
let
Name
=
encodeURI
(
Names
)
console
.
log
(
Name
)
this
.
OpenNewUrl
(
path
,
{
Name
:
Name
,
});
},
goUrl2
(
path
,
Name
){
//班级
goUrl2
(
path
,
Names
){
//班级
let
Name
=
encodeURI
(
Names
)
this
.
OpenNewUrl
(
path
,
{
ClassName
:
Name
,
});
...
...
src/pages/financial/saleAchievementsRank.vue
View file @
c5af9542
...
...
@@ -118,20 +118,6 @@
<el-table-column
prop=
"GuestNum"
label=
"报名人数"
>
</el-table-column>
<el-table-column
prop=
"JKNum"
label=
"结课人数"
>
</el-table-column>
<el-table-column
prop=
"OrderNum"
label=
"订单数量"
>
</el-table-column>
<!-- <el-table-column label="操作">
<template slot-scope="scope">
<div class="_icon_btn">
<el-tooltip class="item" effect="dark" content="查看老师" placement="top">
<i class="iconfont icon-sousuo"
@click="goUrl('teacherclassfee',scope.row.AccountId)"></i>
</el-tooltip>
<el-tooltip class="item" effect="dark" content="查看学生" placement="top">
<i class="iconfont icon-sousuo"
@click="goUrl('studentsClassfee',scope.row.AccountId)"></i>
</el-tooltip>
</div>
</template>
</el-table-column> -->
</el-table>
<div
style=
"margin-top: 10px;text-align: center;"
>
...
...
src/pages/financial/teacherclassfee.vue
View file @
c5af9542
...
...
@@ -222,7 +222,8 @@
this
.
msg
.
EndMonth
=
this
.
$route
.
query
.
EndMonth
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassName
){
this
.
ClassName
=
[
this
.
$route
.
query
.
ClassName
]
let
Name
=
decodeURI
(
this
.
$route
.
query
.
ClassName
)
this
.
ClassName
=
[
Name
]
}
},
...
...
src/pages/sale/contractManage.vue
View file @
c5af9542
...
...
@@ -251,7 +251,7 @@
created
()
{},
mounted
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Name
){
//从订单完成统计跳转过来的带的参数
this
.
msg
.
ContractNo
=
this
.
$route
.
query
.
Name
this
.
msg
.
ContractNo
=
decodeURI
(
this
.
$route
.
query
.
Name
)
}
this
.
getList
()
},
...
...
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