|
@@ -132,9 +132,9 @@ let calendarType=ref('')//季节图 公历/农历
|
|
|
// 公历/农历切换
|
|
|
const calendarTypeChange=(val)=>{
|
|
|
calendarType.value=val
|
|
|
- startDate.value=''
|
|
|
- endDate.value=''
|
|
|
- getChartInfo('changeCalendar')
|
|
|
+ // startDate.value=''
|
|
|
+ // endDate.value=''
|
|
|
+ getChartInfo()
|
|
|
}
|
|
|
|
|
|
|
|
@@ -169,24 +169,19 @@ const getChartInfo=async (type)=>{
|
|
|
|
|
|
// 设置highchart配置 ChartType: 1曲线图 2季节图:季节图中公历和农历数据结构不同
|
|
|
if(res.data.ChartInfo.ChartType===1){
|
|
|
- if(type=='init'||type=='changeCalendar'){
|
|
|
+ if(type=='init'){
|
|
|
dateType.value=res.data.ChartInfo.DateType||3
|
|
|
startDate.value=res.data.ChartInfo.StartDate||''
|
|
|
endDate.value=res.data.ChartInfo.EndDate||''
|
|
|
- if(type!='changeCalendar'){
|
|
|
- calendarType.value=res.data.ChartInfo.Calendar||'公历'
|
|
|
- }
|
|
|
-
|
|
|
+ calendarType.value=res.data.ChartInfo.Calendar||'公历'
|
|
|
}
|
|
|
setSplineOpt(res.data.EdbInfoList)
|
|
|
}else{
|
|
|
- if(type=='init'||type=='changeCalendar'){
|
|
|
+ if(type=='init'){
|
|
|
dateType.value=res.data.ChartInfo.DateType||3
|
|
|
startDate.value=res.data.ChartInfo.SeasonStartDate||''
|
|
|
endDate.value=res.data.ChartInfo.SeasonEndDate||''
|
|
|
- if(type!='changeCalendar'){
|
|
|
- calendarType.value=res.data.ChartInfo.Calendar||'公历'
|
|
|
- }
|
|
|
+ calendarType.value=res.data.ChartInfo.Calendar||'公历'
|
|
|
}
|
|
|
|
|
|
setSeasonOpt(res.data.EdbInfoList[0])
|