Commit f268857f authored by zhengke's avatar zhengke

1

parent 85fd4e87
...@@ -556,7 +556,7 @@ ...@@ -556,7 +556,7 @@
isSigned: true, isSigned: true,
columns:[{ columns:[{
name: 'RoomName', name: 'RoomName',
label: '校区名称', label: '教室名称',
field: 'RoomName', field: 'RoomName',
align: 'left', align: 'left',
},{ },{
......
...@@ -75,6 +75,10 @@ ...@@ -75,6 +75,10 @@
.TeacherNameList{ .TeacherNameList{
position: relative; position: relative;
} }
.recordForm .underLine{
text-decoration: underline;
cursor: pointer;
}
</style> </style>
<template> <template>
<div class="page-body"> <div class="page-body">
...@@ -103,12 +107,26 @@ ...@@ -103,12 +107,26 @@
</template> </template>
<template v-slot:body-cell-CheckNum="props"> <template v-slot:body-cell-CheckNum="props">
<q-td auto-width :props="props" style="width:25%"> <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> </q-td>
</template> </template>
<template v-slot:body-cell-NoCheckNum="props"> <template v-slot:body-cell-NoCheckNum="props">
<q-td auto-width :props="props" style="width:25%"> <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> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment