Blame view

src/components/date-picker/panel/time.vue 3.22 KB
9d844d53   梁灏   fixed Layout bug
1
2
3
4
5
6
7
8
9
  <template>
      <div :class="[prefixCls + '-body-wrapper']">
          <div :class="[prefixCls + '-body']">
              <div :class="[prefixCls + '-content']">
                  <time-spinner
                      :show-seconds="showSeconds"
                      :hours="hours"
                      :minutes="minutes"
                      :seconds="seconds"
36628aca   梁灏   update TimePicker
10
11
12
13
                      :disabled-hours="disabledHours"
                      :disabled-minutes="disabledMinutes"
                      :disabled-seconds="disabledSeconds"
                      :hide-disabled-options="hideDisabledOptions"
9d844d53   梁灏   fixed Layout bug
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
                      @on-change="handleChange"
                      @on-pick-click="handlePickClick"></time-spinner>
              </div>
              <Confirm
                  @on-pick-clear="handlePickClear"
                  @on-pick-success="handlePickSuccess"></Confirm>
          </div>
      </div>
  </template>
  <script>
      import TimeSpinner from '../base/time-spinner.vue';
      import Confirm from '../base/confirm.vue';
  
      import Mixin from './mixin';
  
2dbbd7de   梁灏   update TimePicker
29
30
      import { initTimeDate } from '../util';
  
9d844d53   梁灏   fixed Layout bug
31
32
33
34
35
36
37
38
39
40
41
      const prefixCls = 'ivu-picker-panel';
      const timePrefixCls = 'ivu-time-picker';
  
      export default {
          mixins: [Mixin],
          components: { TimeSpinner, Confirm },
          data () {
              return {
                  prefixCls: prefixCls,
                  timePrefixCls: timePrefixCls,
                  format: 'HH:mm:ss',
2dbbd7de   梁灏   update TimePicker
42
                  date: initTimeDate(),
9d844d53   梁灏   fixed Layout bug
43
                  value: '',
2dbbd7de   梁灏   update TimePicker
44
45
46
                  hours: '',
                  minutes: '',
                  seconds: '',
c1abaed9   梁灏   update TimePicker
47
48
49
50
                  disabledHours: [],
                  disabledMinutes: [],
                  disabledSeconds: [],
                  hideDisabledOptions: false
9d844d53   梁灏   fixed Layout bug
51
52
53
54
55
56
57
58
59
60
61
62
              };
          },
          computed: {
              showSeconds () {
                  return (this.format || '').indexOf('ss') !== -1;
              }
          },
          watch: {
              value (newVal) {
                  if (!newVal) return;
                  newVal = new Date(newVal);
                  if (!isNaN(newVal)) {
603e437b   梁灏   update TimePicker
63
                      this.date = newVal;
9d844d53   梁灏   fixed Layout bug
64
                      this.handleChange({
c1abaed9   梁灏   update TimePicker
65
66
67
                          hours: newVal.getHours(),
                          minutes: newVal.getMinutes(),
                          seconds: newVal.getSeconds()
603e437b   梁灏   update TimePicker
68
                      }, false);
9d844d53   梁灏   fixed Layout bug
69
70
71
72
                  }
              }
          },
          methods: {
2dbbd7de   梁灏   update TimePicker
73
74
75
76
77
78
79
              handleClear() {
                  this.date = initTimeDate();
                  this.hours = '';
                  this.minutes = '';
                  this.seconds = '';
                  this.$emit('on-pick', '');
              },
603e437b   梁灏   update TimePicker
80
              handleChange (date, emit = true) {
9d844d53   梁灏   fixed Layout bug
81
82
83
84
85
86
87
88
89
90
91
92
                  if (date.hours !== undefined) {
                      this.date.setHours(date.hours);
                      this.hours = this.date.getHours();
                  }
                  if (date.minutes !== undefined) {
                      this.date.setMinutes(date.minutes);
                      this.minutes = this.date.getMinutes();
                  }
                  if (date.seconds !== undefined) {
                      this.date.setSeconds(date.seconds);
                      this.seconds = this.date.getSeconds();
                  }
603e437b   梁灏   update TimePicker
93
                  if (emit) this.$emit('on-pick', this.date, true);
9d844d53   梁灏   fixed Layout bug
94
95
96
97
              }
          }
      };
  </script>