9d844d53
梁灏
fixed Layout bug
|
1
2
3
|
<template>
<div :class="[prefixCls + '-body-wrapper']">
<div :class="[prefixCls + '-body']">
|
a8571a5f
梁灏
update DateTimePi...
|
4
|
<div :class="[timePrefixCls + '-header']" v-if="showDate">{{ visibleDate }}</div>
|
9d844d53
梁灏
fixed Layout bug
|
5
6
|
<div :class="[prefixCls + '-content']">
<time-spinner
|
5cc9b892
梁灏
update DateTimePi...
|
7
|
v-ref:time-spinner
|
9d844d53
梁灏
fixed Layout bug
|
8
9
10
11
|
:show-seconds="showSeconds"
:hours="hours"
:minutes="minutes"
:seconds="seconds"
|
36628aca
梁灏
update TimePicker
|
12
13
14
15
|
:disabled-hours="disabledHours"
:disabled-minutes="disabledMinutes"
:disabled-seconds="disabledSeconds"
:hide-disabled-options="hideDisabledOptions"
|
9d844d53
梁灏
fixed Layout bug
|
16
17
18
19
|
@on-change="handleChange"
@on-pick-click="handlePickClick"></time-spinner>
</div>
<Confirm
|
d596b9e4
梁灏
update TimePicker
|
20
|
v-if="confirm"
|
9d844d53
梁灏
fixed Layout bug
|
21
22
23
24
25
26
27
28
29
30
31
|
@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
|
32
33
|
import { initTimeDate } from '../util';
|
9d844d53
梁灏
fixed Layout bug
|
34
35
36
37
38
39
|
const prefixCls = 'ivu-picker-panel';
const timePrefixCls = 'ivu-time-picker';
export default {
mixins: [Mixin],
components: { TimeSpinner, Confirm },
|
36931442
梁灏
update DateTimePi...
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// props: {
// date: {
// default () {
// return initTimeDate();
// }
// },
// value: {
// default: ''
// },
// showDate: {
// type: Boolean,
// default: false
// },
// format: {
// type: String,
// default: 'HH:mm:ss'
// }
// },
|
9d844d53
梁灏
fixed Layout bug
|
58
59
60
61
|
data () {
return {
prefixCls: prefixCls,
timePrefixCls: timePrefixCls,
|
36931442
梁灏
update DateTimePi...
|
62
63
64
65
|
date: initTimeDate(),
value: '',
showDate: false,
format: 'HH:mm:ss',
|
2dbbd7de
梁灏
update TimePicker
|
66
67
68
|
hours: '',
minutes: '',
seconds: '',
|
c1abaed9
梁灏
update TimePicker
|
69
70
71
|
disabledHours: [],
disabledMinutes: [],
disabledSeconds: [],
|
d596b9e4
梁灏
update TimePicker
|
72
73
|
hideDisabledOptions: false,
confirm: false
|
9d844d53
梁灏
fixed Layout bug
|
74
75
76
77
78
|
};
},
computed: {
showSeconds () {
return (this.format || '').indexOf('ss') !== -1;
|
a8571a5f
梁灏
update DateTimePi...
|
79
80
81
82
|
},
visibleDate () {
const date = this.date;
return `${date.getFullYear()}年 ${date.getMonth() + 1}月`;
|
9d844d53
梁灏
fixed Layout bug
|
83
84
85
86
87
88
89
|
}
},
watch: {
value (newVal) {
if (!newVal) return;
newVal = new Date(newVal);
if (!isNaN(newVal)) {
|
603e437b
梁灏
update TimePicker
|
90
|
this.date = newVal;
|
9d844d53
梁灏
fixed Layout bug
|
91
|
this.handleChange({
|
c1abaed9
梁灏
update TimePicker
|
92
93
94
|
hours: newVal.getHours(),
minutes: newVal.getMinutes(),
seconds: newVal.getSeconds()
|
603e437b
梁灏
update TimePicker
|
95
|
}, false);
|
9d844d53
梁灏
fixed Layout bug
|
96
97
98
99
|
}
}
},
methods: {
|
2dbbd7de
梁灏
update TimePicker
|
100
101
102
103
104
|
handleClear() {
this.date = initTimeDate();
this.hours = '';
this.minutes = '';
this.seconds = '';
|
2dbbd7de
梁灏
update TimePicker
|
105
|
},
|
603e437b
梁灏
update TimePicker
|
106
|
handleChange (date, emit = true) {
|
9d844d53
梁灏
fixed Layout bug
|
107
108
109
110
111
112
113
114
115
116
117
118
|
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
|
119
|
if (emit) this.$emit('on-pick', this.date, true);
|
5cc9b892
梁灏
update DateTimePi...
|
120
121
122
|
},
updateScroll () {
this.$refs.timeSpinner.updateScroll();
|
9d844d53
梁灏
fixed Layout bug
|
123
124
125
126
|
}
}
};
</script>
|