vue获取当前系统时间

发布时间:2024年01月10日

1.获取当前系统时间时分秒

// 标准时间格式转化为年月日时分秒
export function ssDateTimeFn(timestamp) {
  if (!timestamp) {
    return timestamp
  }
  // timestamp是整数,否则要parseInt转换,不会出现少个0的情况
  const time = new Date(timestamp)
  const year = time.getFullYear()
  const month = time.getMonth() + 1
  const date = time.getDate()
  const hours = time.getHours()
  const minutes = time.getMinutes()
  const seconds = time.getSeconds()
  return year + '-' + add0(month) + '-' + add0(date) + ' ' + add0(hours) + ':' + add0(minutes) + ':' + add0(seconds)
}
import {
  ssDateTimeFn
} from '@/utils/commonss' // 公共事件引入使用
ssDateTimeFn(new Date())

2.// 标准时间格式转化为年月日时分

// 标准时间格式转化为年月日时分
function mmDateTimeFn(timestamp) {
  if (!timestamp) {
    return timestamp
  }
  // timestamp是整数,否则要parseInt转换,不会出现少个0的情况
  const time = new Date(timestamp)
  const year = time.getFullYear()
  const month = time.getMonth() + 1
  const date = time.getDate()
  const hours = time.getHours()
  const minutes = time.getMinutes()
  // const seconds = time.getSeconds()
  return year + '-' + add0(month) + '-' + add0(date) + ' ' + add0(hours) + ':' + add0(minutes)
}

3.年月日不带时分

// 年月日 不带时分
function dateFormat(timestamp) {
  if (!timestamp) {
    return timestamp
  }
  // timestamp是整数,否则要parseInt转换,不会出现少个0的情况
  const time = new Date(timestamp)
  const year = time.getFullYear()
  const month = time.getMonth() + 1
  const date = time.getDate()
  return year + '-' + add0(month) + '-' + add0(date)
}

文章来源:https://blog.csdn.net/weixin_39089928/article/details/135499083
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。