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
c2215bf1
Commit
c2215bf1
authored
Jun 29, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售提成排行
parent
6b8a8b9f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
335 additions
and
1 deletion
+335
-1
index.js
src/api/finance/index.js
+9
-0
saleAchievementsRank.vue
src/pages/financial/saleAchievementsRank.vue
+308
-0
studentsClassfee.vue
src/pages/financial/studentsClassfee.vue
+12
-1
routes.js
src/router/routes.js
+6
-0
No files found.
src/api/finance/index.js
View file @
c2215bf1
...
...
@@ -175,5 +175,14 @@ export function getStudentConsumptionHoursDetialPageList(data) {
});
}
// 财务报表 销售业绩排名统计
export
function
getSaleAchievementsRankStatistics
(
data
)
{
return
request
({
url
:
'/finance/GetSaleAchievementsRankStatistics'
,
method
:
'post'
,
data
});
}
src/pages/financial/saleAchievementsRank.vue
0 → 100644
View file @
c2215bf1
This diff is collapsed.
Click to expand it.
src/pages/financial/studentsClassfee.vue
View file @
c2215bf1
...
...
@@ -112,7 +112,13 @@
<
template
>
<el-table
ref=
"filterTable"
:data=
"tableData"
v-loading=
'loading'
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
<el-table-column
prop=
"OrderId"
label=
"订单号"
></el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<template
slot-scope=
"scope"
>
<div
style=
"text-decoration: underline;cursor: pointer;"
@
click=
'gobaoming(scope.row.OrderId)'
>
{{
scope
.
row
.
OrderId
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"ContractNo"
width=
'150'
label=
"合同号"
></el-table-column>
<el-table-column
prop=
"ClassDate"
label=
"上课日期"
></el-table-column>
<el-table-column
prop=
"TimeBucket"
label=
"上课时间段"
>
</el-table-column>
...
...
@@ -274,6 +280,11 @@
txexport
(){
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/finance/GetStudentConsumptionHoursDetialPageListToExcel"
,
msg
,
"课耗学生明细.xls"
)
},
gobaoming
(
Id
){
this
.
OpenNewUrl
(
'/sale/orderStatistics'
,
{
OrderId
:
Id
});
}
},
...
...
src/router/routes.js
View file @
c2215bf1
...
...
@@ -253,6 +253,12 @@ const routes = [{
component
:
()
=>
import
(
"pages/financial/teacherclassfee.vue"
)
},
{
path
:
"/financial/saleAchievementsRank"
,
//销售业绩排名统计
component
:
()
=>
import
(
"pages/financial/saleAchievementsRank.vue"
)
},
{
path
:
"/financial/studentsClassfee"
,
//学生课耗明细列表
component
:
()
=>
...
...
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