zoukankan      html  css  js  c++  java
  • 计算公司下班时间(娱乐)

    class endTime{
        constructor(){
            Date.prototype.format = function (fmt) {
                var o = {
                    "M+": this.getMonth() + 1,                 //月份 
                    "d+": this.getDate(),                    //日 
                    "h+": this.getHours(),                   //小时 
                    "m+": this.getMinutes(),                 //分 
                    "s+": this.getSeconds(),                 //秒 
                    "q+": Math.floor((this.getMonth() + 3) / 3), //季度 
                    "S": this.getMilliseconds()             //毫秒 
                };
                if (/(y+)/.test(fmt)) {
                    fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
                }
                for (var k in o) {
                    if (new RegExp("(" + k + ")").test(fmt)) {
                        fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
                    }
                }
                return fmt;
            }
        }
        countTime(getToTime, needTime) {
            let getToTimes
            if (new Date(getToTime) == 'Invalid Date'){
                getToTimes = new Date(new Date().format('yyyy/MM/dd') + ' ' + getToTime).getTime()
            } else {
                getToTimes = new Date(getToTime).getTime()
            }
            let needTimes = needTime == undefined ? 8.5 * 60 * 60 * 1000 : needTime * 60 * 60 * 1000 //默认上班时间8.5个小时 可以自行传入参数
            let allTime = getToTimes + needTimes//所需时间
            let mustMinTime = new Date(new Date().format('yyyy/MM/dd') + ' 17:00:00').getTime()//必须在规定时间内
            let mustMaxTime = new Date(new Date().format('yyyy/MM/dd') + ' 18:00:00').getTime()//必须在规定时间内
            let toCardTime = new Date(getToTimes).format("yyyy/MM/dd hh:mm:ss")//打卡时间
            let endTime = new Date(allTime).format("yyyy/MM/dd hh:mm:ss")//结束时间
            if (allTime <= mustMinTime){
                console.log('打卡时间:', toCardTime, '下班时间:', new Date().format('yyyy/MM/dd') + ' 17:00:00')
                console.log('%c我去,你来的真早!!!', 'color: green;')
            } else if (allTime > mustMaxTime){
                console.log('打卡时间:', toCardTime, '下班时间:', endTime)
                console.log('%c哦哦哦, 你迟到了!!!', 'color: red;')
            } else {
                console.log('打卡时间:', toCardTime, '下班时间:', endTime)
            }
        }
    }
    

    使用方法: 创建示例对象time 找到countTime方法 传入打卡时间即可

    let time = new endTime()
    time.countTime('8:30')
    time.countTime('9:00')
    time.countTime('9:31')
    
  • 相关阅读:
    构建可视化基础——集成SVG
    构建可视化基础——使用HTML Canvas
    【目录】LeetCode Java实现
    【目录】数据结构与算法
    【目录】《剑指Offer》Java实现
    【LeetCode】102. Binary Tree Level Order Traversal
    【LeetCode】145. Binary Tree Postorder Traversal
    【LeetCode】144. Binary Tree Preorder Traversal
    【LeetCode】230. Kth Smallest Element in a BST
    【LeetCode】94. Binary Tree Inorder Traversal
  • 原文地址:https://www.cnblogs.com/yzyh/p/10329070.html
Copyright © 2011-2022 走看看