iview/src/components/date-picker/base/year-table.vue

80 lines
2.5 KiB
Vue
Raw Normal View History

2016-12-12 10:37:52 +08:00
<template>
2016-12-15 20:16:58 +08:00
<div :class="classes" @click="handleClick">
<span :class="getCellCls(cell)" v-for="cell in cells"><em :index="$index">{{ cell.text }}</em></span>
</div>
2016-12-12 10:37:52 +08:00
</template>
<script>
2016-12-15 20:16:58 +08:00
import { deepCopy } from '../../../utils/assist';
const prefixCls = 'ivu-date-picker-cells';
2016-12-12 10:37:52 +08:00
export default {
2016-12-15 20:16:58 +08:00
props: {
date: {},
year: {},
2016-12-16 09:18:35 +08:00
disabledDate: {},
selectionMode: {
default: 'year'
}
2016-12-12 10:37:52 +08:00
},
2016-12-15 20:16:58 +08:00
computed: {
classes () {
return [
`${prefixCls}`,
`${prefixCls}-year`
]
},
startYear() {
return Math.floor(this.year / 10) * 10;
},
cells () {
let cells = [];
const cell_tmpl = {
text: '',
selected: false,
disabled: false
};
for (let i = 0; i < 10; i++) {
const cell = deepCopy(cell_tmpl);
cell.text = this.startYear + i;
const date = new Date(this.date);
date.setFullYear(cell.text);
2016-12-16 09:18:35 +08:00
cell.disabled = typeof this.disabledDate === 'function' && this.disabledDate(date) && this.selectionMode === 'year';
2016-12-15 20:16:58 +08:00
cell.selected = Number(this.year) === cell.text;
cells.push(cell);
}
return cells;
}
},
methods: {
getCellCls (cell) {
return [
`${prefixCls}-cell`,
{
[`${prefixCls}-cell-selected`]: cell.selected,
[`${prefixCls}-cell-disabled`]: cell.disabled
}
]
},
nextTenYear() {
this.$emit('on-pick', Number(this.year) + 10, false);
},
prevTenYear() {
this.$emit('on-pick', Number(this.year) - 10, false);
},
handleClick (event) {
const target = event.target;
if (target.tagName === 'EM') {
const cell = this.cells[parseInt(event.target.getAttribute('index'))];
if (cell.disabled) return;
2016-12-15 23:41:06 +08:00
2016-12-15 20:16:58 +08:00
this.$emit('on-pick', cell.text);
}
2016-12-22 09:18:11 +08:00
this.$emit('on-pick-click');
2016-12-15 20:16:58 +08:00
}
}
2016-12-12 10:37:52 +08:00
}
</script>