|
|
@@ -135,17 +135,11 @@
|
|
|
{{ record.sex === 1 ? '男' : (record.sex === 2 ? '女' : '') }}
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
- <a-table-column title="学院" :width="220" data-index="academy_name" ellipsis tooltip :filterable="{
|
|
|
- filter: (value, record) => (record.academy_name ?? '').includes(value),
|
|
|
- slotName: 'name-filter',
|
|
|
- icon: () => h(IconSearch)
|
|
|
- }"></a-table-column>
|
|
|
+ <a-table-column title="年级" :width="70" data-index="grade_id" tooltip></a-table-column>
|
|
|
+ <a-table-column title="学院" :width="220" data-index="academy_name" tooltip></a-table-column>
|
|
|
<a-table-column title="跑区" :width="130">
|
|
|
<template #cell="{ record }">
|
|
|
- <div class="vipcontent">
|
|
|
- <span>{{ record.area || '随机分配' }} </span>
|
|
|
- <!-- <img src="@/assets/vip.svg" alt="vip" height="20" v-if="record.area"> -->
|
|
|
- </div>
|
|
|
+ {{ record.area || '随机分配' }}
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
<a-table-column title="通知邮箱" :width="180" data-index="email" ellipsis tooltip></a-table-column>
|
|
|
@@ -194,7 +188,7 @@
|
|
|
</a-table-column>
|
|
|
<a-table-column title="累计次数" :width="88" ellipsis tooltip>
|
|
|
<template #cell="{ record }">
|
|
|
- {{ record.term_num - record.total_num > 0 ? `${record.total_num} / ${record.term_num}` :
|
|
|
+ {{ record.term_num != record.total_num ? `${record.total_num} / ${record.term_num}` :
|
|
|
'已完成' }}
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
@@ -434,7 +428,7 @@ const editAccount = (item) => {
|
|
|
form.student_num = ''
|
|
|
form.email = ''
|
|
|
form.auto_run = 1
|
|
|
- form.auto_time = 7
|
|
|
+ form.auto_time = 8
|
|
|
form.area = ''
|
|
|
form.notes = ''
|
|
|
}
|