Przeglądaj źródła

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

Administrator 4 lat temu
rodzic
commit
2b206799db
1 zmienionych plików z 1 dodań i 0 usunięć
  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;
 }