mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
picker component
This commit is contained in:
parent
e415d039f0
commit
9b6d85a887
@ -1,6 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="z-picker-column">
|
<div class="z-picker-column">
|
||||||
|
<div class="z-picker-column-wrapper">
|
||||||
|
<div class="z-picker-item">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -35,17 +39,22 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
currentValue: this.value,
|
currentValue: this.value,
|
||||||
|
currentValues: this.values,
|
||||||
dragging: false
|
dragging: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
values(val) {
|
values(val) {
|
||||||
|
this.currentValue = val;
|
||||||
|
},
|
||||||
|
|
||||||
|
currentValues(val) {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
currentValue(val) {
|
currentValue(val) {
|
||||||
this.$emit('change');
|
this.$emit('change', this);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -115,6 +115,7 @@ export default {
|
|||||||
*/
|
*/
|
||||||
getColumnValues(index) {
|
getColumnValues(index) {
|
||||||
let column = this.getColumn(index);
|
let column = this.getColumn(index);
|
||||||
|
return column && column.currentValues;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -123,7 +124,7 @@ export default {
|
|||||||
setColumnValues(index, values) {
|
setColumnValues(index, values) {
|
||||||
let column = this.getColumn(index);
|
let column = this.getColumn(index);
|
||||||
if (column) {
|
if (column) {
|
||||||
|
column.currentValues = values;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user