elementUI,設置日期,只能選擇今天和今天以後的, :picker-options="pickerOptions"

1. html 加 :picker-options="pickerOptions"
<el-date-picker
  v-model="shop.receive_time[0]"
  type="date"
  size="small"
  format="yyyy-MM-dd"
  value-format="yyyy-MM-dd"
  :picker-options="pickerOptions"
  @change="startTime(shop.seller_id, shop.receive_time)"
  placeholder="選擇交貨開始日期">
</el-date-picker>
2. data里加
pickerOptions: { // 限制收貨時間不讓選擇今天以前的
  disabledDate(time) {
    return time.getTime() < Date.now() - 24 * 60 * 60 * 1000
  }
}
 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章