diff --git a/src/views/largeScreen/components/optionList.ts b/src/views/largeScreen/components/optionList.ts index e4b9b01..c35d06a 100644 --- a/src/views/largeScreen/components/optionList.ts +++ b/src/views/largeScreen/components/optionList.ts @@ -312,7 +312,7 @@ export const getLineOption = (lineData: any) => { axisLabel: { textStyle: { color: '#fff' - } + }, } }, yAxis: { diff --git a/src/views/largeScreen/components/rightPage.vue b/src/views/largeScreen/components/rightPage.vue index 71725c9..f5ee603 100644 --- a/src/views/largeScreen/components/rightPage.vue +++ b/src/views/largeScreen/components/rightPage.vue @@ -33,7 +33,7 @@
项目进度
100%
--> - @@ -53,7 +53,7 @@ const bigDataObj = ref({}); const getCapitalData = async () => { const { data } = await monthMoney() - const month = data.map((item: any) => item.month); + const month = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']; const income = data.map((item: any) => item.incomeAmount); const expenses = data.map((item: any) => item.expensesAmount); const profit = data.map((item: any) => item.profitAmount);