Skip to content

Commit

Permalink
fix: picker timeSelector bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KuangPF committed Nov 15, 2018
1 parent 27580f8 commit 837d1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/picker/index.vue
Expand Up @@ -321,7 +321,7 @@ export default {
} else if (mode === 'timeSelector') {
pickerLable = `${this.pickerValueHour[value[0]].label}-${this.pickerValueMinute[value[1]].label}`;
pickerGetValue.push(this.pickerValueHour[value[0]].value);
pickerGetValue.push(this.pickerValueHour[value[1]].value);
pickerGetValue.push(this.pickerValueMinute[value[1]].value);
} else if (mode === 'multiSelector') {
for (let i = 0; i < value.length; i++) {
if (i > 0) {
Expand Down

0 comments on commit 837d1b1

Please sign in to comment.