"src/main/java/com/kingyu/flappybird/app/App.java" did not exist on "d7b64a56e687ca6e3a3b295342fe07f0fdcb87a2"
Commit f9799cd4 authored by RuoYi's avatar RuoYi
Browse files

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

parent 6b147281
...@@ -17,6 +17,8 @@ export function parseTime(time, pattern) { ...@@ -17,6 +17,8 @@ export function parseTime(time, pattern) {
} else { } else {
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) { if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
time = parseInt(time) time = parseInt(time)
} else if (typeof time === 'string') {
time = time.replace(new RegExp(/-/gm), '/');
} }
if ((typeof time === 'number') && (time.toString().length === 10)) { if ((typeof time === 'number') && (time.toString().length === 10)) {
time = time * 1000 time = time * 1000
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment