content.config.ts 1.3 KB

1234567891011121314151617181920212223242526
  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', width: 140 },
  9. { type: 'normal', label: '中文船名', prop: 'releasedUnit', width: 140 },
  10. { type: 'normal', label: '船籍港', prop: 'vesselName', width: 140 },
  11. { type: 'custom', label: '初查/复查', prop: 'TODO', width: 120 },
  12. { type: 'normal', label: '检查日期', prop: 'TODO' },
  13. { type: 'normal', label: '检查岗', prop: 'TODO', width: 220 },
  14. { type: 'normal', label: '检查机构', prop: 'TODO', width: 220 },
  15. { type: 'normal', label: '检查院', prop: 'TODO', width: 220 },
  16. { type: 'normal', label: '缺陷数量', prop: 'releasedDate', width: 140 },
  17. { type: 'custom', label: '是否被滞留', prop: 'TODO', width: 140 },
  18. { type: 'normal', label: '违法信息', prop: 'releasedDate', width: 140 },
  19. { type: 'normal', label: '处理意见', prop: 'releasedDate', width: 140 },
  20. { type: 'normal', label: '发布时间', prop: 'releasedDate', width: 140 },
  21. { type: 'custom', label: '是否已发布', prop: 'TODO', width: 140 },
  22. { type: 'handler', label: '操作', slotName: 'operate', width: 180},
  23. ],
  24. };
  25. export default contentConfig;