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
cd2ec11f
Commit
cd2ec11f
authored
Jul 30, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
b16a3547
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
classlist.vue
src/components/course/classlist.vue
+8
-2
classManage.vue
src/pages/course/classManage.vue
+4
-2
stuClassManage.vue
src/pages/stuMan/stuClassManage.vue
+1
-1
No files found.
src/components/course/classlist.vue
View file @
cd2ec11f
...
...
@@ -43,7 +43,7 @@
</
style
>
<
template
>
<div
class=
"page-content classList"
>
<q-table
:pagination=
"pageMsg"
no-data-label=
"暂无相关数据"
flat
<q-table
:pagination=
"pageMsg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table sticky-right-column-table "
separator=
"none"
:data=
"data"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:top=
"props"
>
...
...
@@ -190,6 +190,9 @@
</q-btn-dropdown>
</q-td>
</
template
>
<
template
v-slot:loading
>
<q-inner-loading
showing
color=
"primary"
/>
</
template
>
</q-table>
<class-form
v-if=
"isShowClassForm"
:save-obj=
"classObjOption"
@
getClassFlict=
"getClassFlict"
@
close=
"closeClassSaveForm"
@
success=
"refreshPage"
>
</class-form>
...
...
@@ -236,6 +239,10 @@
authObj
:
{
type
:
Object
,
default
:
null
},
loading
:
{
type
:
Boolean
,
default
:
null
}
},
components
:
{
...
...
@@ -354,7 +361,6 @@
this
.
initAuth
();
},
mounted
()
{
},
methods
:
{
//关闭、
...
...
src/pages/course/classManage.vue
View file @
cd2ec11f
...
...
@@ -57,7 +57,7 @@
</div>
</div>
<div
class=
"page-content"
>
<classlist
:data=
"data"
:authObj=
"authObj"
@
success=
"refreshPage"
></classlist>
<classlist
:data=
"data"
:authObj=
"authObj"
:loading=
"loading"
@
success=
"refreshPage"
></classlist>
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"pageCount"
:input=
"true"
@
input=
"changePage"
/>
</div>
...
...
@@ -200,7 +200,8 @@
isShowStatusChange
:
true
,
//显示状态变更
isShowStudentMenu
:
true
,
//显示未完成学员名单
isShowApply
:
true
//显示调课申请
}
},
loading
:
false
}
},
created
()
{
...
...
@@ -340,6 +341,7 @@
//获取菜单分页列表
getClassList
()
{
this
.
loading
=
true
;
this
.
data
=
[];
queryClassPage
(
this
.
msg
).
then
(
res
=>
{
this
.
loading
=
false
;
this
.
data
=
res
.
Data
.
PageData
;
...
...
src/pages/stuMan/stuClassManage.vue
View file @
cd2ec11f
...
...
@@ -69,7 +69,7 @@
</div>
</div>
<div
class=
"page-content"
>
<classlist
:data=
"data"
:authObj=
"authObj"
@
success=
"refreshPage"
></classlist>
<classlist
:data=
"data"
:authObj=
"authObj"
:loading=
"loading"
@
success=
"refreshPage"
></classlist>
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"pageCount"
:input=
"true"
@
input=
"changePage"
/>
</div>
...
...
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