diff --git a/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.ts b/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.ts index 6933a9f..5a233ac 100644 --- a/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.ts +++ b/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.ts @@ -5,7 +5,7 @@ export const LineGraph01: ConfigType = { key: 'LineGraph01Haz', chartKey: 'VLineGraph01Haz', conKey: 'VCLineGraph01Haz', - title: '曲线图(带边框,标题)', + title: '报警处置情况', category: 'HazardousChemicalsSpace', categoryName: '危化品场景', package: 'Charts', diff --git a/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.vue b/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.vue index 29eac90..82bbd63 100644 --- a/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.vue +++ b/src/packages/components/Charts/HazardousChemicalsSpace/LineGraph01Haz/index.vue @@ -3,7 +3,7 @@
- {{ configData.title }} + 报警处置情况
@@ -15,25 +15,22 @@
- {{ configData.names[0] }} - {{ configData.dataSource[selectedIndex].values[0]?.toLocaleString('en-US') - }} + 报警总数 + {{ currentData.alertTotal?.toLocaleString('en-US') || '0' }}
- {{ configData.names[1] }} - {{ configData.dataSource[selectedIndex].values[1]?.toLocaleString('en-US') - }} + 未处置报警数 + {{ currentData.unprocessedAlert?.toLocaleString('en-US') || '0' }}
- {{ configData.names[2] }} - {{ configData.dataSource[selectedIndex].values[2]?.toLocaleString('en-US') - }} + 平均处置时长 + {{ currentData.averageResolutionTime?.toLocaleString('en-US') || '0' }}
- {{ configData.tip }} + 数据统计图表 @@ -42,20 +39,20 @@