content.config.ts 997 B

12345678910111213141516171819202122
  1. const contentConfig = {
  2. pageName: 'released',
  3. header: {
  4. title: '',
  5. },
  6. propsList: [
  7. { type: 'index', label: '序号', fixed: true },
  8. { type: 'normal', label: '违法事件编号', prop: 'violationNumber' },
  9. { type: 'normal', label: '发布单位', prop: 'releasedUnit', width: 140 },
  10. { type: 'normal', label: '船舶名称', prop: 'vesselName', width: 140 },
  11. { type: 'normal', label: '通报事项类别', prop: 'TODO', width: 120 },
  12. { type: 'normal', label: '通报事项', prop: 'TODO' },
  13. { type: 'custom', label: '接收单位', prop: 'TODO', width: 220 },
  14. { type: 'custom', label: '通报状整体状态', prop: 'TODO', width: 220 },
  15. { type: 'custom', label: '是否需要反馈', prop: 'TODO', width: 220 },
  16. { type: 'normal', label: '发布日期', prop: 'releasedDate', width: 140 },
  17. { type: 'normal', label: '发布人员', prop: 'TODO', width: 140 },
  18. { type: 'handler', label: '操作', slotName: 'operate', width: 180},
  19. ],
  20. };
  21. export default contentConfig;