摘要: /* **手机格式验证 */ const checkMobile = (mobile) ⇒ { let reg = /^1[3456789]\d{9}$/; return reg.test(mobile); } //获取当前日期 const formatData = (date) ⇒ { const 阅读全文
posted @ 2022-03-30 16:28 7c89 阅读(20) 评论(0) 推荐(0) 编辑