iview日期控件 双向绑定日期

import { getDate, getTime } from '@/libs/util

libs/util

/**
 * @description 日期时间转换时间戳
 */
export const getTime = dt => {
  return dt ? new Date(dt).getTime() : new Date().getTime()
}

/**
 * @description 时间戳转换日期时间
 */
export const getDate = (format, dt) => {
  dt = dt ? new Date(dt) : new Date()
  const t = {
    'M+': dt.getMonth() + 1, // 月份
    'd+': dt.getDate(), // 日
    'H+': dt.getHours(), // 小时
    'm+': dt.getMinutes(), // 分
    's+': dt.getSeconds(), // 秒
    'S': dt.getMilliseconds() // 毫秒
  }
  if (/(y+)/.test(format)) {
    format = format.replace(RegExp.$1, (dt.getFullYear() + '').substr(4 - RegExp.$1.length))
  }
  for (let k in t) {
    if (new RegExp('(' + k + ')').test(format)) { format = format.replace(RegExp.$1, (RegExp.$1.length === 1) ? (t[k]) : (('00' + t[k]).substr(('' + t[k]).length))) }
  }
  return format
}

data里数据

  data () {
    return {
    pubTime: getDate('yyyy-MM-dd'),
    options: {
        disabledDate (date) {
          return date && date.valueOf() < Date.now() - 86400000
        }
      },
    }
  }

页面

 <DatePicker
            transfer
            :options="options"
            :value="pubTime"
            style="width: 200px"
            type="date"
            placeholder="点击选择时间"
            format="yyyy-MM-dd"
            @on-change="pubTime = $event"
          />
上一篇:元是什么 宇宙又是什么


下一篇:调用百度报Cannot read property ‘lng‘ of null错误