|
@@ -9,8 +9,8 @@
|
|
|
<template #name="{ item }">
|
|
<template #name="{ item }">
|
|
|
<text class="font-bold">{{ item.name }}</text>
|
|
<text class="font-bold">{{ item.name }}</text>
|
|
|
</template>
|
|
</template>
|
|
|
- <template #score="{ item }">
|
|
|
|
|
- <text class="font-bold">{{ item.score }}</text>
|
|
|
|
|
|
|
+ <template #total="{ item }">
|
|
|
|
|
+ <text class="font-bold">{{ item.total }}</text>
|
|
|
</template>
|
|
</template>
|
|
|
<template #action="{ item }">
|
|
<template #action="{ item }">
|
|
|
<text class="text-30 text-primary font-bold" @click="handleRowClick(item)">查看</text>
|
|
<text class="text-30 text-primary font-bold" @click="handleRowClick(item)">查看</text>
|
|
@@ -44,6 +44,7 @@ const tableColumns: TableColumnConfig[] = [
|
|
|
prop: 'total',
|
|
prop: 'total',
|
|
|
label: '做卷数量',
|
|
label: '做卷数量',
|
|
|
flex: 1,
|
|
flex: 1,
|
|
|
|
|
+ slot: 'total'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'action',
|
|
prop: 'action',
|