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
f268857f
Commit
f268857f
authored
Apr 26, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
85fd4e87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
lesson-form.vue
src/components/course/lesson-form.vue
+1
-1
record-form.vue
src/components/course/record-form.vue
+20
-2
No files found.
src/components/course/lesson-form.vue
View file @
f268857f
...
...
@@ -556,7 +556,7 @@
isSigned
:
true
,
columns
:[{
name
:
'RoomName'
,
label
:
'
校区
名称'
,
label
:
'
教室
名称'
,
field
:
'RoomName'
,
align
:
'left'
,
},{
...
...
src/components/course/record-form.vue
View file @
f268857f
...
...
@@ -75,6 +75,10 @@
.TeacherNameList
{
position
:
relative
;
}
.recordForm
.underLine
{
text-decoration
:
underline
;
cursor
:
pointer
;
}
</
style
>
<
template
>
<div
class=
"page-body"
>
...
...
@@ -103,12 +107,26 @@
</
template
>
<
template
v-slot:body-cell-CheckNum=
"props"
>
<q-td
auto-width
:props=
"props"
style=
"width:25%"
>
<span
style=
"color:green;"
>
{{
props
.
row
.
CheckNum
}}
</span>
<span
style=
"color:green;"
:class=
"
{'underLine':props.row.CheckList.length>0}">
{{
props
.
row
.
CheckNum
}}
<q-popup-proxy
v-if=
"props.row.CheckList.length>0"
>
<q-banner>
<q-chip
dense
v-for=
"(subItem,subindex) in props.row.CheckList"
:key=
"subindex"
>
{{
subItem
.
GuestName
}}
</q-chip>
</q-banner>
</q-popup-proxy>
</span>
</q-td>
</
template
>
<
template
v-slot:body-cell-NoCheckNum=
"props"
>
<q-td
auto-width
:props=
"props"
style=
"width:25%"
>
<span
style=
"color:red;"
>
{{
props
.
row
.
NoCheckNum
}}
</span>
<span
style=
"color:red;"
:class=
"
{'underLine':props.row.NoCheckList.length>0}">
{{
props
.
row
.
NoCheckNum
}}
<q-popup-proxy
v-if=
"props.row.NoCheckList.length>0"
>
<q-banner>
<q-chip
dense
v-for=
"(subItem,subindex) in props.row.NoCheckList"
:key=
"subindex"
>
{{
subItem
.
GuestName
}}
</q-chip>
</q-banner>
</q-popup-proxy>
</span>
</q-td>
</
template
>
<
template
v-slot:bottom
>
...
...
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