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
54293c97
Commit
54293c97
authored
Dec 17, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加页面
parent
aec8cdac
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
503 additions
and
1 deletion
+503
-1
index.js
src/api/finance/index.js
+12
-0
bjqk.png
src/assets/images/myimg/bjqk.png
+0
-0
bjsr.png
src/assets/images/myimg/bjsr.png
+0
-0
lr.png
src/assets/images/myimg/lr.png
+0
-0
qt.png
src/assets/images/myimg/qt.png
+0
-0
tc.png
src/assets/images/myimg/tc.png
+0
-0
zc.png
src/assets/images/myimg/zc.png
+0
-0
classManage.vue
src/pages/course/classManage.vue
+12
-1
paymentDetail.vue
src/pages/course/paymentDetail.vue
+474
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/api/finance/index.js
0 → 100644
View file @
54293c97
import
request
from
'../../utils/request'
/**
* 获取收支明细数据
*
*/
export
function
GetClassBalanceSheet
(
data
)
{
return
request
({
url
:
'/Finance/GetClassBalanceSheet'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/assets/images/myimg/bjqk.png
0 → 100644
View file @
54293c97
470 Bytes
src/assets/images/myimg/bjsr.png
0 → 100644
View file @
54293c97
593 Bytes
src/assets/images/myimg/lr.png
0 → 100644
View file @
54293c97
600 Bytes
src/assets/images/myimg/qt.png
0 → 100644
View file @
54293c97
616 Bytes
src/assets/images/myimg/tc.png
0 → 100644
View file @
54293c97
610 Bytes
src/assets/images/myimg/zc.png
0 → 100644
View file @
54293c97
583 Bytes
src/pages/course/classManage.vue
View file @
54293c97
...
...
@@ -73,7 +73,7 @@
<q-td
:props=
"props"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"订单中心"
@
click=
"gotoOrder(props.row)"
></q-btn>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"收支明细"
></q-btn>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
@
click=
"goPayment(props.row)"
style=
"font-weight:400"
label=
"收支明细"
></q-btn>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditCourse(props.row)"
/>
</q-td>
...
...
@@ -198,6 +198,17 @@
path
:
tempStr
});
},
//跳转到收支明细
goPayment
(
item
){
this
.
$router
.
push
({
path
:
'paymentDetail'
,
query
:{
ClassId
:
item
.
ClassId
,
School_Id
:
item
.
School_Id
,
blank
:
'y'
}
})
},
//获取校区列表
getSchool
()
{
getSchoolDropdown
({}).
then
(
res
=>
{
...
...
src/pages/course/paymentDetail.vue
0 → 100644
View file @
54293c97
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
54293c97
...
...
@@ -107,6 +107,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/course/baseSet.vue"
)
},
{
path
:
"/course/paymentDetail"
,
//收支明细
component
:
()
=>
import
(
"pages/course/paymentDetail.vue"
)
},
{
path
:
"/course/classorder"
,
//班级订单
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