返回介绍

inlineCalendar 日历组件

发布于 2020-05-05 22:51:20 字数 5983 浏览 1611 评论 0 收藏 0

import { Inlinecalendar } from 'feui';
components: {
  [Inlinecalendar.name]: Inlinecalendar
}
data () {
  return {
    show: true,
    value: ['2018-11-10','2018-11-11','2018-11-12'],
    listValue: '',
    range: false,
    showLastMonth: true,
    showNextMonth: true,
    highlightWeekend: false,
    return6Rows: true,
    hideHeader: false,
    hideWeekList: false,
    replaceTextList: {},
    replace: false,
    changeWeeksList: false,
    weeksList: [],
    useCustomFn: false,
    buildSlotFn: () => '',
    disablePast: false,
    disableFuture: false,
    disableWeekend: false,
    disableDateFunction (date) {
      if (date.formatedDate === '2017-10-16') {
        return true
      }
    }
  }
},

代码演示

<fe-inlinecalendar
  ref="calendar"
  @on-change="onChange"
  @on-view-change="onViewChange"
  class="inline-calendar-demo"
  :show.sync="show"
  v-model="value"
  start-date="2016-04-21"
  end-date="2018-11-11"
  :range="range"
  :show-last-month="showLastMonth"
  :show-next-month="showNextMonth"
  :highlight-weekend="highlightWeekend"
  :return-six-rows="return6Rows"
  :hide-header="hideHeader"
  :hide-week-list="hideWeekList"
  :replace-text-list="replaceTextList"
  :weeks-list="weeksList"
  :render-function="buildSlotFn"
  :disable-past="disablePast"
  :disable-future="disableFuture"
  :disable-weekend="disableWeekend"
  :disable-date-function="disableDateFunction">
</fe-inlinecalendar>

API

参数说明类型默认值可选值
value当前选中日期,使用v-model绑定。值为字符串(包括空字符串)
时表示单选日期,为数组(包括空数组)时表示多选。
String,Array--
start-date起始日期,格式为 YYYY-MM-ddString--
end-date结束日期,格式为 YYYY-MM-ddString--
render-month指定渲染日期,如 [2018, 1]Array--
show-last-month是否显示上个月的日期Booleanturefalse,true
show-next-month是否显示下个月的日期Booleanturefalse,true
highlight-weekend是否高亮周末Booleanfalsefalse,true
return-six-rows是否总是渲染6行日期Booleanturefalse,true
hide-header是否隐藏日历头部Booleanfalsefalse,true
hide-week-list是否隐藏星期列表Booleanfalsefalse,true
replace-text-list替换列表,可以将默认的日期换成文字,
比如今天的日期替换成今,{‘TODAY’:’今’}
Object--
weeks-list星期列表,从周日开始Array['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']-
render-function用于为特定日期添加额外的html内容,
参数为(行index,列index,日期详细属性)
Function--
render-on-value-change当日期变化时是否重新渲染日历,
如果是渲染了多个日历的话需要设为false
Booleanturefalse,true
disable-past禁止选择过去的日期,该选项可以与 start-date 同时使用Booleanfalsefalse,true
disable-future禁止选择未来的日期,该选项可以 end-date 同时使用Booleanfalsefalse,true
marks自定义日期标记Array--
disable-weekend是否禁用周六日Booleanfalsefalse,true
disable-date-function自定义标记特定日期是否应该禁用,返回 true 表示禁用,
false 表示不禁用,不返回表示和原有逻辑一致(这样不影响
和 disable-weekend 等禁用属性同时使用)
Function--
gutter间隙像素大小(px)Number--
-----

Slots

Slot名说明备注
each-day用以自定义每一天的显示渲染,推荐使用该 slot 来替代 render-function-
---

Events

事件名参数说明备注
on-change-值变化时触发-
on-select-single-datecurrentValue单选模式下选中日期时触发-
----

Methods

方法名参数说明备注
getDates-获取当前日期列表-
switchViewToToday-渲染当天所在月份-
switchViewToMonthyear, month渲染特定年月日期-
switchViewToCurrentValue-渲染当前值所在月份-
----

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文