摘要: 1.触发打印页面的方法 const handlePrint = () => { const el = document.getElementById('printElement'); //获取节点 const iframe = document.createElement('IFRAME'); // 阅读全文
posted @ 2022-06-28 17:42 天官赐福· 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1. 只能选择当月或上一个月 const disabledDate = current => { return current && (current > moment().endOf('day') || current < moment().subtract(1, "months")); }; < 阅读全文
posted @ 2022-06-28 14:38 天官赐福· 阅读(953) 评论(0) 推荐(0) 编辑
返回顶端