update DatePicker
update DatePicker
This commit is contained in:
parent
10f622acb9
commit
c46f385a83
9 changed files with 565 additions and 56 deletions
|
@ -1,23 +1,42 @@
|
|||
<template>
|
||||
<div style="margin: 50px">
|
||||
<date-picker style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options"></date-picker>
|
||||
<br>
|
||||
<row>
|
||||
<i-col span="4">
|
||||
<date-picker style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options" @on-change="change" @on-open-change="change2" :format="format"></date-picker>
|
||||
</i-col>
|
||||
<i-col span="4">
|
||||
<date-picker type="year" style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options"></date-picker>
|
||||
</i-col>
|
||||
<i-col span="4">
|
||||
<date-picker type="month" style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options"></date-picker>
|
||||
</i-col>
|
||||
</row>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
value: '2016-12-18',
|
||||
value: new Date(),
|
||||
// value: '',
|
||||
options: {
|
||||
disabledDate(time) {
|
||||
return time.getTime() < Date.now() - 8.64e7;
|
||||
// return time && time.valueOf() < Date.now();
|
||||
}
|
||||
}
|
||||
},
|
||||
format: 'yyyy/MM/dd'
|
||||
}
|
||||
},
|
||||
computed: {},
|
||||
methods: {}
|
||||
methods: {
|
||||
change (date) {
|
||||
// console.log(date)
|
||||
},
|
||||
change2 (s) {
|
||||
// console.log(s)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue