<el-table-column show-overflow-tooltip label="专业类别" align="center" prop="specialtyCategory">
<template slot-scope="scope">
{{ showDictValue(scope.row.specialtyCategory, dict.type.specialty_gategory) }}
</template>
</el-table-column>
showDictValue(data, datas) {
const dictItem = datas.find(item => data === Number(item.value));
return dictItem ? dictItem.label : '';
},
?