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
562b6420
Commit
562b6420
authored
Jul 08, 2021
by
罗超
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
06d350c3
908d9f56
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
401 additions
and
14 deletions
+401
-14
index.js
src/api/finance/index.js
+11
-0
lesson-form.vue
src/components/course/lesson-form.vue
+3
-2
monthLessonCost.vue
src/pages/course/monthLessonCost.vue
+2
-1
TeamRevenueReport.vue
src/pages/financial/TeamRevenueReport.vue
+1
-1
cycleList.vue
src/pages/financial/cycleList.vue
+14
-3
cycleOrderList.vue
src/pages/financial/cycleOrderList.vue
+14
-3
RecPayQueryTeam.vue
src/pages/financial/reportform/RecPayQueryTeam.vue
+340
-0
studentsClassfee.vue
src/pages/financial/studentsClassfee.vue
+1
-1
userCommissionDetails.vue
src/pages/financial/userCommissionDetails.vue
+8
-2
teachMonthLessonCost.vue
src/pages/teacher/teachMonthLessonCost.vue
+2
-1
routes.js
src/router/routes.js
+5
-0
No files found.
src/api/finance/index.js
View file @
562b6420
...
@@ -203,5 +203,16 @@ export function setSellCommissionSendEmployee(data) {
...
@@ -203,5 +203,16 @@ export function setSellCommissionSendEmployee(data) {
}
}
// 获取月度班级收支统计
export
function
getAllClassNowMonthStatistics
(
data
)
{
return
request
({
url
:
'/finance/GetAllClassNowMonthStatistics'
,
method
:
'post'
,
data
});
}
src/components/course/lesson-form.vue
View file @
562b6420
...
@@ -310,7 +310,7 @@
...
@@ -310,7 +310,7 @@
</
template
>
</
template
>
<
template
v-slot:body-cell-optioned=
"props"
>
<
template
v-slot:body-cell-optioned=
"props"
>
<q-td
:props=
"props"
style=
"width:130px;"
>
<q-td
:props=
"props"
style=
"width:130px;"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400
;display:none;
"
label=
"编辑"
@
click=
"getInfo(props.row)"
>
@
click=
"getInfo(props.row)"
>
<q-popup-proxy>
<q-popup-proxy>
<q-banner
v-if=
"isShowEdit"
>
<q-banner
v-if=
"isShowEdit"
>
...
@@ -410,7 +410,7 @@
...
@@ -410,7 +410,7 @@
<div
class=
"calendarTop"
>
<div
class=
"calendarTop"
>
<div>
{{
item
.
RoomName
}}
</div>
<div>
{{
item
.
RoomName
}}
</div>
<div>
<div>
<i
class=
"iconfont icon-edit Lessicon_Edit"
@
click
.
stop=
"getInfo(item)"
>
<i
class=
"iconfont icon-edit Lessicon_Edit"
style=
"display:none;"
@
click
.
stop=
"getInfo(item)"
>
<q-popup-proxy>
<q-popup-proxy>
<q-banner
v-if=
"isShowEdit"
>
<q-banner
v-if=
"isShowEdit"
>
<div
class=
"calenderDialog"
>
<div
class=
"calenderDialog"
>
...
@@ -574,6 +574,7 @@
...
@@ -574,6 +574,7 @@
<el-select
v-model=
"props.row.IsCheck"
style=
"width:80px;"
size=
"small"
placeholder=
"小时"
>
<el-select
v-model=
"props.row.IsCheck"
style=
"width:80px;"
size=
"small"
placeholder=
"小时"
>
<el-option
label=
"出勤"
:value=
"0"
></el-option>
<el-option
label=
"出勤"
:value=
"0"
></el-option>
<el-option
label=
"缺勤"
:value=
"1"
></el-option>
<el-option
label=
"缺勤"
:value=
"1"
></el-option>
<el-option
label=
"请假"
:value=
"2"
></el-option>
</el-select>
</el-select>
</q-td>
</q-td>
</
template
>
</
template
>
...
...
src/pages/course/monthLessonCost.vue
View file @
562b6420
...
@@ -238,9 +238,10 @@
...
@@ -238,9 +238,10 @@
});
});
},
},
gourlteacher2
(
path
,
row
,
item
)
{
gourlteacher2
(
path
,
row
,
item
)
{
let
StudentName
=
encodeURI
(
row
.
StudentName
)
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
ClassId
:
this
.
ClassId
,
ClassId
:
this
.
ClassId
,
StudentName
:
row
.
StudentName
,
StudentName
:
StudentName
,
datetype
:
'2'
,
datetype
:
'2'
,
StartMonth
:
item
.
Month
,
StartMonth
:
item
.
Month
,
EndMonth
:
item
.
Month
,
EndMonth
:
item
.
Month
,
...
...
src/pages/financial/TeamRevenueReport.vue
View file @
562b6420
...
@@ -1425,7 +1425,7 @@
...
@@ -1425,7 +1425,7 @@
}
}
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
if
(
this
.
$route
.
query
.
BranchId
)
{
if
(
this
.
$route
.
query
.
BranchId
)
{
this
.
msg
.
SchoolId
=
this
.
$route
.
query
.
BranchId
!=
undefined
?
this
.
$route
.
query
.
BranchId
:
''
;
this
.
msg
.
SchoolId
=
this
.
$route
.
query
.
BranchId
!=
undefined
?
Number
(
this
.
$route
.
query
.
BranchId
)
:
''
;
}
else
{
}
else
{
if
(
userInfo
.
School_Id
>
0
)
{
if
(
userInfo
.
School_Id
>
0
)
{
...
...
src/pages/financial/cycleList.vue
View file @
562b6420
...
@@ -105,13 +105,13 @@
...
@@ -105,13 +105,13 @@
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
ClassName
}}
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
<div>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlclass('/course/classManage',scope.row.ClassName)"
>
{{
scope
.
row
.
ClassName
}}
</span>
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
style=
"cursor: pointer;
"
>
{{
scope
.
row
.
OrderId
}}
</div>
<div
style=
"cursor: pointer;
text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row.OrderId)"
>
{{
scope
.
row
.
OrderId
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -394,7 +394,18 @@
...
@@ -394,7 +394,18 @@
tcexport
(){
//导出
tcexport
(){
//导出
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/SellCommission/GetSellCommissionStatisticsToExcel"
,
msg
,
"提成统计.xls"
)
EduDownLoad
(
"/SellCommission/GetSellCommissionStatisticsToExcel"
,
msg
,
"提成统计.xls"
)
}
},
goUrlclass
(
path
,
Names
){
//班级
let
Name
=
encodeURI
(
Names
)
this
.
OpenNewUrl
(
path
,
{
ClassName
:
Name
,
});
},
goUrlorderList
(
path
,
ID
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
});
},
},
},
}
}
...
...
src/pages/financial/cycleOrderList.vue
View file @
562b6420
...
@@ -60,14 +60,14 @@
...
@@ -60,14 +60,14 @@
</el-table-column>
</el-table-column>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
ClassName
}}
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
<div>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlclass('/course/classManage',scope.row.ClassName)"
>
{{
scope
.
row
.
ClassName
}}
</span>
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
style=
"cursor: pointer;"
>
{{
scope
.
row
.
OrderId
}}
</div>
<div
style=
"cursor: pointer;
text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row.OrderId)
"
>
{{
scope
.
row
.
OrderId
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -265,7 +265,18 @@
...
@@ -265,7 +265,18 @@
},
},
goreturn
()
{
goreturn
()
{
this
.
$router
.
go
(
-
1
);
this
.
$router
.
go
(
-
1
);
}
},
goUrlclass
(
path
,
Names
){
//班级
let
Name
=
encodeURI
(
Names
)
this
.
OpenNewUrl
(
path
,
{
ClassName
:
Name
,
});
},
goUrlorderList
(
path
,
ID
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
});
},
...
...
src/pages/financial/reportform/RecPayQueryTeam.vue
0 → 100644
View file @
562b6420
This diff is collapsed.
Click to expand it.
src/pages/financial/studentsClassfee.vue
View file @
562b6420
...
@@ -243,7 +243,7 @@
...
@@ -243,7 +243,7 @@
this
.
msg
.
ClassId
=
Number
(
this
.
$route
.
query
.
ClassId
)
this
.
msg
.
ClassId
=
Number
(
this
.
$route
.
query
.
ClassId
)
}
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
StudentName
){
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
StudentName
){
this
.
msg
.
StudentName
=
this
.
$route
.
query
.
StudentName
this
.
msg
.
StudentName
=
decodeURI
(
this
.
$route
.
query
.
StudentName
)
}
}
},
},
...
...
src/pages/financial/userCommissionDetails.vue
View file @
562b6420
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
ClassName
}}
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
<div>
<span
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlclass('/course/classManage',scope.row.ClassName)"
>
{{
scope
.
row
.
ClassName
}}
</span>
{{
scope
.
row
.
ClassTypeName
}}
<span
style=
"color: #409EFF;"
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
v-if=
'scope.row.IsContinueClass==1'
>
(续)
</span></div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
<div>
学生数量:
{{
scope
.
row
.
StudentCount
}}
人
</div>
</
template
>
</
template
>
...
@@ -242,7 +242,13 @@
...
@@ -242,7 +242,13 @@
},
},
goreturn
()
{
goreturn
()
{
this
.
$router
.
go
(
-
1
);
this
.
$router
.
go
(
-
1
);
}
},
goUrlclass
(
path
,
Names
){
//班级
let
Name
=
encodeURI
(
Names
)
this
.
OpenNewUrl
(
path
,
{
ClassName
:
Name
,
});
},
},
},
}
}
</
script
>
</
script
>
...
...
src/pages/teacher/teachMonthLessonCost.vue
View file @
562b6420
...
@@ -238,9 +238,10 @@
...
@@ -238,9 +238,10 @@
});
});
},
},
gourlteacher2
(
path
,
row
,
item
)
{
gourlteacher2
(
path
,
row
,
item
)
{
let
StudentName
=
encodeURI
(
row
.
StudentName
)
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
ClassId
:
this
.
ClassId
,
ClassId
:
this
.
ClassId
,
StudentName
:
row
.
StudentName
,
StudentName
:
StudentName
,
datetype
:
'2'
,
datetype
:
'2'
,
StartMonth
:
item
.
Month
,
StartMonth
:
item
.
Month
,
EndMonth
:
item
.
Month
,
EndMonth
:
item
.
Month
,
...
...
src/router/routes.js
View file @
562b6420
...
@@ -537,6 +537,11 @@ const routes = [{
...
@@ -537,6 +537,11 @@ const routes = [{
component
:
()
=>
component
:
()
=>
import
(
"pages/financial/financalDocument/BasicDocuments.vue"
)
import
(
"pages/financial/financalDocument/BasicDocuments.vue"
)
},
},
{
path
:
"/financial/reportform/RecPayQueryTeam"
,
//财务报表 月度班级收支统计
component
:
()
=>
import
(
"pages/financial/reportform/RecPayQueryTeam.vue"
)
},
{
{
path
:
"/administration/document"
,
//行政公告
path
:
"/administration/document"
,
//行政公告
component
:
()
=>
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