|
|
|
@ -84,6 +84,7 @@
|
|
|
|
|
{ title: '序号', align: 'center', width: "5%", type: 'numbers' },
|
|
|
|
|
{ title: '名称', field: 'ys_name', align: 'center' },
|
|
|
|
|
{ title: '日期', field: 'ys_date', align: 'center', width: "20%" },
|
|
|
|
|
{ title: '专家人数', field: 'person_count', align: 'center', width: "10%" },
|
|
|
|
|
{ title: '状态', field: 'status_name', align: 'center', width: "20%" },
|
|
|
|
|
{ title: '操作', toolbar: '#table-bar', align: 'center', width: "20%" }
|
|
|
|
|
]],
|
|
|
|
@ -97,6 +98,9 @@
|
|
|
|
|
} else {
|
|
|
|
|
res.data[i].status_name = '已抽取';
|
|
|
|
|
}
|
|
|
|
|
if (res.data[i].person_count === 0) {
|
|
|
|
|
res.data[i].person_count = '--';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|