|
@@ -438,14 +438,16 @@ export default {
|
|
|
|
|
|
/* 主题样式*/
|
|
/* 主题样式*/
|
|
const chartTheme = this.chartInfo.ChartThemeStyle ? JSON.parse(this.chartInfo.ChartThemeStyle) : null;
|
|
const chartTheme = this.chartInfo.ChartThemeStyle ? JSON.parse(this.chartInfo.ChartThemeStyle) : null;
|
|
- // 跟颜色对应
|
|
|
|
- chartTheme.lineOptionList=chartTheme.lineOptionList.reverse().slice(-chartDataHandle.length)
|
|
|
|
|
|
|
|
// 农历数据需要去除第一项 在ETA1.0.5之后,除了这里 农历和公历处理逻辑一样
|
|
// 农历数据需要去除第一项 在ETA1.0.5之后,除了这里 农历和公历处理逻辑一样
|
|
const temChartDataList=chartData.DataList||[]
|
|
const temChartDataList=chartData.DataList||[]
|
|
const chartDataHandle=this.calendar_type === '农历'?
|
|
const chartDataHandle=this.calendar_type === '农历'?
|
|
temChartDataList.filter((item, index) => index > 0):
|
|
temChartDataList.filter((item, index) => index > 0):
|
|
temChartDataList
|
|
temChartDataList
|
|
|
|
+
|
|
|
|
+ // 跟颜色对应
|
|
|
|
+ chartTheme.lineOptionList=chartTheme.lineOptionList.reverse().slice(-chartDataHandle.length)
|
|
|
|
+
|
|
let seasonYdata = [],
|
|
let seasonYdata = [],
|
|
seasonData = []
|
|
seasonData = []
|
|
|
|
|