| | |
| | | minWidth: 250, |
| | | showOverflowTooltip: true, |
| | | }, |
| | | { label: '反馈类型', prop: 'typeStr', minWidth: 120 }, |
| | | { label: '反馈时间', prop: 'createTime', minWidth: 180 }, |
| | | { |
| | | label: '回复内容', |
| | |
| | | type: 'input', |
| | | el: { type: 'textarea' }, |
| | | }, |
| | | { label: '反馈类型:', id: 'typeStr', type: 'input' }, |
| | | { |
| | | label: '图片:', |
| | | id: 'pictures', |
| | | type: 'bus-upload', |
| | | forceDisabled: true, |
| | | el: { |
| | | listType: 'picture-card', |
| | | }, |
| | | inputFormat: (row) => { |
| | | if ('pictures' in row) { |
| | | try { |
| | | return row.pictures |
| | | ? JSON.parse(row.pictures).map((i) => ({ url: i })) |
| | | : [] |
| | | } catch (e) {} |
| | | } |
| | | }, |
| | | }, |
| | | { label: '反馈时间:', id: 'createTime', type: 'input' }, |
| | | { |
| | | label: '回复内容:', |