提交 95bef419 编写于 作者: qian.jie's avatar qian.jie

提交代码

上级 a5ae201e
......@@ -269,9 +269,7 @@
this.doctorList = res.data.doctorList || [];
this.calendarOptions.duration.days = this.doctorList.length;
console.log(this.calendarOptions.events);
// this.$refs.Calendar.render();
// this.calendarOptions.render();
// console.log(res, this.doctorList.length, this.calendarOptions.duration.days);
this.handleInitSearch(true);
}
});
},
......@@ -286,7 +284,9 @@
aaa(e) {
console.log(e);
const italicEl = document.createElement('i');
italicEl.innerHTML = this.doctorList[this.index]['doctorName'];
if(this.doctorList.length) {
italicEl.innerHTML = this.doctorList[this.index]['doctorName'];
}
if (this.index < this.doctorList.length) {
this.index += 1;
}
......@@ -303,7 +303,6 @@
this.calendarOptions.editable = false;
}
this.handleInitSearch();
this.search();
},
handleInitSearch(isReset) {
if (isReset) {
......@@ -348,6 +347,7 @@
dataObj['color'] = '#FFEDE9';
}
this.calendarOptions.events.push(dataObj);
this.search();
});
},
handleDatesSet(dataInfo) {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册