Commit 144fd10b authored by 罗超's avatar 罗超

新增列

parent 40b01695
......@@ -133,6 +133,20 @@
<template v-slot:body-cell-CurseManager="props">
<q-td :props="props" v-html="getCurseManager(props.row)"></q-td>
</template>
<template v-slot:body-cell-OrderCount="props">
<q-td
:props="props"
v-if="props.row.OrderCount == 0"
class="text-grey-4"
>未报名</q-td
>
<q-td
:props="props"
v-if="props.row.OrderCount > 0"
class="bg-negative text-white"
>已报名{{ props.row.OrderCount }}</q-td
>
</template>
<template v-slot:body-cell-TeacherManager="props">
<q-td :props="props" v-html="getTeacherManager(props.row)"></q-td>
</template>
......@@ -268,6 +282,11 @@ export default {
label: "协助老师",
align: "left"
},
{
name: "OrderCount",
label: "是否报名",
align: "left"
},
{
name: "StuSex",
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