Commit 9271c22f authored by zhengke's avatar zhengke

修改

parent b3b40f21
......@@ -58,6 +58,13 @@
</template>
</q-td>
</template>
<template v-slot:body-cell-ClassContent="props">
<q-td :props="props">
<div style="min-width: 150px;word-break: break-word;white-space: normal;">
{{props.row.ClassContent}}
</div>
</q-td>
</template>
<template v-slot:body-cell-ReserveStatusStr="props">
<q-td :props="props">
<template v-if="props.row.ReserveStatus==0">
......@@ -173,10 +180,16 @@
},
{
name: 'ClassTime',
label: '时间',
label: '开始时间',
field: 'ClassTime',
align: 'left'
},
{
name: 'EndTime',
label: '结束时间',
field: 'EndTime',
align: 'left'
},
{
name: 'TeacherName',
label: '老师',
......
......@@ -42,6 +42,13 @@
<q-btn color="accent" size="sm" class="q-mr-md" icon="add" label="添加试听" @click="editVisitor(null)" />
</div>
</template>
<template v-slot:body-cell-ClassContent="props">
<q-td :props="props">
<div style="min-width: 150px;word-break: break-word;white-space: normal;">
{{props.row.ClassContent}}
</div>
</q-td>
</template>
<template v-slot:body-cell-TeacherId="props">
<q-td :props="props">
<q-btn flat size="xs" icon="edit" color="accent" @click="editVisitor(props.row)" style="font-weight:400" label="修改" />
......@@ -104,10 +111,16 @@
},
{
name: 'ClassTime',
label: '上课时间',
label: '开始时间',
align: 'left',
field: 'ClassTime',
},
{
name: 'EndTime',
label: '结束时间',
align: 'left',
field: 'EndTime',
},
{
name: 'RoomName',
label: '教室',
......
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