| 12345678910111213141516171819202122232425 |
- const contentConfig = {
- pageName: 'ntlo',
- header: {
- title: '',
- },
- pageListParams: {
- industryType: '2',
- },
- propsList: [
- { type: 'index', label: '序号', fixed: true },
- { type: 'normal', label: '单位名称', sortable: true, prop: 'unitNameStr', width: 150 },
- { type: 'normal', label: '所属部门', sortable: true, prop: 'belongsDeptStr', width: 140 },
- { type: 'normal', label: '职务', prop: 'position', sortable: true, width: 140 },
- { type: 'normal', label: '联络人姓名', prop: 'contactName', width: 140 },
- { type: 'normal', label: '联系方式', prop: 'contactNumber', width: 140 },
- { type: 'normal', label: '固定电话', prop: 'fixedTelephone', width: 140 },
- { type: 'normal', label: '传真号', prop: 'faxNumber', width: 140 },
- { type: 'normal', label: '微信号', prop: 'wxNumber', width: 140 },
- { type: 'normal', label: '电子邮箱', prop: 'email', width: 140 },
- { type: 'custom', label: '通讯录状态', slotName: 'abStatus', prop: 'abStatus', width: 180 },
- { type: 'handler', label: '操作', slotName: 'operate', width: 180, fixed: 'right' },
- ],
- };
- export default contentConfig;
|