@@ -71,6 +71,7 @@ export function formatTime(value: string | Date | Moment, type: TIME) {
} else if (type === 'm') {
'YYYY-MM-DD HH:mm'
}
+ if(value === '--') return '';
if (value) return moment(value).format(str);
return value;