1234567891011121314151617181920212223242526 |
- const contentConfig = {
- pageName: 'released',
- header: {
- title: '',
- },
- propsList: [
- { type: 'index', label: '序号', fixed: true },
- { type: 'normal', label: '船舶识别号', prop: 'violationNumber', width: 140 },
- { type: 'normal', label: '中文船名', prop: 'releasedUnit', width: 140 },
- { type: 'normal', label: '船籍港', prop: 'vesselName', width: 140 },
- { type: 'custom', label: '初查/复查', prop: 'TODO', width: 120 },
- { type: 'normal', label: '检查日期', prop: 'TODO' },
- { type: 'normal', label: '检查岗', prop: 'TODO', width: 220 },
- { type: 'normal', label: '检查机构', prop: 'TODO', width: 220 },
- { type: 'normal', label: '检查院', prop: 'TODO', width: 220 },
- { type: 'normal', label: '缺陷数量', prop: 'releasedDate', width: 140 },
- { type: 'custom', label: '是否被滞留', prop: 'TODO', width: 140 },
- { type: 'normal', label: '违法信息', prop: 'releasedDate', width: 140 },
- { type: 'normal', label: '处理意见', prop: 'releasedDate', width: 140 },
- { type: 'normal', label: '发布时间', prop: 'releasedDate', width: 140 },
- { type: 'custom', label: '是否已发布', prop: 'TODO', width: 140 },
- { type: 'handler', label: '操作', slotName: 'operate', width: 180},
- ],
- };
- export default contentConfig;
|