|
@@ -32,6 +32,7 @@ import { IDataProps, ILunarItem, IParams, ISeasonDataItemProps } from '@/types';
|
|
import Highcharts from 'highcharts';
|
|
import Highcharts from 'highcharts';
|
|
import { defaultOpts, seasonOptions } from '@/utils/chartOptions';
|
|
import { defaultOpts, seasonOptions } from '@/utils/chartOptions';
|
|
import moment from 'moment';
|
|
import moment from 'moment';
|
|
|
|
+import { browser } from '@/utils/utils';
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
components: {
|
|
components: {
|
|
@@ -347,8 +348,8 @@ export default defineComponent({
|
|
};
|
|
};
|
|
|
|
|
|
//农历图调整顶部缩进
|
|
//农历图调整顶部缩进
|
|
- if (state.chartInfo.Calendar === '农历') chart = {
|
|
|
|
- spacingTop: -10,
|
|
|
|
|
|
+ if (state.chartInfo.Calendar === '农历' && browser() !== 'FF') chart = {
|
|
|
|
+ spacingTop: -26,
|
|
}
|
|
}
|
|
|
|
|
|
state.options = {
|
|
state.options = {
|