|
@@ -30,8 +30,8 @@
|
|
</el-row>
|
|
</el-row>
|
|
<data-table :fields="fields" :data="list" :opera="opera" @share="share" @edit="toEdit" @delete="toDelete" @select="toSelect">
|
|
<data-table :fields="fields" :data="list" :opera="opera" @share="share" @edit="toEdit" @delete="toDelete" @select="toSelect">
|
|
<template #custom="{item,row}">
|
|
<template #custom="{item,row}">
|
|
- <template v-if="item.prop === 'openid'">
|
|
|
|
- <span :style="{ color: `${row[item.prop] ? '#67C23A' : '#F56C6C'}` }">{{ row[item.prop] ? '已绑定' : '未绑定' }}</span>
|
|
|
|
|
|
+ <template v-if="item.prop === 'is_bind'">
|
|
|
|
+ <span :style="{ color: `${row[item.prop] ? '#67C23A' : '#F56C6C'}` }">{{ row[item.prop] ? '已激活' : '未激活' }}</span>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</data-table>
|
|
</data-table>
|
|
@@ -197,7 +197,7 @@ export default {
|
|
{ label: '学生评分', prop: 'xsscore', options: { width: `100px` } },
|
|
{ label: '学生评分', prop: 'xsscore', options: { width: `100px` } },
|
|
{ label: '资料评分', prop: 'zlscore', options: { width: `100px` } },
|
|
{ label: '资料评分', prop: 'zlscore', options: { width: `100px` } },
|
|
{ label: '面试评分', prop: 'msscore', options: { width: `100px` } },
|
|
{ label: '面试评分', prop: 'msscore', options: { width: `100px` } },
|
|
- { label: '是否绑定微信', prop: 'openid', custom: true },
|
|
|
|
|
|
+ { label: '是否激活', prop: 'is_bind', custom: true },
|
|
|
|
|
|
{
|
|
{
|
|
label: '状态',
|
|
label: '状态',
|