Explorar el Código

错误 #96613 现货合同,点价期、交收期未填时显示错误

Administrator hace 4 años
padre
commit
2b206799db
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/common/methods/format/index.ts

+ 1 - 0
src/common/methods/format/index.ts

@@ -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;
 }