You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 line
879 B

  1. /*
  2. * @Author : uview-plus
  3. * @Description : calendarStrip default props
  4. * @version : 3.0
  5. * @Date : 2026-05-29 14:40:00
  6. */
  7. import { t } from '../../libs/i18n'
  8. export default {
  9. calendarStrip: {
  10. modelValue: null,
  11. minDate: 0,
  12. maxDate: 0,
  13. color: '#3c9cff',
  14. weekText: [
  15. t('up.week.one'),
  16. t('up.week.two'),
  17. t('up.week.three'),
  18. t('up.week.four'),
  19. t('up.week.five'),
  20. t('up.week.six'),
  21. t('up.week.seven')
  22. ],
  23. fullCalendar: true,
  24. fullCalendarProps: {},
  25. fullMonthNum: 24,
  26. pullDownThreshold: 40,
  27. collapseAfterSelect: true,
  28. readonly: false,
  29. showToday: true,
  30. monthFormat: '',
  31. expandHint: '下拉展开月历',
  32. collapseHint: '上拉收起月历'
  33. }
  34. }