Rap 原分销系统代码Web
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

46 Zeilen
902B

  1. <script>
  2. import { DatePicker, DatePickerOptions } from 'element-ui'
  3. import { calendarShortcuts } from '@/utils/shortcuts'
  4. export default {
  5. name: 'DateRangePicker',
  6. mixins: [DatePicker],
  7. props: {
  8. type: {
  9. type: String,
  10. default: 'daterange'
  11. },
  12. valueFormat: {
  13. type: String,
  14. default: 'yyyy-MM-dd HH:mm:ss'
  15. },
  16. defaultTime: {
  17. type: Array,
  18. default: _ => ['00:00:00', '23:59:59']
  19. },
  20. pickerOptions: {
  21. type: DatePickerOptions,
  22. default: _ => {
  23. return { shortcuts: calendarShortcuts, firstDayOfWeek: 1 }
  24. }
  25. },
  26. size: {
  27. type: String,
  28. default: 'small'
  29. },
  30. rangeSeparator: {
  31. type: String,
  32. default: ':'
  33. },
  34. startPlaceholder: {
  35. type: String,
  36. default: '开始日期'
  37. },
  38. endPlaceholder: {
  39. type: String,
  40. default: '结束日期'
  41. }
  42. }
  43. }
  44. </script>