| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- const formatTime = (date, fmt) => {
- if (!date) {
- return fmt;
- }
- var o = {
- "M+": date.getMonth() + 1, //月份
- "d+": date.getDate(), //日
- "H+": date.getHours(), //小时
- "m+": date.getMinutes(), //分
- "s+": date.getSeconds(), //秒
- "q+": Math.floor((date.getMonth() + 3) / 3), //季度
- "S": date.getMilliseconds() //毫秒
- };
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));
- for (var k in o)
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
- return fmt;
- }
- const formatNumber = n => {
- n = n.toString()
- return n[1] ? n : '0' + n
- }
- //将年月日数组转成时间戳
- const argusToTimestamp = arr => {
- var lenth = arr.length;
- if (lenth < 3) {
- for (var i = 0; i < 3 - lenth; i++) {
- arr.push("01")
- }
- }
- return Date.parse(new Date(arr.join("/")))
- }
- // 时间戳转成年月
- function formateym(dates, split = ".") {
- var date = new Date(+dates)
- var year = date.getFullYear()
- var month = date.getMonth() + 1
- var day = date.getDate()
- return date.getFullYear() + split + formatNumber(date.getMonth() + 1)
- }
- // 时间转成年月
- function formateYM(date, status = true) {
- const _date = date.replace(/-/g, '/')
- var time = new Date(date)
- var year = time.getFullYear()
- var month = time.getMonth() + 1
- var day = time.getDate()
- if (status) {
- return `${year}年${month}月`
- } else {
- return `${year}年${month}月${day}`
- }
- }
- // 时间转成年月
- function formatetime(date, str, status = true) {
- const _date = date.replace ? date.replace(/-/g, '/') : date;
- var time = new Date(_date)
- var year = time.getFullYear()
- var month = time.getMonth() + 1
- var day = time.getDate()
- if (status) {
- return `${year}${str}${month}`
- } else {
- return `${year}${str}${month}${str}${day}`
- }
- }
- function testPhone(data) {
- const phone_zz = /^1[3-9]\d{9}$/;
- return phone_zz.test(data)
- }
- module.exports = {
- formatTime: formatTime,
- formatNumber,
- formateym,
- argusToTimestamp,
- formateYM,
- formatetime,
- testPhone
- }
|