Blame view

src/components/date-picker/panel/Date/date-panel-mixin.js 1.26 KB
ca8e830c   Sergio Crisostomo   move files to sub...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  
  import { oneOf } from '../../../../utils/assist';
  import {initTimeDate } from '../../util';
  
  
  export default {
      props: {
          confirm: {
              type: Boolean,
              default: false
          },
          showTime: {
              type: Boolean,
              default: false
          },
          format: {
              type: String,
              default: 'yyyy-MM-dd'
          },
          selectionMode: {
              type: String,
              validator (value) {
                  return oneOf(value, ['year', 'month', 'date', 'time']);
              },
              default: 'date'
          },
          shortcuts: {
              type: Array,
              default: () => []
          },
          disabledDate: {
              type: Function,
              default: () => false
          },
          value: {
              type: Array,
              default: () => [initTimeDate(), initTimeDate()]
63bd0f7d   Sergio Crisostomo   Add start-date pr...
38
          },
e55ba7a2   Sergio Crisostomo   Add week numbers
39
40
41
42
          showWeekNumbers: {
              type: Boolean,
              default: false
          },
63bd0f7d   Sergio Crisostomo   Add start-date pr...
43
44
          startDate: {
              type: Date
ca8e830c   Sergio Crisostomo   move files to sub...
45
46
47
48
49
50
51
52
53
54
55
56
57
          }
      },
      computed: {
          isTime(){
              return this.currentView === 'time';
          }
      },
      methods: {
          handleToggleTime(){
              this.currentView = this.currentView === 'time' ? this.selectionMode : 'time';
          },
      }
  };