摘要:
1.触发打印页面的方法 const handlePrint = () => { const el = document.getElementById('printElement'); //获取节点 const iframe = document.createElement('IFRAME'); // 阅读全文
摘要:
1. 只能选择当月或上一个月 const disabledDate = current => { return current && (current > moment().endOf('day') || current < moment().subtract(1, "months")); }; < 阅读全文