选煤厂生产管理平台前端代码
dongyukun
2024-12-10 5cc1d92af645c2f8f4f6d1d3777283b70df78ccd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
 * Independent time operation tool to facilitate subsequent switch to dayjs
 */
// TODO 芋艿:【锁屏】可能后面删除掉
import dayjs from 'dayjs'
 
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'
const DATE_FORMAT = 'YYYY-MM-DD'
 
export function formatToDateTime(date?: dayjs.ConfigType, format = DATE_TIME_FORMAT): string {
  return dayjs(date).format(format)
}
 
export function formatToDate(date?: dayjs.ConfigType, format = DATE_FORMAT): string {
  return dayjs(date).format(format)
}
 
export const dateUtil = dayjs
export function getYMDHMS (timestamp: number | string | Date) {
  const time = new Date(timestamp)
  const year = time.getFullYear()
  let month = time.getMonth() + 1 + ''
  let date = time.getDate() + ''
  let hours = time.getHours() + ''
  let minute = time.getMinutes() + ''
  let second = time.getSeconds() + ''
 
  if (month < 10) { month = '0' + month }
  if (date < 10) { date = '0' + date }
  if (hours < 10) { hours = '0' + hours }
  if (minute < 10) { minute = '0' + minute }
  if (second < 10) { second = '0' + second }
  return year + '-' + month + '-' + date + ' ' + hours + ':' + minute + ':' + second
}
export function getYMDHM0 (timestamp: number | string | Date) {
  const time = new Date(timestamp)
  const year = time.getFullYear()
  let month = time.getMonth() + 1 + ''
  let date = time.getDate() + ''
  let hours = time.getHours() + ''
  let minute = time.getMinutes() + ''
 
  if (month < 10) { month = '0' + month }
  if (date < 10) { date = '0' + date }
  if (hours < 10) { hours = '0' + hours }
  if (minute < 10) { minute = '0' + minute }
  return year + '-' + month + '-' + date + ' ' + hours + ':' + minute + ':' + '00'
}
export function getYMD (timestamp: number | string | Date) {
  const time = new Date(timestamp)
  const year = time.getFullYear()
  let month = time.getMonth() + 1 + ''
  let date = time.getDate() + ''
  let hours = time.getHours() + ''
  let minute = time.getMinutes() + ''
  let second = time.getSeconds() + ''
 
  if (month < 10) { month = '0' + month }
  if (date < 10) { date = '0' + date }
  if (hours < 10) { hours = '0' + hours }
  if (minute < 10) { minute = '0' + minute }
  if (second < 10) { second = '0' + second }
  return year + '-' + month + '-' + date
}
export function getYM (timestamp: number | string | Date) {
  const time = new Date(timestamp)
  const year = time.getFullYear()
  let month = time.getMonth() + 1 + ''
  let date = time.getDate() + ''
  let hours = time.getHours() + ''
  let minute = time.getMinutes() + ''
  let second = time.getSeconds() + ''
 
  if (month < 10) { month = '0' + month }
  if (date < 10) { date = '0' + date }
  if (hours < 10) { hours = '0' + hours }
  if (minute < 10) { minute = '0' + minute }
  if (second < 10) { second = '0' + second }
  return year + '-' + month
}