1234567891011121314151617181920212223242526 |
- const contentConfig = {
- pageName: 'contactPerson',
- header: {
- title: '行内联络员',
- },
- pageListParams: {
- type: 'industry',
- },
- propsList: [
- { type: 'index', label: '序号' },
- { type: 'normal', label: '单位名称', sortable: true, prop: 'contactDeptName' },
- { type: 'normal', label: '所属部门', sortable: true, prop: 'relName', width: 140 },
- { type: 'normal', label: '职务', prop: 'dutyName', sortable: true, width: 140 },
- { type: 'normal', label: '联络人姓名', prop: 'userName', width: 140 },
- { type: 'normal', label: '联系方式', prop: 'mobilePhone', width: 140 },
- { type: 'normal', label: '固定电话', prop: 'telephone', width: 140 },
- { type: 'normal', label: '短信接收人', prop: 'msgReceiver', width: 140 },
- { type: 'normal', label: '传真号', prop: 'faxNum', width: 140 },
- { type: 'normal', label: '微信号', prop: 'wx', width: 140 },
- { type: 'normal', label: '电子邮箱', prop: 'email', width: 140 },
- { type: 'normal', label: '通讯录状态', prop: 'status', width: 180 },
- { type: 'handler', label: '操作', slotName: 'operate', width: 180, fixed: 'right' },
- ],
- };
- export default contentConfig;
|