12345678910111213141516171819202122 |
- const contentConfig = {
- pageName: 'released',
- header: {
- title: '',
- },
- propsList: [
- { type: 'index', label: '序号', fixed: true },
- { type: 'normal', label: '违法事件编号', prop: 'violationNumber' },
- { type: 'normal', label: '发布单位', prop: 'releasedUnit', width: 140 },
- { type: 'normal', label: '船舶名称', prop: 'vesselName', width: 140 },
- { type: 'normal', label: '通报事项类别', prop: 'TODO', width: 120 },
- { type: 'normal', label: '通报事项', prop: 'TODO' },
- { type: 'custom', label: '接收单位', prop: 'TODO', width: 220 },
- { type: 'custom', label: '通报状整体状态', prop: 'TODO', width: 220 },
- { type: 'custom', label: '是否需要反馈', prop: 'TODO', width: 220 },
- { type: 'normal', label: '发布日期', prop: 'releasedDate', width: 140 },
- { type: 'normal', label: '发布人员', prop: 'TODO', width: 140 },
- { type: 'handler', label: '操作', slotName: 'operate', width: 180},
- ],
- };
- export default contentConfig;
|