Browse Source

style: 删除calendar中多余的console

pull/1/head
wally 4 years ago
parent
commit
e339eece4e
  1. 1
      CHANGELOG.md
  2. 2
      src/components/Calendar/Calendar.vue

1
CHANGELOG.md

@ -130,6 +130,7 @@
tip | 任务状态显示及tip组件数据的重构 | 78a5750 tip | 任务状态显示及tip组件数据的重构 | 78a5750
- | 下滑时间轴添加备注 | 4fd20e3 - | 下滑时间轴添加备注 | 4fd20e3
- | 任务状态重构 | 4693655 - | 任务状态重构 | 4693655
- | 删除多余的weekmode store里的东西 | 0841fe0
- | 删除多余的技术验证界面 | 542ae5b - | 删除多余的技术验证界面 | 542ae5b
- | 界面样式调整 | 4367249 - | 界面样式调整 | 4367249
- | 重构store分层 | 5f6fff8 - | 重构store分层 | 5f6fff8

2
src/components/Calendar/Calendar.vue

@ -231,7 +231,6 @@ export default {
let date = ''; let date = '';
if (cur) { if (cur) {
date = new Date(cur); date = new Date(cur);
console.log('date: ', date);
} else { } else {
date = new Date(); date = new Date();
} }
@ -332,7 +331,6 @@ export default {
// //
goToday() { goToday() {
console.log(1);
const d = new Date(); const d = new Date();
this.initDate(d); this.initDate(d);
}, },

Loading…
Cancel
Save