Browse Source

修复时间格式不支持ios问题

RuoYi 5 years ago
parent
commit
f9799cd444
1 changed files with 2 additions and 0 deletions
  1. 2 0
      ruoyi-ui/src/utils/ruoyi.js

+ 2 - 0
ruoyi-ui/src/utils/ruoyi.js

@@ -17,6 +17,8 @@ export function parseTime(time, pattern) {
 	} else {
 		if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
 			time = parseInt(time)
+		} else if (typeof time === 'string') {
+			time = time.replace(new RegExp(/-/gm), '/');
 		}
 		if ((typeof time === 'number') && (time.toString().length === 10)) {
 			time = time * 1000