自定义列不需要prop

This commit is contained in:
jiutianzhiyu 2021-03-30 09:41:33 +08:00
parent 7421fd70bb
commit 180027be76

View File

@ -18,12 +18,16 @@
<el-table-column label="手机号" sortable="" prop="mobile" />
<el-table-column label="聘用形式" sortable="" prop="formOfEmployment" :formatter="formatEmployment" />
<el-table-column label="部门" sortable="" prop="departmentName" />
<el-table-column label="入职时间" sortable="" prop="timeOfEntry">
<el-table-column label="入职时间" sortable="">
<template slot-scope="{row}">
{{ row.timeOfEntry | formatDate }}
</template>
</el-table-column>
<el-table-column label="账户状态" sortable="" prop="enableState" />
<el-table-column label="账户状态" sortable="">
<template slot-scope="{row}">
<el-switch :value="row.enableState === 1" />
</template>
</el-table-column>
<el-table-column label="操作" fixed="right" width="280">
<template>
<el-button type="text" size="small">查看</el-button>