2022年1月10日
摘要: #1、方法 const formatDate = (date, format = "YYYY-MM-DD HH:mm:ss") => { if (!date) { return ""; } const d = new Date(date); // 年 if (/YYYY/.test(format)) 阅读全文
posted @ 2022-01-10 11:14 丶凉雨拾忆 阅读(46) 评论(0) 推荐(0) 编辑
摘要: #1、方法 const formatThousand = data => { let type = Object.prototype.toString.call(data); if (type "[object Number]") { return data .toString() .replace 阅读全文
posted @ 2022-01-10 11:09 丶凉雨拾忆 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #1、方法 <!-- * @Descripttion: 类型判断 * @version: 0.0.1 * @Author: PengShuai * @Date: 2022年04月29日11:21:14 * @LastEditors: PengShuai * @LastEditTime: 2022年0 阅读全文
posted @ 2022-01-10 10:59 丶凉雨拾忆 阅读(3123) 评论(2) 推荐(2) 编辑