diff --git a/src/components/cockpit/indicatorFittingChart/index.vue b/src/components/cockpit/indicatorFittingChart/index.vue index 65ad6f7..31e1d6d 100644 --- a/src/components/cockpit/indicatorFittingChart/index.vue +++ b/src/components/cockpit/indicatorFittingChart/index.vue @@ -100,7 +100,10 @@ const tableStore: any = new TableStore({ { title: '监测对象类型', field: 'objType', - minWidth: '90' + minWidth: '90', + formatter: (row: any) => { + return row.cellValue || '/' + } }, { title: '是否治理', diff --git a/src/components/cockpit/trendComparison/index.vue b/src/components/cockpit/trendComparison/index.vue index c8bfe6d..0c7518e 100644 --- a/src/components/cockpit/trendComparison/index.vue +++ b/src/components/cockpit/trendComparison/index.vue @@ -81,6 +81,7 @@ height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px)` }" /> +