油批
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.8 KiB

2 years ago
export function parseTime(time) {
2 years ago
if (!time) {
return '--'
2 years ago
}
2 years ago
let date
if (typeof time === 'object') {
date = time
2 years ago
} else {
2 years ago
if (typeof time === 'string') {
2 years ago
if (/^[0-9]+$/.test(time)) {
2 years ago
time = parseInt(time)
2 years ago
} else {
2 years ago
time = time.replace(new RegExp(/-/gm), '/')
2 years ago
}
}
2 years ago
date = new Date(time)
2 years ago
}
const formatRes = {
y: date.getFullYear(),
M: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
m: date.getMinutes(),
s: date.getSeconds(),
2 years ago
week: ['日', '一', '二', '三', '四', '五', '六'][date.getDay()]
}
formatRes.M < 10 && (formatRes.M = '0' + formatRes.M)
formatRes.d < 10 && (formatRes.d = '0' + formatRes.d)
formatRes.h < 10 && (formatRes.h = '0' + formatRes.h)
formatRes.m < 10 && (formatRes.m = '0' + formatRes.m)
formatRes.s < 10 && (formatRes.s = '0' + formatRes.s)
return formatRes
2 years ago
}
2 years ago
// 防抖
2 years ago
export function debounce(fn, delay) {
2 years ago
let timer = null
2 years ago
return function () {
2 years ago
if (timer) clearTimeout(timer)
let _this = this
let _arguments = arguments
2 years ago
timer = setTimeout(function () {
2 years ago
fn.apply(_this, _arguments)
}, delay)
}
2 years ago
}
2 years ago
// 车牌校验
export function isLicensePlate(number) {
2 years ago
let instance = new RegExp(
2 years ago
'^([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[a-zA-Z](([DF]((?![IO])[a-zA-Z0-9](?![IO]))[0-9]{4})|([0-9]{5}[DF]))|[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1})$'
)
return instance.test(number)
2 years ago
}
2 years ago
export function cellStyle() {
2 years ago
return 'text-align:center'
2 years ago
}
2 years ago
2 years ago
// 类型判断
2 years ago
export function typeJudgment(object) {
2 years ago
let res = {}.__proto__.toString.call(object)
let type = /(?<= ).+(?=\])/.exec(res)
return type.length ? type[0] : ''
2 years ago
}