招聘网页
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

columns.ts 390B

2 years ago
1234567891011121314151617181920212223
  1. export const cols = <ColType.type[]>[
  2. {
  3. title: '部门名称',
  4. dataIndex: 'name'
  5. }, {
  6. title: '联系人',
  7. dataIndex: 'contact'
  8. }, {
  9. title: '联系固话',
  10. dataIndex: 'phone'
  11. }, {
  12. title: '联系手机',
  13. dataIndex: 'mobile'
  14. }, {
  15. title: '电子邮件',
  16. dataIndex: 'email'
  17. },{
  18. title: '操作',
  19. dataIndex: 'operation',
  20. slots: { customRender: 'operation' },
  21. },
  22. ]