| 1234567891011121314151617181920212223 |
-
- export const cols = <ColType.type[]>[
- {
- title: '部门名称',
- dataIndex: 'name'
- }, {
- title: '联系人',
- dataIndex: 'contact'
- }, {
- title: '联系固话',
- dataIndex: 'phone'
- }, {
- title: '联系手机',
- dataIndex: 'mobile'
- }, {
- title: '电子邮件',
- dataIndex: 'email'
- },{
- title: '操作',
- dataIndex: 'operation',
- slots: { customRender: 'operation' },
- },
- ]
|