update time/date picker

This commit is contained in:
qingwei.li
2016-08-11 12:20:29 +08:00
parent 096b3559c6
commit 6ad98f7ec1
17 changed files with 552 additions and 565 deletions

View File

@@ -65,7 +65,7 @@
if (target.tagName !== 'A') return;
const column = target.parentNode.cellIndex;
const row = target.parentNode.parentNode.rowIndex;
const month = this.month = row * 4 + column;
const month = row * 4 + column;
this.$emit('pick', month);
}