| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- function columns(vm) {
- const cols = [
- {
- title: '序号',
- key: 'rowIndex',
- width: 60,
- align: 'center',
- customRender: function(t, r, index) {
- return parseInt(index) + 1
- }
- },
- {
- title: '姓名',
- align: 'center',
- dataIndex: 'nickName',
- key: 'nickName'
- },
- {
- title: '部门',
- align: 'center',
- dataIndex: 'dept',
- scopedSlots: { customRender: 'dept' },
- key: 'dept'
- },
- {
- title: '职务',
- align: 'center',
- dataIndex: 'leader',
- scopedSlots: { customRender: 'leader' },
- key: 'leader'
- },
- {
- title: '手机号',
- align: 'center',
- dataIndex: 'phonenumber',
- key: 'phonenumber'
- },
- {
- title: '状态',
- align: 'center',
- dataIndex: 'status',
- scopedSlots: { customRender: 'status' },
- key: 'status'
- },
- {
- title: '操作',
- dataIndex: 'action',
- width: 350,
- align: 'center',
- slots: { title: 'actionName' },
- scopedSlots: { customRender: 'action' }
- }
- ]
- return cols
- }
- export default columns
|