管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-26 3f7ec892d68f71e996489d14d9918dc332281b1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
export const TimeDataUnit = {
    DD: '天',
    HH: '时',
    mm: '分',
    ss: '秒',
    SSS: '毫秒',
};
const SECOND = 1000;
const MINUTE = 60 * SECOND;
const HOUR = 60 * MINUTE;
const DAY = 24 * HOUR;
export const parseTimeData = function (time) {
    const days = Math.floor(time / DAY);
    const hours = Math.floor((time % DAY) / HOUR);
    const minutes = Math.floor((time % HOUR) / MINUTE);
    const seconds = Math.floor((time % MINUTE) / SECOND);
    const milliseconds = Math.floor(time % SECOND);
    return {
        DD: days,
        HH: hours,
        mm: minutes,
        ss: seconds,
        SSS: milliseconds,
    };
};
export const isSameSecond = function (time1, time2) {
    return Math.floor(time1 / 1000) === Math.floor(time2 / 1000);
};
export const parseFormat = function (time, format) {
    const obj = {
        'D+': Math.floor(time / 86400000),
        'H+': Math.floor((time % 86400000) / 3600000),
        'm+': Math.floor((time % 3600000) / 60000),
        's+': Math.floor((time % 60000) / 1000),
        'S+': Math.floor(time % 1000),
    };
    const timeList = [];
    let timeText = format;
    Object.keys(obj).forEach((prop) => {
        if (new RegExp(`(${prop})`).test(timeText)) {
            timeText = timeText.replace(RegExp.$1, (match, offset, source) => {
                const v = `${obj[prop]}`;
                let digit = v;
                if (match.length > 1) {
                    digit = (match.replace(new RegExp(match[0], 'g'), '0') + v).substr(v.length);
                }
                const unit = source.substr(offset + match.length);
                const last = timeList[timeList.length - 1];
                if (last) {
                    const index = last.unit.indexOf(match);
                    if (index !== -1) {
                        last.unit = last.unit.substr(0, index);
                    }
                }
                timeList.push({ digit, unit, match });
                return digit;
            });
        }
    });
    return { timeText, timeList };
};