@@ -77,6 +77,10 @@ const formatTagText = (value, column) => {
return value || '-'
}
const formatCellValue = (value, column, row) => {
+ // note , 详情展示备注
+ if (column.type === 'note') {
+ return row.note
+ }
if (column.formatter) {
return column.formatter({ value, row })