From 5f34ae74e13bb58a98e8003a47c63f0bea1c3eb8 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期一, 11 十二月 2023 18:39:38 +0800 Subject: [PATCH] 集团属性映射配置bug --- Source/UBCS-WEB/src/views/statistic/statisticPage.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Source/UBCS-WEB/src/views/statistic/statisticPage.vue b/Source/UBCS-WEB/src/views/statistic/statisticPage.vue index a823bc9..0a62428 100644 --- a/Source/UBCS-WEB/src/views/statistic/statisticPage.vue +++ b/Source/UBCS-WEB/src/views/statistic/statisticPage.vue @@ -48,7 +48,7 @@ </span> </el-dialog> <!-- echarts缁勪欢--> - <div style="margin-top: 15px"> + <div style="margin-top: 15px;padding-bottom: 35px"> <lineChart v-for="(item,index) in lineList" :key="index" :chartName="item.menuName" :lineData="item.menuData"></lineChart> <pieChart v-for="(item,index) in pieList" :key="index" :chartName="item.menuName" @@ -79,7 +79,7 @@ name: "statisticPage", data() { return { - menuList:[], + menuList: [], dataKeyList: [], addVisible: false, chartName: "", @@ -129,7 +129,7 @@ this.nextSave(); this.$message.success('淇濆瓨鎴愬姛') }); - }else { + } else { this.$message.warning('璇烽�夋嫨鏁版嵁锛�') } }, @@ -148,6 +148,9 @@ const dataKey = typeList[item.codeType]; if (dataKey) { this[dataKey].push(item); + this[dataKey].forEach(res=>{ + console.log('res',res) + }) hasValidData = true; } }); -- Gitblit v1.9.3