提交 72a675ef 编写于 作者: qian.jie's avatar qian.jie

修改bug

上级 51576e65
...@@ -307,7 +307,7 @@ ...@@ -307,7 +307,7 @@
const oneHour = 1 * 60 * 60 * 1000 * 24; const oneHour = 1 * 60 * 60 * 1000 * 24;
const timeDifference = (cz / oneHour) | 0; const timeDifference = (cz / oneHour) | 0;
const headObj = this.calendarOptions.customButtons.myCustomButton; const headObj = this.calendarOptions.customButtons.myCustomButton;
if (timeDifference > 0 && timeDifference < 7) { if (timeDifference >= 0 && timeDifference < 7) {
// 过去 // 过去
this.week = 1; this.week = 1;
headObj.text = '本周'; headObj.text = '本周';
......
...@@ -117,6 +117,7 @@ ...@@ -117,6 +117,7 @@
meridiem: 'short', meridiem: 'short',
hour12: false, // 设置时间为24小时 hour12: false, // 设置时间为24小时
}, },
gotoDate:this.gotoDate
}, },
workingTicketVisible: false, // 工作表票详情页面 workingTicketVisible: false, // 工作表票详情页面
scrollerHeight: 0, scrollerHeight: 0,
...@@ -209,6 +210,7 @@ ...@@ -209,6 +210,7 @@
this.dateTime = value; this.dateTime = value;
}, },
search() { search() {
// this.calendarOptions.gotoDate(this.dateTime);
const params = { const params = {
dateTime: this.dateTime || null, dateTime: this.dateTime || null,
departmentId: this.departmentId || null, departmentId: this.departmentId || null,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册