master
lion 7 months ago
parent e4d8705de7
commit 2d1a8c3784

@ -263,6 +263,12 @@
width: 120, width: 120,
fixed: 'left' fixed: 'left'
}, },
{
prop: 'user.is_schoolmate_text',
label: '校友',
align: 'center',
width: 120,
},
{ {
prop: 'username', prop: 'username',
label: '姓名', label: '姓名',
@ -293,6 +299,16 @@
} }
} }
}, { }, {
prop: 'is_yh_invested',
label: '集团标签',
align: 'center',
width: 120,
customFn:(row)=>{
if(row.company){
return(<div>{row.company.is_yh_invested?'被投企业':''}</div>)
}
}
},{
prop: 'user.company_position', prop: 'user.company_position',
label: '职务', label: '职务',
align: 'center', align: 'center',

@ -158,7 +158,8 @@ export default {
{ {
icon: 'el-icon-user-solid', icon: 'el-icon-user-solid',
value: '0', value: '0',
label: '报名人数(未去重)', // label: '',
label: '投后企业数',
cardClass: 'student-card-1' cardClass: 'student-card-1'
}, },
{ {
@ -589,7 +590,7 @@ export default {
// API // API
if (data && data.list) { if (data && data.list) {
// //
this.studentStats[0].value = data.list.course_signs_total || '0' this.studentStats[0].value = data.list.course_signs_invested || '0'
// //
this.studentStats[1].value = data.list.course_signs_pass || '0' this.studentStats[1].value = data.list.course_signs_pass || '0'

@ -441,12 +441,25 @@
label: '是否校友库学员', label: '是否校友库学员',
align: 'center', align: 'center',
width: 120, width: 120,
},{ },
prop: 'is_vip', // {
label: '学员身份', // prop: 'is_vip',
align: 'center', // label: '',
width: 120, // align: 'center',
},{ // width: 120,
// },
{
prop: 'is_yuanhe',
label: '集团标签',
align: 'center',
width: 120,
customFn:(row)=>{
if(row.company){
return(<div>{row.company.is_yh_invested?'被投企业':''}</div>)
}
}
},
{
prop: 'is_wx', prop: 'is_wx',
label: '是否绑定小程序', label: '是否绑定小程序',
align: 'center', align: 'center',

@ -395,6 +395,11 @@
label: '职务', label: '职务',
align: 'center', align: 'center',
width: 120, width: 120,
}, {
prop: 'from',
label: '学员标签',
align: 'center',
width: 120,
}, { }, {
prop: 'is_schoolmate', prop: 'is_schoolmate',
label: '是否校友库学员', label: '是否校友库学员',

@ -93,7 +93,7 @@
</el-table-column> </el-table-column>
</template> </template>
<template v-slot:users> <template v-slot:users>
<el-table-column align='center' label="校友信息" width="800" header-align="center"> <el-table-column align='center' label="学员信息" width="800" header-align="center">
<el-table-column label="学号" width="120" align="center"> <el-table-column label="学号" width="120" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="user-item" v-for="(item, uIdx) in (scope.row.users || [])" :key="uIdx"> <div class="user-item" v-for="(item, uIdx) in (scope.row.users || [])" :key="uIdx">
@ -101,7 +101,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="校友" width="120" align="left"> <el-table-column label="学员" width="120" align="left">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="user-item" v-for="(item, uIdx) in (scope.row.users || [])" :key="uIdx"> <div class="user-item" v-for="(item, uIdx) in (scope.row.users || [])" :key="uIdx">
{{ item.name || '' }} {{ item.name || '' }}
@ -222,7 +222,7 @@
width: 120, width: 120,
}, { }, {
prop: 'users', prop: 'users',
label: '校友信息', label: '学员信息',
align: 'center', align: 'center',
width: 240, width: 240,
}] }]

Loading…
Cancel
Save