content.config.ts 1.1 KB

1234567891011121314151617181920212223242526
  1. const contentConfig = {
  2. pageName: 'contactPerson',
  3. header: {
  4. title: '行内联络员',
  5. },
  6. pageListParams: {
  7. type: 'industry',
  8. },
  9. propsList: [
  10. { type: 'index', label: '序号' },
  11. { type: 'normal', label: '单位名称', sortable: true, prop: 'contactDeptName' },
  12. { type: 'normal', label: '所属部门', sortable: true, prop: 'relName', width: 140 },
  13. { type: 'normal', label: '职务', prop: 'dutyName', sortable: true, width: 140 },
  14. { type: 'normal', label: '联络人姓名', prop: 'userName', width: 140 },
  15. { type: 'normal', label: '联系方式', prop: 'mobilePhone', width: 140 },
  16. { type: 'normal', label: '固定电话', prop: 'telephone', width: 140 },
  17. { type: 'normal', label: '短信接收人', prop: 'msgReceiver', width: 140 },
  18. { type: 'normal', label: '传真号', prop: 'faxNum', width: 140 },
  19. { type: 'normal', label: '微信号', prop: 'wx', width: 140 },
  20. { type: 'normal', label: '电子邮箱', prop: 'email', width: 140 },
  21. { type: 'normal', label: '通讯录状态', prop: 'status', width: 180 },
  22. { type: 'handler', label: '操作', slotName: 'operate', width: 180, fixed: 'right' },
  23. ],
  24. };
  25. export default contentConfig;