前端-VUE如何给DateTimePicker 日期时间选择器初始化最近7天的时间

首先在模板当中代码如下:

 

          v-model="timeSeek"

          type="datetimerange"

          range-separator="至"

          start-placeholder="开始日期"

          end-placeholder="结束日期"

          value-format="yyyy-MM-dd HH:mm:ss"

          @input="handleSerch"

          :clearable="false"

        />

在created()里为时间赋值

const end = new Date().getTime()

const start = new Date().getTime() - 3600 * 1000 * 24 * 7

his.timeSeek = [this.formatDate(start), this.formatDate(end)]

你可能感兴趣的:(vue.js,前端,javascript)