1.4 修改概念中心日期默认传值
This commit is contained in:
@@ -119,9 +119,9 @@
|
||||
this.selectMonthIndex = 20*12+currentMonth-1
|
||||
this.selectMonth = currentYear+'年'+currentMonth+'月'
|
||||
//开始日期默认为当前月份第一天
|
||||
this.startDateStr = currentYear+'-'+currentMonth+'-'+'01'
|
||||
this.startDateStr = currentYear+'-'+(currentMonth>9?currentMonth:('0'+currentMonth))+'-'+'01'
|
||||
//结束日期默认为当前日期
|
||||
this.endDateStr = this.selectDateStr = currentYear+'-'+currentMonth+'-'+(currentDay>9?currentDay:('0'+currentDay))
|
||||
this.endDateStr = this.selectDateStr = currentYear+'-'+(currentMonth>9?currentMonth:('0'+currentMonth))+'-'+(currentDay>9?currentDay:('0'+currentDay))
|
||||
// this.getYesterdayDateData()
|
||||
this.generateMonthDateListData()
|
||||
if (e.id) {
|
||||
|
||||
Reference in New Issue
Block a user