!2556 修复:历史记录排序解析错误问题

pull/2557/MERGE
林三 9 months ago committed by ChenX
parent 318c4b4829
commit b45ad013ed

@ -85,7 +85,8 @@ async function FetchFile1(url: string): Promise<CADFiler>
export function ParseTime(f1: string, currentMonth: number): number
{
let time = f1.split("-");
time.shift();
//取数组后5位时间数值
time = time.slice(-5);
let sum = 0;
//出现比当前月份大的 说明是跨年 (这里要确保不存在6个月前的记录)

Loading…
Cancel
Save