Commit efdc0283 authored by youjie's avatar youjie

no message

parent 4329d325
......@@ -42,7 +42,7 @@
</li>
<li>
<span>
<em>日期</em>
<em>开始日期</em>
<el-date-picker
style="height: 34px;"
value-format="yyyy-MM-dd"
......@@ -608,11 +608,11 @@
this.userInfo = this.getLocalStorage();
let myDate = new Date();
let nowDate = myDate.getFullYear() +"-" + parseInt(myDate.getMonth() + 1)+"-" +myDate.getDate();
let today = new Date(myDate.getFullYear(), parseInt(myDate.getMonth()), myDate.getDate()+2)
let nowDate2 = this.$calendarUtils.formatDate(myDate.getFullYear(), parseInt(myDate.getMonth()) + 1, myDate.getDate()+28)
this.msg.StartTime = nowDate;
this.msg.EndTime = nowDate2;
let nowDate2 = myDate.getFullYear() +"-" + parseInt(myDate.getMonth() + 2)+"-" +myDate.getDate();
this.Datelist = [nowDate,nowDate2]
this.msg.StartTime = this.Datelist[0];
this.msg.EndTime = this.Datelist[1];
let width = window.innerWidth - 50;
let height = window.innerHeight - 65 - 300;
this.boxHeight = height;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment