|
@@ -82,31 +82,39 @@ func (this *ChartController) ChartInfoDetail() {
|
|
|
switch dateType {
|
|
|
case 1:
|
|
|
startDate = "2000-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate=""
|
|
|
case 2:
|
|
|
startDate = "2010-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 3:
|
|
|
startDate = "2015-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 4:
|
|
|
startDate = strconv.Itoa(time.Now().Year()) + "-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 5:
|
|
|
startDate = startDate + "-01"
|
|
|
endDate = endDate + "-01"
|
|
|
case 6:
|
|
|
startDate = startDate + "-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 7:
|
|
|
startDate = "2018-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 8:
|
|
|
startDate = "2019-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
case 9:
|
|
|
startDate = "2020-01-01"
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
}
|
|
|
|
|
|
if startDate == "" || endDate == "" {
|
|
@@ -125,7 +133,8 @@ func (this *ChartController) ChartInfoDetail() {
|
|
|
if seasonEndDate != "" {
|
|
|
endDate = seasonEndDate + "-12-31"
|
|
|
} else {
|
|
|
- endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ //endDate = time.Now().Format(utils.FormatDate)
|
|
|
+ endDate =""
|
|
|
}
|
|
|
}
|
|
|
|