elementui快捷时间

博客围绕日期时间选择器展开,涉及 elementui 组件,重点关注其中快捷时间的相关内容,在信息技术领域,这对于前端页面时间选择交互设计有一定意义。
private pickerOptions: any = {
    shortcuts: [
        {
            text: '最近1小时',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date();
                start.setTime(start.getTime() - 1000 * 60 * 60);
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '最近3小时',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date();
                start.setTime(start.getTime() - 1000 * 60 * 60 * 3);
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '最近6小时',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date();
                start.setTime(start.getTime() - 1000 * 60 * 60 * 6);
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '最近12小时',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date();
                start.setTime(start.getTime() - 1000 * 60 * 60 * 12);
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '最近24小时',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date();
                start.setTime(start.getTime() - 1000 * 60 * 60 * 24);
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '今天',
            onClick(picker: any) {
                const end = new Date();
                const start = new Date().setHours(0, 0, 0, 0);

                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '昨天',
            onClick(picker: any) {
                const start = new Date().setHours(0, 0, 0, 0) - 1000 * 60 * 60 * 24;
                const end = start + 1000 * 60 * 60 * 24 - 1000;
                picker.$emit('pick', [start, end]);
            },
        },
        {
            text: '前天',
            onClick(picker: any) {
                const start = new Date().setHours(0, 0, 0, 0) - 1000 * 60 * 60 * 24 * 2;
                const end = start + 1000 * 60 * 60 * 24 * 2 - 1000;
                picker.$emit('pick', [start, end]);
            },
        },
    ],
};
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值