mirror of https://github.com/ElemeFE/element
284 lines
7.6 KiB
Markdown
284 lines
7.6 KiB
Markdown
<script>
|
||
module.exports = {
|
||
data() {
|
||
return {
|
||
pickerOptions1: {
|
||
shortcuts: [{
|
||
text: 'Today',
|
||
onClick(picker) {
|
||
picker.$emit('pick', new Date());
|
||
}
|
||
}, {
|
||
text: 'Yesterday',
|
||
onClick(picker) {
|
||
const date = new Date();
|
||
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
||
picker.$emit('pick', date);
|
||
}
|
||
}, {
|
||
text: 'A week ago',
|
||
onClick(picker) {
|
||
const date = new Date();
|
||
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
||
picker.$emit('pick', date);
|
||
}
|
||
}]
|
||
},
|
||
pickerOptions2: {
|
||
shortcuts: [{
|
||
text: 'Last week',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}, {
|
||
text: 'Last month',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}, {
|
||
text: 'Last 3 months',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}]
|
||
},
|
||
value1: '',
|
||
value2: '',
|
||
value3: '',
|
||
value4: '',
|
||
value5: '',
|
||
value6: '',
|
||
value7: ''
|
||
};
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style>
|
||
.demo-block.demo-date-picker .source {
|
||
padding: 0;
|
||
display: flex;
|
||
}
|
||
|
||
.demo-date-picker .block {
|
||
padding: 30px 0;
|
||
text-align: center;
|
||
border-right: solid 1px #EFF2F6;
|
||
flex: 1;
|
||
&:last-child {
|
||
border-right: none;
|
||
}
|
||
}
|
||
|
||
.demo-date-picker .demonstration {
|
||
display: block;
|
||
color: #8492a6;
|
||
font-size: 14px;
|
||
margin-bottom: 20px;
|
||
}
|
||
</style>
|
||
|
||
## DatePicker
|
||
|
||
Use Date Picker for date input.
|
||
|
||
### Enter Date
|
||
|
||
Basic date picker measured by 'day'.
|
||
|
||
:::demo The measurement is determined by the `type` attribute. You can enable quick options by creating a `picker-options` object with `shortcuts` property. The disabled date is set by `disabledDate`, which is a function.
|
||
|
||
```html
|
||
<template>
|
||
<div class="block">
|
||
<span class="demonstration">Default</span>
|
||
<el-date-picker
|
||
v-model="value1"
|
||
type="date"
|
||
placeholder="Pick a day">
|
||
</el-date-picker>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">Picker with quick options</span>
|
||
<el-date-picker
|
||
v-model="value2"
|
||
type="date"
|
||
placeholder="Pick a day"
|
||
:picker-options="pickerOptions1">
|
||
</el-date-picker>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
pickerOptions1: {
|
||
shortcuts: [{
|
||
text: 'Today',
|
||
onClick(picker) {
|
||
picker.$emit('pick', new Date());
|
||
}
|
||
}, {
|
||
text: 'Yesterday',
|
||
onClick(picker) {
|
||
const date = new Date();
|
||
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
||
picker.$emit('pick', date);
|
||
}
|
||
}, {
|
||
text: 'A week ago',
|
||
onClick(picker) {
|
||
const date = new Date();
|
||
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
||
picker.$emit('pick', date);
|
||
}
|
||
}]
|
||
},
|
||
value1: '',
|
||
value2: '',
|
||
};
|
||
}
|
||
};
|
||
</script>
|
||
```
|
||
|
||
:::
|
||
|
||
### Other measurements
|
||
|
||
You can choose week, month or year by extending the standard date picker component.
|
||
|
||
:::demo
|
||
|
||
```html
|
||
<div class="block">
|
||
<span class="demonstration">Week</span>
|
||
<el-date-picker
|
||
v-model="value3"
|
||
type="week"
|
||
format="Week WW"
|
||
placeholder="Pick a week">
|
||
</el-date-picker>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">Month</span>
|
||
<el-date-picker
|
||
v-model="value4"
|
||
type="month"
|
||
placeholder="Pick a month">
|
||
</el-date-picker>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">Year</span>
|
||
<el-date-picker
|
||
v-model="value5"
|
||
type="year"
|
||
placeholder="Pick a year">
|
||
</el-date-picker>
|
||
</div>
|
||
```
|
||
|
||
:::
|
||
|
||
### Date Range
|
||
|
||
Picking a date range is supported.
|
||
|
||
:::demo
|
||
|
||
```html
|
||
<template>
|
||
<div class="block">
|
||
<span class="demonstration">Default</span>
|
||
<el-date-picker
|
||
v-model="value6"
|
||
type="daterange"
|
||
placeholder="Pick a range"
|
||
style="width: 220px">
|
||
</el-date-picker>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">With quick options</span>
|
||
<el-date-picker
|
||
v-model="value7"
|
||
type="daterange"
|
||
align="right"
|
||
placeholder="Pick a range"
|
||
:picker-options="pickerOptions2"
|
||
style="width: 220px">
|
||
</el-date-picker>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
pickerOptions2: {
|
||
shortcuts: [{
|
||
text: 'Last week',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}, {
|
||
text: 'Last month',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}, {
|
||
text: 'Last 3 months',
|
||
onClick(picker) {
|
||
const end = new Date();
|
||
const start = new Date();
|
||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||
picker.$emit('pick', [start, end]);
|
||
}
|
||
}]
|
||
},
|
||
value6: '',
|
||
value7: ''
|
||
};
|
||
}
|
||
};
|
||
</script>
|
||
```
|
||
|
||
:::
|
||
|
||
### Attributes
|
||
| Attribute | Description | Type | Accepted Values | Default |
|
||
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
||
| readonly | if the picker is read only | boolean | — | false |
|
||
| placeholder | placeholder | string | — | — |
|
||
| type | type of the picker | string | year/month/date/datetime/week/datetimerange/daterange | date |
|
||
| format | format of the picker | string | year `yyyy` month `MM` day `dd`,<br>hour `HH`, minute `mm`, second `ss` | yyyy-MM-dd |
|
||
| align | alignment | left/center/right | left |
|
||
| picker-options | additional options, check the table below | object | — | {} |
|
||
|
||
### Picker Options
|
||
| Attribute | Description | Type | Accepted Values | Default |
|
||
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
||
| shortcuts | a { text, onClick } object array to set shortcut options, check the table below | object[] | — | — |
|
||
| disabledDate | a function determining if a date is disabled with that date as its parameter. Should return a Boolean | function | — | — |
|
||
|
||
### shortcuts
|
||
| Attribute | Description | Type | Accepted Values | Default |
|
||
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
||
| text | title of the shortcut | string | — | — |
|
||
| onClick | callback function, triggers when the shortcut is clicked, with the `vm` as its parameter. <br>You can change the picker value by emitting the `pick` event.<br> Example: `vm.$emit('pick', new Date())`| function | — | — | |